diff --git a/grammar.js b/grammar.js index 527f6cb..801c7d2 100644 --- a/grammar.js +++ b/grammar.js @@ -152,6 +152,7 @@ module.exports = grammar({ $.macro, $.postulate, $.primitive, + $.test, ), //////////////////////////////////////////////////////////////////////// @@ -576,6 +577,9 @@ module.exports = grammar({ ), + test: $ => repeat1($.test2), + test2: $ => 'test', + //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// diff --git a/package.json b/package.json index baa9256..489bff5 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "prebuild:upload": "prebuild --upload-all", "test": "npx tree-sitter test", "iterate": "npx tree-sitter generate && npx tree-sitter test", - "test-scanner": "npx tree-sitter parse test/example.txt" + "test-scanner": "npx tree-sitter generate && npx tree-sitter parse test/example.txt" }, "repository": { "type": "git", diff --git a/src/grammar.json b/src/grammar.json index dcdcf39..c96cd1e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -684,6 +684,10 @@ { "type": "SYMBOL", "name": "primitive" + }, + { + "type": "SYMBOL", + "name": "test" } ] }, @@ -2704,6 +2708,17 @@ } ] }, + "test": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "test2" + } + }, + "test2": { + "type": "STRING", + "value": "test" + }, "_lambda_binding": { "type": "CHOICE", "members": [ diff --git a/src/parser.c b/src/parser.c index 197d873..7d4cc16 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,10 +14,10 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 5513 -#define SYMBOL_COUNT 195 +#define STATE_COUNT 5517 +#define SYMBOL_COUNT 198 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 82 +#define TOKEN_COUNT 83 #define EXTERNAL_TOKEN_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -81,149 +81,152 @@ enum { anon_sym_macro = 57, anon_sym_postulate = 58, anon_sym_primitive = 59, - anon_sym_LBRACE_DASH_POUND = 60, - anon_sym_CATCHALL = 61, - anon_sym_POUND_DASH_RBRACE = 62, - anon_sym_PIPE = 63, - anon_sym_quoteGoal = 64, - anon_sym_in = 65, - anon_sym_tactic = 66, - anon_sym_do = 67, - anon_sym_let = 68, - anon_sym_QMARK = 69, - anon_sym_Set = 70, - anon_sym_Prop = 71, - anon_sym_quote = 72, - anon_sym_quoteTerm = 73, - anon_sym_unquote = 74, - anon_sym_LPAREN_PIPE = 75, - anon_sym_PIPE_RPAREN = 76, - anon_sym_3 = 77, - anon_sym_4 = 78, - sym__newline = 79, - sym__indent = 80, - sym__dedent = 81, - sym_source_file = 82, - sym_integer = 83, - sym_literal = 84, - sym_anonymous_name = 85, - sym__binding_name = 86, - sym__field_name = 87, - sym__arg_names = 88, - sym__arg_name = 89, - sym__declaration_block = 90, - sym__declaration = 91, - sym_function_clause = 92, - sym_lhs_decl = 93, - sym_lhs_defn = 94, - sym_rewrite_equations = 95, - sym_with_expressions = 96, - sym_rhs_decl = 97, - sym_rhs_defn = 98, - sym_where_clause = 99, - sym_data_signature_only = 100, - sym_record_signature_only = 101, - sym_module_macro = 102, - sym__module_name = 103, - sym_open = 104, - sym__open_as = 105, - sym__open_args1 = 106, - sym_import_directive = 107, - sym_renaming = 108, - sym__import_name = 109, - sym__comma_import_names1 = 110, - sym_infix = 111, - sym_pattern = 112, - sym_syntax = 113, - sym_hole_name = 114, - sym_simple_hole = 115, - sym_data = 116, - sym__record_name = 117, - sym_record = 118, - sym_record_declarations_block = 119, - sym_record_constructor_instance = 120, - sym__record_directive = 121, - sym_record_constructor = 122, - sym_record_induction = 123, - sym_record_eta = 124, - sym_record_assignments = 125, - sym__record_assignments1 = 126, - sym_module_assignment = 127, - sym__field_assignments1 = 128, - sym_field_assignment = 129, - sym_module = 130, - sym_module_application = 131, - sym_field = 132, - sym__type_sig_block = 133, - sym_type_sig = 134, - sym_type_sig_instance = 135, - sym_generalize = 136, - sym_mutual = 137, - sym_abstract = 138, - sym_private = 139, - sym_instance = 140, - sym_macro = 141, - sym_postulate = 142, - sym_primitive = 143, - sym__simple_type_sig_block = 144, - sym_simple_type_sig = 145, - sym__lambda_binding = 146, - sym_catchall_pragma = 147, - sym_lambda_clause = 148, - sym_lambda_clause_absurd = 149, - sym__lambda_clause = 150, - sym__lambda_clauses_no_single_absurd = 151, - sym__lambda_where_block = 152, - sym_forall_bindings = 153, - sym_untyped_binding = 154, - sym__typed_bindings1 = 155, - sym_typed_binding = 156, - sym__typed_untyped_binding1 = 157, - sym__do_stmt = 158, - sym__do_stmt_where = 159, - sym_expr = 160, - sym__with_expr = 161, - sym__application = 162, - sym__expr2 = 163, - sym_do = 164, - sym__let_only = 165, - sym__let_in = 166, - sym_let = 167, - sym_lambda = 168, - sym__atoms1 = 169, - sym_atom = 170, - sym__atom_curly = 171, - sym__atom_no_curly = 172, - aux_sym_source_file_repeat1 = 173, - aux_sym__arg_names_repeat1 = 174, - aux_sym__arg_name_repeat1 = 175, - aux_sym__arg_name_repeat2 = 176, - aux_sym_module_macro_repeat1 = 177, - aux_sym__open_args1_repeat1 = 178, - aux_sym_import_directive_repeat1 = 179, - aux_sym__comma_import_names1_repeat1 = 180, - aux_sym_infix_repeat1 = 181, - aux_sym_syntax_repeat1 = 182, - aux_sym_syntax_repeat2 = 183, - aux_sym_record_declarations_block_repeat1 = 184, - aux_sym_record_constructor_instance_repeat1 = 185, - aux_sym__record_assignments1_repeat1 = 186, - aux_sym__field_assignments1_repeat1 = 187, - aux_sym__type_sig_block_repeat1 = 188, - aux_sym__simple_type_sig_block_repeat1 = 189, - aux_sym__lambda_where_block_repeat1 = 190, - aux_sym__typed_bindings1_repeat1 = 191, - aux_sym__typed_untyped_binding1_repeat1 = 192, - aux_sym__with_expr_repeat1 = 193, - aux_sym_do_repeat1 = 194, - alias_sym_do_stmt = 195, - alias_sym_data_name = 196, - alias_sym_binding_name = 197, - alias_sym_field_name = 198, - alias_sym_record_name = 199, - alias_sym_function_name = 200, - alias_sym_module_name = 201, - alias_sym_do_where = 202, + sym_test2 = 60, + anon_sym_LBRACE_DASH_POUND = 61, + anon_sym_CATCHALL = 62, + anon_sym_POUND_DASH_RBRACE = 63, + anon_sym_PIPE = 64, + anon_sym_quoteGoal = 65, + anon_sym_in = 66, + anon_sym_tactic = 67, + anon_sym_do = 68, + anon_sym_let = 69, + anon_sym_QMARK = 70, + anon_sym_Set = 71, + anon_sym_Prop = 72, + anon_sym_quote = 73, + anon_sym_quoteTerm = 74, + anon_sym_unquote = 75, + anon_sym_LPAREN_PIPE = 76, + anon_sym_PIPE_RPAREN = 77, + anon_sym_3 = 78, + anon_sym_4 = 79, + sym__newline = 80, + sym__indent = 81, + sym__dedent = 82, + sym_source_file = 83, + sym_integer = 84, + sym_literal = 85, + sym_anonymous_name = 86, + sym__binding_name = 87, + sym__field_name = 88, + sym__arg_names = 89, + sym__arg_name = 90, + sym__declaration_block = 91, + sym__declaration = 92, + sym_function_clause = 93, + sym_lhs_decl = 94, + sym_lhs_defn = 95, + sym_rewrite_equations = 96, + sym_with_expressions = 97, + sym_rhs_decl = 98, + sym_rhs_defn = 99, + sym_where_clause = 100, + sym_data_signature_only = 101, + sym_record_signature_only = 102, + sym_module_macro = 103, + sym__module_name = 104, + sym_open = 105, + sym__open_as = 106, + sym__open_args1 = 107, + sym_import_directive = 108, + sym_renaming = 109, + sym__import_name = 110, + sym__comma_import_names1 = 111, + sym_infix = 112, + sym_pattern = 113, + sym_syntax = 114, + sym_hole_name = 115, + sym_simple_hole = 116, + sym_data = 117, + sym__record_name = 118, + sym_record = 119, + sym_record_declarations_block = 120, + sym_record_constructor_instance = 121, + sym__record_directive = 122, + sym_record_constructor = 123, + sym_record_induction = 124, + sym_record_eta = 125, + sym_record_assignments = 126, + sym__record_assignments1 = 127, + sym_module_assignment = 128, + sym__field_assignments1 = 129, + sym_field_assignment = 130, + sym_module = 131, + sym_module_application = 132, + sym_field = 133, + sym__type_sig_block = 134, + sym_type_sig = 135, + sym_type_sig_instance = 136, + sym_generalize = 137, + sym_mutual = 138, + sym_abstract = 139, + sym_private = 140, + sym_instance = 141, + sym_macro = 142, + sym_postulate = 143, + sym_primitive = 144, + sym__simple_type_sig_block = 145, + sym_simple_type_sig = 146, + sym_test = 147, + sym__lambda_binding = 148, + sym_catchall_pragma = 149, + sym_lambda_clause = 150, + sym_lambda_clause_absurd = 151, + sym__lambda_clause = 152, + sym__lambda_clauses_no_single_absurd = 153, + sym__lambda_where_block = 154, + sym_forall_bindings = 155, + sym_untyped_binding = 156, + sym__typed_bindings1 = 157, + sym_typed_binding = 158, + sym__typed_untyped_binding1 = 159, + sym__do_stmt = 160, + sym__do_stmt_where = 161, + sym_expr = 162, + sym__with_expr = 163, + sym__application = 164, + sym__expr2 = 165, + sym_do = 166, + sym__let_only = 167, + sym__let_in = 168, + sym_let = 169, + sym_lambda = 170, + sym__atoms1 = 171, + sym_atom = 172, + sym__atom_curly = 173, + sym__atom_no_curly = 174, + aux_sym_source_file_repeat1 = 175, + aux_sym__arg_names_repeat1 = 176, + aux_sym__arg_name_repeat1 = 177, + aux_sym__arg_name_repeat2 = 178, + aux_sym_module_macro_repeat1 = 179, + aux_sym__open_args1_repeat1 = 180, + aux_sym_import_directive_repeat1 = 181, + aux_sym__comma_import_names1_repeat1 = 182, + aux_sym_infix_repeat1 = 183, + aux_sym_syntax_repeat1 = 184, + aux_sym_syntax_repeat2 = 185, + aux_sym_record_declarations_block_repeat1 = 186, + aux_sym_record_constructor_instance_repeat1 = 187, + aux_sym__record_assignments1_repeat1 = 188, + aux_sym__field_assignments1_repeat1 = 189, + aux_sym__type_sig_block_repeat1 = 190, + aux_sym__simple_type_sig_block_repeat1 = 191, + aux_sym_test_repeat1 = 192, + aux_sym__lambda_where_block_repeat1 = 193, + aux_sym__typed_bindings1_repeat1 = 194, + aux_sym__typed_untyped_binding1_repeat1 = 195, + aux_sym__with_expr_repeat1 = 196, + aux_sym_do_repeat1 = 197, + alias_sym_do_stmt = 198, + alias_sym_data_name = 199, + alias_sym_binding_name = 200, + alias_sym_field_name = 201, + alias_sym_record_name = 202, + alias_sym_function_name = 203, + alias_sym_module_name = 204, + alias_sym_do_where = 205, }; static const char *ts_symbol_names[] = { @@ -287,6 +290,7 @@ static const char *ts_symbol_names[] = { [anon_sym_macro] = "macro", [anon_sym_postulate] = "postulate", [anon_sym_primitive] = "primitive", + [sym_test2] = "test2", [anon_sym_LBRACE_DASH_POUND] = "{-#", [anon_sym_CATCHALL] = "CATCHALL", [anon_sym_POUND_DASH_RBRACE] = "#-}", @@ -373,6 +377,7 @@ static const char *ts_symbol_names[] = { [sym_primitive] = "primitive", [sym__simple_type_sig_block] = "_simple_type_sig_block", [sym_simple_type_sig] = "simple_type_sig", + [sym_test] = "test", [sym__lambda_binding] = "_lambda_binding", [sym_catchall_pragma] = "catchall_pragma", [sym_lambda_clause] = "lambda_clause", @@ -417,6 +422,7 @@ static const char *ts_symbol_names[] = { [aux_sym__field_assignments1_repeat1] = "_field_assignments1_repeat1", [aux_sym__type_sig_block_repeat1] = "_type_sig_block_repeat1", [aux_sym__simple_type_sig_block_repeat1] = "_simple_type_sig_block_repeat1", + [aux_sym_test_repeat1] = "test_repeat1", [aux_sym__lambda_where_block_repeat1] = "_lambda_where_block_repeat1", [aux_sym__typed_bindings1_repeat1] = "_typed_bindings1_repeat1", [aux_sym__typed_untyped_binding1_repeat1] = "_typed_untyped_binding1_repeat1", @@ -673,6 +679,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_test2] = { + .visible = true, + .named = true, + }, [anon_sym_LBRACE_DASH_POUND] = { .visible = true, .named = false, @@ -1017,6 +1027,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_test] = { + .visible = true, + .named = true, + }, [sym__lambda_binding] = { .visible = false, .named = true, @@ -1193,6 +1207,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_test_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__lambda_where_block_repeat1] = { .visible = false, .named = false, @@ -1255,16 +1273,16 @@ static TSSymbol ts_alias_sequences[10][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = alias_sym_record_name, }, [3] = { - [0] = alias_sym_binding_name, + [0] = alias_sym_module_name, }, [4] = { - [0] = alias_sym_module_name, + [0] = alias_sym_binding_name, }, [5] = { - [0] = alias_sym_do_stmt, + [0] = alias_sym_field_name, }, [6] = { - [0] = alias_sym_field_name, + [0] = alias_sym_do_stmt, }, [7] = { [1] = alias_sym_data_name, @@ -1933,6 +1951,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_name); if (lookahead == 'a') ADVANCE(82); + if (lookahead == 'e') + ADVANCE(83); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1951,9 +1971,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(83); - if (lookahead == 's') ADVANCE(84); + if (lookahead == 's') + ADVANCE(85); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1972,9 +1992,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 35: ACCEPT_TOKEN(sym_name); if (lookahead == 'h') - ADVANCE(85); - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'i') + ADVANCE(87); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -1993,14 +2013,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '-') - ADVANCE(87); - if (lookahead == '{') ADVANCE(88); + if (lookahead == '{') + ADVANCE(89); END_STATE(); case 37: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == ')') - ADVANCE(89); + ADVANCE(90); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2018,7 +2038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 38: ACCEPT_TOKEN(anon_sym_RBRACE); if (lookahead == '}') - ADVANCE(90); + ADVANCE(91); END_STATE(); case 39: ACCEPT_TOKEN(sym__const_ellipsis); @@ -2186,7 +2206,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 49: ACCEPT_TOKEN(sym_name); if (lookahead == '}') - ADVANCE(91); + ADVANCE(92); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2217,7 +2237,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || lookahead == '{' || lookahead == '}') - ADVANCE(92); + ADVANCE(93); if (lookahead != 0 && lookahead != '\n') ADVANCE(51); @@ -2225,14 +2245,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 52: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '.') - ADVANCE(93); + ADVANCE(94); END_STATE(); case 53: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(94); + ADVANCE(95); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2251,7 +2271,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 54: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(95); + ADVANCE(96); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2270,7 +2290,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 55: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(96); + ADVANCE(97); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2390,7 +2410,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 57: ACCEPT_TOKEN(sym_name); if (lookahead == 's') - ADVANCE(97); + ADVANCE(98); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2426,11 +2446,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 59: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(98); - if (lookahead == 'i') ADVANCE(99); - if (lookahead == 'n') + if (lookahead == 'i') ADVANCE(100); + if (lookahead == 'n') + ADVANCE(101); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2449,7 +2469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 60: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(101); + ADVANCE(102); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2485,7 +2505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 62: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(102); + ADVANCE(103); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2504,7 +2524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 63: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(103); + ADVANCE(104); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2523,7 +2543,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 64: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(104); + ADVANCE(105); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2542,7 +2562,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 65: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(105); + ADVANCE(106); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2561,7 +2581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 66: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(106); + ADVANCE(107); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2580,7 +2600,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: ACCEPT_TOKEN(sym_name); if (lookahead == 'p') - ADVANCE(107); + ADVANCE(108); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2616,7 +2636,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 69: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(108); + ADVANCE(109); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2635,7 +2655,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 70: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(109); + ADVANCE(110); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2654,7 +2674,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 71: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(110); + ADVANCE(111); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2673,7 +2693,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 72: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(111); + ADVANCE(112); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2692,7 +2712,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 73: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(112); + ADVANCE(113); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2711,7 +2731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 74: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(113); + ADVANCE(114); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2730,7 +2750,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 75: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(114); + ADVANCE(115); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2749,7 +2769,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 76: ACCEPT_TOKEN(sym_name); if (lookahead == 's') - ADVANCE(115); + ADVANCE(116); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2768,7 +2788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 77: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(116); + ADVANCE(117); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2787,7 +2807,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 78: ACCEPT_TOKEN(sym_name); if (lookahead == 'b') - ADVANCE(117); + ADVANCE(118); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2806,7 +2826,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 79: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(118); + ADVANCE(119); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2825,11 +2845,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 80: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(119); - if (lookahead == 'n') ADVANCE(120); - if (lookahead == 'w') + if (lookahead == 'n') ADVANCE(121); + if (lookahead == 'w') + ADVANCE(122); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2848,7 +2868,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 81: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(122); + ADVANCE(123); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2867,7 +2887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 82: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(123); + ADVANCE(124); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2885,8 +2905,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 83: ACCEPT_TOKEN(sym_name); - if (lookahead == 'q') - ADVANCE(124); + if (lookahead == 's') + ADVANCE(125); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2904,8 +2924,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: ACCEPT_TOKEN(sym_name); - if (lookahead == 'i') - ADVANCE(125); + if (lookahead == 'q') + ADVANCE(126); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2923,8 +2943,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 85: ACCEPT_TOKEN(sym_name); - if (lookahead == 'e') - ADVANCE(126); + if (lookahead == 'i') + ADVANCE(127); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2942,8 +2962,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 86: ACCEPT_TOKEN(sym_name); - if (lookahead == 't') - ADVANCE(127); + if (lookahead == 'e') + ADVANCE(128); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2960,40 +2980,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(47); END_STATE(); case 87: + ACCEPT_TOKEN(sym_name); + if (lookahead == 't') + ADVANCE(129); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 88: if (lookahead == '#') - ADVANCE(128); + ADVANCE(130); if (lookahead == '-') - ADVANCE(129); + ADVANCE(131); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 88: + case 89: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); END_STATE(); - case 89: + case 90: ACCEPT_TOKEN(anon_sym_PIPE_RPAREN); END_STATE(); - case 90: + case 91: ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); - case 91: + case 92: ACCEPT_TOKEN(anon_sym_POUND_DASH_RBRACE); END_STATE(); - case 92: + case 93: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(92); + ADVANCE(93); END_STATE(); - case 93: + case 94: ACCEPT_TOKEN(sym__const_ellipsis); END_STATE(); - case 94: + case 95: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(94); + ADVANCE(95); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3009,10 +3048,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 95: + case 96: ACCEPT_TOKEN(sym_name); if (lookahead == 'p') - ADVANCE(131); + ADVANCE(133); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3028,7 +3067,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 96: + case 97: ACCEPT_TOKEN(anon_sym_Set); if (lookahead != 0 && lookahead != '\t' && @@ -3045,10 +3084,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 97: + case 98: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(132); + ADVANCE(134); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3064,10 +3103,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 98: + case 99: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(133); + ADVANCE(135); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3083,10 +3122,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 99: + case 100: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(134); + ADVANCE(136); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3102,10 +3141,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 100: + case 101: ACCEPT_TOKEN(sym_name); if (lookahead == 's') - ADVANCE(135); + ADVANCE(137); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3121,10 +3160,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 101: + case 102: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(136); + ADVANCE(138); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3140,10 +3179,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 102: + case 103: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(137); + ADVANCE(139); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3159,10 +3198,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 103: + case 104: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(138); + ADVANCE(140); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3178,10 +3217,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 104: + case 105: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(139); + ADVANCE(141); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3197,10 +3236,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 105: + case 106: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(140); + ADVANCE(142); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3216,10 +3255,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 106: + case 107: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(141); + ADVANCE(143); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3235,10 +3274,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 107: + case 108: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(142); + ADVANCE(144); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3254,7 +3293,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 108: + case 109: ACCEPT_TOKEN(anon_sym_let); if (lookahead != 0 && lookahead != '\t' && @@ -3271,10 +3310,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 109: + case 110: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(143); + ADVANCE(145); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3290,10 +3329,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 110: + case 111: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(144); + ADVANCE(146); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3309,10 +3348,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 111: + case 112: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(145); + ADVANCE(147); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3328,10 +3367,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 112: + case 113: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(146); + ADVANCE(148); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3347,10 +3386,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 113: + case 114: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(147); + ADVANCE(149); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3366,10 +3405,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 114: + case 115: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(148); + ADVANCE(150); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3385,10 +3424,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 115: + case 116: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(149); + ADVANCE(151); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3404,12 +3443,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 116: + case 117: ACCEPT_TOKEN(sym_name); if (lookahead == 'm') - ADVANCE(150); + ADVANCE(152); if (lookahead == 'v') - ADVANCE(151); + ADVANCE(153); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3425,10 +3464,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 117: + case 118: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(152); + ADVANCE(154); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3444,10 +3483,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 118: + case 119: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(153); + ADVANCE(155); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3463,10 +3502,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 119: + case 120: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(154); + ADVANCE(156); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3482,10 +3521,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 120: + case 121: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(155); + ADVANCE(157); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3501,10 +3540,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 121: + case 122: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(156); + ADVANCE(158); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3520,10 +3559,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 122: + case 123: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(157); + ADVANCE(159); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3539,10 +3578,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 123: + case 124: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(158); + ADVANCE(160); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3558,10 +3597,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 124: + case 125: + ACCEPT_TOKEN(sym_name); + if (lookahead == 't') + ADVANCE(161); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 126: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(159); + ADVANCE(162); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3577,10 +3635,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 125: + case 127: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(160); + ADVANCE(163); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3596,10 +3654,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 126: + case 128: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(161); + ADVANCE(164); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3615,10 +3673,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 127: + case 129: ACCEPT_TOKEN(sym_name); if (lookahead == 'h') - ADVANCE(162); + ADVANCE(165); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3634,28 +3692,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 128: + case 130: ACCEPT_TOKEN(anon_sym_LBRACE_DASH_POUND); if (lookahead == '#') - ADVANCE(163); + ADVANCE(166); if (lookahead != 0) - ADVANCE(164); + ADVANCE(167); END_STATE(); - case 129: + case 131: if (lookahead == '-') - ADVANCE(165); + ADVANCE(168); if (lookahead == '}') - ADVANCE(166); + ADVANCE(169); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 130: + case 132: if (lookahead == '-') - ADVANCE(165); + ADVANCE(168); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 131: + case 133: ACCEPT_TOKEN(anon_sym_Prop); if (lookahead != 0 && lookahead != '\t' && @@ -3672,10 +3730,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 132: + case 134: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(167); + ADVANCE(170); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3691,10 +3749,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 133: + case 135: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(168); + ADVANCE(171); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3710,10 +3768,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 134: + case 136: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(169); + ADVANCE(172); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3729,10 +3787,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 135: + case 137: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(170); + ADVANCE(173); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3748,7 +3806,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 136: + case 138: ACCEPT_TOKEN(anon_sym_data); if (lookahead != 0 && lookahead != '\t' && @@ -3765,10 +3823,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 137: + case 139: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(171); + ADVANCE(174); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3784,10 +3842,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 138: + case 140: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(172); + ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3803,10 +3861,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 139: + case 141: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(173); + ADVANCE(176); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3822,10 +3880,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 140: + case 142: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(174); + ADVANCE(177); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3841,10 +3899,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 141: + case 143: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(175); + ADVANCE(178); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3860,10 +3918,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 142: + case 144: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(176); + ADVANCE(179); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3879,10 +3937,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 143: + case 145: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(177); + ADVANCE(180); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3898,10 +3956,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 144: + case 146: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(178); + ADVANCE(181); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3917,10 +3975,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 145: + case 147: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(179); + ADVANCE(182); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3936,10 +3994,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 146: + case 148: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(180); + ADVANCE(183); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3955,7 +4013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 147: + case 149: ACCEPT_TOKEN(anon_sym_open); if (lookahead != 0 && lookahead != '\t' && @@ -3972,10 +4030,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 148: + case 150: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(181); + ADVANCE(184); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3991,10 +4049,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 149: + case 151: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(182); + ADVANCE(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4010,10 +4068,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 150: + case 152: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(183); + ADVANCE(186); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4029,10 +4087,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 151: + case 153: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(184); + ADVANCE(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4048,10 +4106,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 152: + case 154: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(185); + ADVANCE(188); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4067,10 +4125,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 153: + case 155: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(186); + ADVANCE(189); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4086,10 +4144,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 154: + case 156: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(187); + ADVANCE(190); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4105,10 +4163,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 155: + case 157: ACCEPT_TOKEN(sym_name); if (lookahead == 'm') - ADVANCE(188); + ADVANCE(191); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4124,10 +4182,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 156: + case 158: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(189); + ADVANCE(192); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4143,10 +4201,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 157: + case 159: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(190); + ADVANCE(193); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4162,10 +4220,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 158: + case 160: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(191); + ADVANCE(194); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4181,10 +4239,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 159: + case 161: + ACCEPT_TOKEN(sym_test2); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 162: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(192); + ADVANCE(195); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4200,10 +4275,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 160: + case 163: ACCEPT_TOKEN(sym_name); if (lookahead == 'g') - ADVANCE(193); + ADVANCE(196); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4219,10 +4294,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 161: + case 164: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(194); + ADVANCE(197); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4238,7 +4313,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 162: + case 165: ACCEPT_TOKEN(anon_sym_with); if (lookahead != 0 && lookahead != '\t' && @@ -4255,35 +4330,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 163: + case 166: if (lookahead == '-') - ADVANCE(195); + ADVANCE(198); if (lookahead != 0) - ADVANCE(164); + ADVANCE(167); END_STATE(); - case 164: + case 167: if (lookahead == '#') - ADVANCE(163); + ADVANCE(166); if (lookahead != 0) - ADVANCE(164); + ADVANCE(167); END_STATE(); - case 165: + case 168: if (lookahead == '}') - ADVANCE(196); + ADVANCE(199); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 166: + case 169: ACCEPT_TOKEN(sym_comment); if (lookahead == '-') - ADVANCE(165); + ADVANCE(168); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 167: + case 170: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(197); + ADVANCE(200); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4299,10 +4374,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 168: + case 171: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(198); + ADVANCE(201); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4318,10 +4393,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 169: + case 172: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(199); + ADVANCE(202); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4337,10 +4412,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 170: + case 173: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(200); + ADVANCE(203); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4356,10 +4431,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 171: + case 174: ACCEPT_TOKEN(sym_name); if (lookahead == 'q') - ADVANCE(201); + ADVANCE(204); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4375,7 +4450,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 172: + case 175: ACCEPT_TOKEN(anon_sym_field); if (lookahead != 0 && lookahead != '\t' && @@ -4392,7 +4467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 173: + case 176: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') ADVANCE(41); @@ -4411,10 +4486,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 174: + case 177: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(202); + ADVANCE(205); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4430,10 +4505,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 175: + case 178: ACCEPT_TOKEN(sym_name); if (lookahead == 'g') - ADVANCE(203); + ADVANCE(206); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4449,10 +4524,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 176: + case 179: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(204); + ADVANCE(207); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4468,7 +4543,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 177: + case 180: ACCEPT_TOKEN(anon_sym_macro); if (lookahead != 0 && lookahead != '\t' && @@ -4485,10 +4560,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 178: + case 181: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(205); + ADVANCE(208); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4504,10 +4579,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 179: + case 182: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(206); + ADVANCE(209); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4523,10 +4598,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 180: + case 183: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(207); + ADVANCE(210); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4542,10 +4617,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 181: + case 184: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(208); + ADVANCE(211); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4561,10 +4636,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 182: + case 185: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(209); + ADVANCE(212); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4580,10 +4655,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 183: + case 186: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(210); + ADVANCE(213); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4599,10 +4674,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 184: + case 187: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(211); + ADVANCE(214); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4618,10 +4693,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 185: + case 188: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(212); + ADVANCE(215); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4637,12 +4712,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 186: + case 189: ACCEPT_TOKEN(anon_sym_quote); if (lookahead == 'G') - ADVANCE(213); + ADVANCE(216); if (lookahead == 'T') - ADVANCE(214); + ADVANCE(217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4658,10 +4733,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 187: + case 190: ACCEPT_TOKEN(sym_name); if (lookahead == 'd') - ADVANCE(215); + ADVANCE(218); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4677,10 +4752,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 188: + case 191: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(216); + ADVANCE(219); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4696,10 +4771,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 189: + case 192: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(217); + ADVANCE(220); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4715,10 +4790,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 190: + case 193: ACCEPT_TOKEN(sym_name); if (lookahead == 'x') - ADVANCE(218); + ADVANCE(221); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4734,10 +4809,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 191: + case 194: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(219); + ADVANCE(222); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4753,10 +4828,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 192: + case 195: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(220); + ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4772,7 +4847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 193: + case 196: ACCEPT_TOKEN(anon_sym_using); if (lookahead != 0 && lookahead != '\t' && @@ -4789,7 +4864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 194: + case 197: ACCEPT_TOKEN(anon_sym_where); if (lookahead != 0 && lookahead != '\t' && @@ -4806,19 +4881,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 195: + case 198: if (lookahead == '}') - ADVANCE(221); + ADVANCE(224); if (lookahead != 0) - ADVANCE(164); + ADVANCE(167); END_STATE(); - case 196: + case 199: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 197: + case 200: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(222); + ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4834,7 +4909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 198: + case 201: ACCEPT_TOKEN(anon_sym_codata); if (lookahead != 0 && lookahead != '\t' && @@ -4851,10 +4926,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 199: + case 202: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(223); + ADVANCE(226); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4870,10 +4945,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 200: + case 203: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(224); + ADVANCE(227); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4889,10 +4964,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 201: + case 204: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(225); + ADVANCE(228); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4908,10 +4983,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 202: + case 205: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(226); + ADVANCE(229); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4927,7 +5002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 203: + case 206: ACCEPT_TOKEN(anon_sym_hiding); if (lookahead != 0 && lookahead != '\t' && @@ -4944,7 +5019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 204: + case 207: ACCEPT_TOKEN(anon_sym_import); if (lookahead != 0 && lookahead != '\t' && @@ -4961,7 +5036,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 205: + case 208: ACCEPT_TOKEN(anon_sym_module); if (lookahead != 0 && lookahead != '\t' && @@ -4978,7 +5053,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 206: + case 209: ACCEPT_TOKEN(anon_sym_mutual); if (lookahead != 0 && lookahead != '\t' && @@ -4995,10 +5070,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 207: + case 210: ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(227); + ADVANCE(230); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5014,10 +5089,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 208: + case 211: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(228); + ADVANCE(231); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5033,10 +5108,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 209: + case 212: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(229); + ADVANCE(232); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5052,10 +5127,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 210: + case 213: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(230); + ADVANCE(233); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5071,10 +5146,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 211: + case 214: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(231); + ADVANCE(234); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5090,7 +5165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 212: + case 215: ACCEPT_TOKEN(anon_sym_public); if (lookahead != 0 && lookahead != '\t' && @@ -5107,10 +5182,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 213: + case 216: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(232); + ADVANCE(235); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5126,10 +5201,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 214: + case 217: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(233); + ADVANCE(236); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5145,7 +5220,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 215: + case 218: ACCEPT_TOKEN(anon_sym_record); if (lookahead != 0 && lookahead != '\t' && @@ -5162,10 +5237,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 216: + case 219: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(234); + ADVANCE(237); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5181,10 +5256,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 217: + case 220: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(235); + ADVANCE(238); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5200,7 +5275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 218: + case 221: ACCEPT_TOKEN(anon_sym_syntax); if (lookahead != 0 && lookahead != '\t' && @@ -5217,7 +5292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 219: + case 222: ACCEPT_TOKEN(anon_sym_tactic); if (lookahead != 0 && lookahead != '\t' && @@ -5234,10 +5309,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 220: + case 223: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(236); + ADVANCE(239); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5253,13 +5328,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 221: + case 224: ACCEPT_TOKEN(sym_pragma); END_STATE(); - case 222: + case 225: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(237); + ADVANCE(240); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5275,10 +5350,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 223: + case 226: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(238); + ADVANCE(241); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5294,10 +5369,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 224: + case 227: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(239); + ADVANCE(242); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5313,10 +5388,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 225: + case 228: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(240); + ADVANCE(243); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5332,10 +5407,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 226: + case 229: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(241); + ADVANCE(244); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5351,10 +5426,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 227: + case 230: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(242); + ADVANCE(245); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5370,7 +5445,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 228: + case 231: ACCEPT_TOKEN(anon_sym_pattern); if (lookahead != 0 && lookahead != '\t' && @@ -5387,10 +5462,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 229: + case 232: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(243); + ADVANCE(246); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5406,10 +5481,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 230: + case 233: ACCEPT_TOKEN(sym_name); if (lookahead == 'v') - ADVANCE(244); + ADVANCE(247); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5425,7 +5500,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 231: + case 234: ACCEPT_TOKEN(anon_sym_private); if (lookahead != 0 && lookahead != '\t' && @@ -5442,10 +5517,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 232: + case 235: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(245); + ADVANCE(248); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5461,10 +5536,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 233: + case 236: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(246); + ADVANCE(249); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5480,10 +5555,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 234: + case 237: ACCEPT_TOKEN(sym_name); if (lookahead == 'g') - ADVANCE(247); + ADVANCE(250); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5499,7 +5574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 235: + case 238: ACCEPT_TOKEN(anon_sym_rewrite); if (lookahead != 0 && lookahead != '\t' && @@ -5516,7 +5591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 236: + case 239: ACCEPT_TOKEN(anon_sym_unquote); if (lookahead != 0 && lookahead != '\t' && @@ -5533,7 +5608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 237: + case 240: ACCEPT_TOKEN(anon_sym_abstract); if (lookahead != 0 && lookahead != '\t' && @@ -5550,10 +5625,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 238: + case 241: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(248); + ADVANCE(251); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5569,10 +5644,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 239: + case 242: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(249); + ADVANCE(252); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5588,10 +5663,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 240: + case 243: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(250); + ADVANCE(253); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5607,10 +5682,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 241: + case 244: ACCEPT_TOKEN(sym_name); if (lookahead == 'z') - ADVANCE(251); + ADVANCE(254); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5626,10 +5701,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 242: + case 245: ACCEPT_TOKEN(sym_name); if (lookahead == 'q') - ADVANCE(252); + ADVANCE(255); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5645,10 +5720,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 243: + case 246: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(253); + ADVANCE(256); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5664,10 +5739,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 244: + case 247: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(254); + ADVANCE(257); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5683,10 +5758,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 245: + case 248: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(255); + ADVANCE(258); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5702,10 +5777,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 246: + case 249: ACCEPT_TOKEN(sym_name); if (lookahead == 'm') - ADVANCE(256); + ADVANCE(259); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5721,7 +5796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 247: + case 250: ACCEPT_TOKEN(anon_sym_renaming); if (lookahead != 0 && lookahead != '\t' && @@ -5738,10 +5813,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 248: + case 251: ACCEPT_TOKEN(sym_name); if (lookahead == 'v') - ADVANCE(257); + ADVANCE(260); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5757,10 +5832,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 249: + case 252: ACCEPT_TOKEN(sym_name); if (lookahead == 'o') - ADVANCE(258); + ADVANCE(261); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5776,10 +5851,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 250: + case 253: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(259); + ADVANCE(262); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5795,10 +5870,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 251: + case 254: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(260); + ADVANCE(263); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5814,10 +5889,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 252: + case 255: ACCEPT_TOKEN(sym_name); if (lookahead == 'u') - ADVANCE(261); + ADVANCE(264); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5833,7 +5908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 253: + case 256: ACCEPT_TOKEN(anon_sym_postulate); if (lookahead != 0 && lookahead != '\t' && @@ -5850,7 +5925,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 254: + case 257: ACCEPT_TOKEN(anon_sym_primitive); if (lookahead != 0 && lookahead != '\t' && @@ -5867,7 +5942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 255: + case 258: ACCEPT_TOKEN(anon_sym_quoteGoal); if (lookahead != 0 && lookahead != '\t' && @@ -5884,7 +5959,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 256: + case 259: ACCEPT_TOKEN(anon_sym_quoteTerm); if (lookahead != 0 && lookahead != '\t' && @@ -5901,10 +5976,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 257: + case 260: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(262); + ADVANCE(265); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5920,10 +5995,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 258: + case 261: ACCEPT_TOKEN(sym_name); if (lookahead == 'r') - ADVANCE(263); + ADVANCE(266); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5939,10 +6014,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 259: + case 262: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(264); + ADVANCE(267); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5958,7 +6033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 260: + case 263: ACCEPT_TOKEN(anon_sym_generalize); if (lookahead != 0 && lookahead != '\t' && @@ -5975,10 +6050,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 261: + case 264: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(265); + ADVANCE(268); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5994,7 +6069,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 262: + case 265: ACCEPT_TOKEN(anon_sym_coinductive); if (lookahead != 0 && lookahead != '\t' && @@ -6011,7 +6086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 263: + case 266: ACCEPT_TOKEN(anon_sym_constructor); if (lookahead != 0 && lookahead != '\t' && @@ -6028,10 +6103,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 264: + case 267: ACCEPT_TOKEN(sym_name); if (lookahead == 'y') - ADVANCE(266); + ADVANCE(269); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6047,10 +6122,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 265: + case 268: ACCEPT_TOKEN(sym_name); if (lookahead == 'l') - ADVANCE(267); + ADVANCE(270); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6066,7 +6141,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 266: + case 269: ACCEPT_TOKEN(anon_sym_eta_DASHequality); if (lookahead != 0 && lookahead != '\t' && @@ -6083,10 +6158,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 267: + case 270: ACCEPT_TOKEN(sym_name); if (lookahead == 'i') - ADVANCE(268); + ADVANCE(271); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6102,10 +6177,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 268: + case 271: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(269); + ADVANCE(272); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6121,10 +6196,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 269: + case 272: ACCEPT_TOKEN(sym_name); if (lookahead == 'y') - ADVANCE(270); + ADVANCE(273); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6140,7 +6215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 270: + case 273: ACCEPT_TOKEN(anon_sym_no_DASHeta_DASHequality); if (lookahead != 0 && lookahead != '\t' && @@ -6157,7 +6232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 271: + case 274: if (lookahead == 0) ADVANCE(1); if (lookahead == '"') @@ -6165,87 +6240,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'a') - ADVANCE(280); + ADVANCE(283); if (lookahead == 'c') - ADVANCE(281); + ADVANCE(284); if (lookahead == 'd') - ADVANCE(282); + ADVANCE(285); if (lookahead == 'f') - ADVANCE(283); + ADVANCE(286); if (lookahead == 'g') - ADVANCE(284); + ADVANCE(287); if (lookahead == 'i') - ADVANCE(285); + ADVANCE(288); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(287); + ADVANCE(290); if (lookahead == 'o') - ADVANCE(288); + ADVANCE(291); if (lookahead == 'p') - ADVANCE(289); + ADVANCE(292); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 's') - ADVANCE(292); + ADVANCE(295); if (lookahead == 't') - ADVANCE(293); + ADVANCE(296); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(271); + SKIP(274); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 272: + case 275: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(306); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6258,21 +6333,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 273: + case 276: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') - ADVANCE(305); + ADVANCE(308); END_STATE(); - case 274: + case 277: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'x') - ADVANCE(306); + ADVANCE(309); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6285,12 +6360,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 275: + case 278: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6303,14 +6378,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 276: + case 279: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'r') ADVANCE(307); + if (lookahead == 'r') + ADVANCE(310); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6323,14 +6398,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 277: + case 280: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(308); + ADVANCE(311); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6343,12 +6418,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 278: + case 281: ACCEPT_TOKEN(sym__const_lambda); END_STATE(); - case 279: + case 282: ACCEPT_TOKEN(anon_sym__); if (lookahead != 0 && lookahead != '\t' && @@ -6363,14 +6438,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 280: + case 283: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'b') - ADVANCE(309); + ADVANCE(312); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6383,14 +6458,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 281: + case 284: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(310); + ADVANCE(313); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6403,16 +6478,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 282: + case 285: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(311); + ADVANCE(314); if (lookahead == 'o') - ADVANCE(312); + ADVANCE(315); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6425,16 +6500,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 283: + case 286: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(313); + ADVANCE(316); if (lookahead == 'o') - ADVANCE(314); + ADVANCE(317); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6447,14 +6522,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 284: + case 287: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(315); + ADVANCE(318); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6467,16 +6542,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 285: + case 288: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'm') - ADVANCE(316); + ADVANCE(319); if (lookahead == 'n') - ADVANCE(317); + ADVANCE(320); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6489,14 +6564,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 286: + case 289: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(318); + ADVANCE(321); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6509,18 +6584,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 287: + case 290: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(319); + ADVANCE(322); if (lookahead == 'o') - ADVANCE(320); + ADVANCE(323); if (lookahead == 'u') - ADVANCE(321); + ADVANCE(324); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6533,14 +6608,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 288: + case 291: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'p') - ADVANCE(322); + ADVANCE(325); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6553,18 +6628,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 289: + case 292: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(323); + ADVANCE(326); if (lookahead == 'o') - ADVANCE(324); + ADVANCE(327); if (lookahead == 'r') - ADVANCE(325); + ADVANCE(328); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6577,14 +6652,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 290: + case 293: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(326); + ADVANCE(329); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6597,14 +6672,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 291: + case 294: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(327); + ADVANCE(330); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6617,14 +6692,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 292: + case 295: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'y') - ADVANCE(328); + ADVANCE(331); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6637,14 +6712,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 293: + case 296: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(329); + ADVANCE(332); + if (lookahead == 'e') + ADVANCE(333); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6657,14 +6734,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 294: + case 297: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(330); + ADVANCE(334); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6677,19 +6754,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 295: + case 298: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '-') - ADVANCE(331); + ADVANCE(335); if (lookahead == '{') - ADVANCE(88); + ADVANCE(89); END_STATE(); - case 296: + case 299: ACCEPT_TOKEN(sym__const_lambda); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6702,12 +6779,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 297: + case 300: ACCEPT_TOKEN(sym__const_ellipsis); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6720,12 +6797,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 298: + case 301: ACCEPT_TOKEN(sym__const_forall); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6738,12 +6815,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 299: + case 302: ACCEPT_TOKEN(anon_sym_); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6756,12 +6833,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 300: + case 303: ACCEPT_TOKEN(anon_sym_3); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6774,14 +6851,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 301: + case 304: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6794,12 +6871,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 302: + case 305: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6812,12 +6889,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 303: + case 306: ACCEPT_TOKEN(sym_comment); if (lookahead == '.') - ADVANCE(332); + ADVANCE(336); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || @@ -6828,16 +6905,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || lookahead == '{' || lookahead == '}') - ADVANCE(92); + ADVANCE(93); if (lookahead != 0 && lookahead != '\n') - ADVANCE(303); + ADVANCE(306); END_STATE(); - case 304: + case 307: if (lookahead == '\\') - ADVANCE(333); + ADVANCE(337); if (lookahead == '_') - ADVANCE(334); + ADVANCE(338); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6850,20 +6927,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 305: + case 308: if (lookahead == '.') - ADVANCE(93); + ADVANCE(94); END_STATE(); - case 306: + case 309: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(335); + ADVANCE(339); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6876,14 +6953,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 307: + case 310: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(336); + ADVANCE(340); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6896,14 +6973,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 308: + case 311: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(337); + ADVANCE(341); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6916,14 +6993,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 309: + case 312: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 's') - ADVANCE(338); + ADVANCE(342); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6936,14 +7013,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 310: + case 313: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'd') - ADVANCE(339); + ADVANCE(343); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6956,14 +7033,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 311: + case 314: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(340); + ADVANCE(344); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6976,12 +7053,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 312: + case 315: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6994,14 +7071,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 313: + case 316: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(341); + ADVANCE(345); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7014,14 +7091,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 314: + case 317: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(342); + ADVANCE(346); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7034,14 +7111,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 315: + case 318: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(343); + ADVANCE(347); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7054,14 +7131,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 316: + case 319: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'p') - ADVANCE(344); + ADVANCE(348); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7074,16 +7151,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 317: + case 320: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'f') - ADVANCE(345); + ADVANCE(349); if (lookahead == 's') - ADVANCE(346); + ADVANCE(350); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7096,14 +7173,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 318: + case 321: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(347); + ADVANCE(351); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7116,14 +7193,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 319: + case 322: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(348); + ADVANCE(352); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7136,14 +7213,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 320: + case 323: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'd') - ADVANCE(349); + ADVANCE(353); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7156,14 +7233,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 321: + case 324: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(350); + ADVANCE(354); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7176,14 +7253,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 322: + case 325: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(351); + ADVANCE(355); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7196,14 +7273,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 323: + case 326: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(352); + ADVANCE(356); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7216,14 +7293,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 324: + case 327: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 's') - ADVANCE(353); + ADVANCE(357); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7236,14 +7313,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 325: + case 328: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(354); + ADVANCE(358); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7256,14 +7333,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 326: + case 329: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(355); + ADVANCE(359); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7276,14 +7353,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 327: + case 330: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(356); + ADVANCE(360); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7296,14 +7373,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 328: + case 331: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(357); + ADVANCE(361); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7316,14 +7393,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 329: + case 332: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(358); + ADVANCE(362); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7336,14 +7413,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 330: + case 333: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 's') + ADVANCE(363); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); if (lookahead == 'q') - ADVANCE(359); + ADVANCE(364); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7356,22 +7453,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 331: + case 335: if (lookahead == '#') - ADVANCE(164); + ADVANCE(167); if (lookahead == '-') - ADVANCE(129); + ADVANCE(131); if (lookahead != 0) - ADVANCE(130); + ADVANCE(132); END_STATE(); - case 332: + case 336: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(360); + ADVANCE(365); if (lookahead == '_') - ADVANCE(361); + ADVANCE(366); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || @@ -7382,12 +7479,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || lookahead == '{' || lookahead == '}') - ADVANCE(92); + ADVANCE(93); if (lookahead != 0 && lookahead != '\n') - ADVANCE(303); + ADVANCE(306); END_STATE(); - case 333: + case 337: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7395,9 +7492,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 334: + case 338: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7411,16 +7508,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 335: + case 339: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(335); + ADVANCE(339); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7433,14 +7530,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 336: + case 340: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'p') - ADVANCE(362); + ADVANCE(367); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7453,12 +7550,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 337: + case 341: ACCEPT_TOKEN(anon_sym_Set); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7471,14 +7568,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 338: + case 342: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(363); + ADVANCE(368); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7491,14 +7588,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 339: + case 343: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(364); + ADVANCE(369); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7511,14 +7608,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 340: + case 344: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(365); + ADVANCE(370); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7531,14 +7628,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 341: + case 345: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(366); + ADVANCE(371); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7551,14 +7648,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 342: + case 346: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(367); + ADVANCE(372); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7571,14 +7668,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 343: + case 347: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(368); + ADVANCE(373); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7591,14 +7688,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 344: + case 348: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(369); + ADVANCE(374); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7611,14 +7708,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 345: + case 349: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(370); + ADVANCE(375); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7631,14 +7728,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 346: + case 350: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(371); + ADVANCE(376); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7651,12 +7748,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 347: + case 351: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7669,14 +7766,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 348: + case 352: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(372); + ADVANCE(377); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7689,14 +7786,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 349: + case 353: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(373); + ADVANCE(378); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7709,14 +7806,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 350: + case 354: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(374); + ADVANCE(379); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7729,14 +7826,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 351: + case 355: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(375); + ADVANCE(380); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7749,14 +7846,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 352: + case 356: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(376); + ADVANCE(381); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7769,14 +7866,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 353: + case 357: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(377); + ADVANCE(382); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7789,16 +7886,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 354: + case 358: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'm') - ADVANCE(378); + ADVANCE(383); if (lookahead == 'v') - ADVANCE(379); + ADVANCE(384); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7811,14 +7908,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 355: + case 359: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(380); + ADVANCE(385); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7831,14 +7928,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 356: + case 360: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(381); + ADVANCE(386); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7851,14 +7948,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 357: + case 361: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(382); + ADVANCE(387); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7871,14 +7968,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 358: + case 362: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(383); + ADVANCE(388); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7891,14 +7988,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 359: + case 363: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 't') + ADVANCE(389); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); if (lookahead == 'u') - ADVANCE(384); + ADVANCE(390); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7911,21 +8028,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 360: + case 365: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(92); + ADVANCE(93); if (lookahead != 0 && lookahead != '\n') - ADVANCE(303); + ADVANCE(306); END_STATE(); - case 361: + case 366: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || lookahead == '\r' || @@ -7938,15 +8055,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@' || lookahead == '{' || lookahead == '}') - ADVANCE(92); + ADVANCE(93); if (lookahead != 0 && lookahead != '\n') - ADVANCE(303); + ADVANCE(306); END_STATE(); - case 362: + case 367: ACCEPT_TOKEN(anon_sym_Prop); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7959,14 +8076,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 363: + case 368: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(385); + ADVANCE(391); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7979,14 +8096,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 364: + case 369: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(386); + ADVANCE(392); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -7999,12 +8116,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 365: + case 370: ACCEPT_TOKEN(anon_sym_data); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8017,14 +8134,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 366: + case 371: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'd') - ADVANCE(387); + ADVANCE(393); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8037,14 +8154,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 367: + case 372: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(388); + ADVANCE(394); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8057,14 +8174,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 368: + case 373: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(389); + ADVANCE(395); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8077,14 +8194,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 369: + case 374: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(390); + ADVANCE(396); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8097,14 +8214,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 370: + case 375: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'x') - ADVANCE(391); + ADVANCE(397); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8117,14 +8234,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 371: + case 376: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(392); + ADVANCE(398); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8137,14 +8254,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 372: + case 377: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(393); + ADVANCE(399); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8157,14 +8274,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 373: + case 378: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(394); + ADVANCE(400); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8177,14 +8294,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 374: + case 379: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(395); + ADVANCE(401); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8197,12 +8314,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 375: + case 380: ACCEPT_TOKEN(anon_sym_open); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8215,14 +8332,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 376: + case 381: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(396); + ADVANCE(402); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8235,14 +8352,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 377: + case 382: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(397); + ADVANCE(403); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8255,14 +8372,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 378: + case 383: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(398); + ADVANCE(404); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8275,14 +8392,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 379: + case 384: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(399); + ADVANCE(405); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8295,14 +8412,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 380: + case 385: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(400); + ADVANCE(406); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8315,14 +8432,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 381: + case 386: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(401); + ADVANCE(407); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8335,14 +8452,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 382: + case 387: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(402); + ADVANCE(408); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8355,14 +8472,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 383: + case 388: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(403); + ADVANCE(409); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8375,14 +8492,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 384: + case 389: + ACCEPT_TOKEN(sym_test2); + if (lookahead == '.') + ADVANCE(307); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 390: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(404); + ADVANCE(410); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8395,14 +8530,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 385: + case 391: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(405); + ADVANCE(411); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8415,14 +8550,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 386: + case 392: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(406); + ADVANCE(412); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8435,12 +8570,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 387: + case 393: ACCEPT_TOKEN(anon_sym_field); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8453,14 +8588,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 388: + case 394: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(298); + ADVANCE(301); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8473,14 +8608,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 389: + case 395: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(407); + ADVANCE(413); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8493,14 +8628,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 390: + case 396: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(408); + ADVANCE(414); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8513,16 +8648,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 391: + case 397: ACCEPT_TOKEN(anon_sym_infix); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(409); + ADVANCE(415); if (lookahead == 'r') - ADVANCE(410); + ADVANCE(416); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8535,14 +8670,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 392: + case 398: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(411); + ADVANCE(417); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8555,12 +8690,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 393: + case 399: ACCEPT_TOKEN(anon_sym_macro); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8573,14 +8708,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 394: + case 400: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(412); + ADVANCE(418); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8593,14 +8728,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 395: + case 401: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(413); + ADVANCE(419); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8613,14 +8748,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 396: + case 402: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(414); + ADVANCE(420); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8633,14 +8768,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 397: + case 403: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(415); + ADVANCE(421); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8653,14 +8788,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 398: + case 404: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(416); + ADVANCE(422); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8673,14 +8808,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 399: + case 405: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(417); + ADVANCE(423); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8693,16 +8828,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 400: + case 406: ACCEPT_TOKEN(anon_sym_quote); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'G') - ADVANCE(418); + ADVANCE(424); if (lookahead == 'T') - ADVANCE(419); + ADVANCE(425); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8715,14 +8850,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 401: + case 407: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'd') - ADVANCE(420); + ADVANCE(426); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8735,14 +8870,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 402: + case 408: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'x') - ADVANCE(421); + ADVANCE(427); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8755,14 +8890,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 403: + case 409: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(422); + ADVANCE(428); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8775,14 +8910,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 404: + case 410: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(423); + ADVANCE(429); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8795,14 +8930,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 405: + case 411: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(424); + ADVANCE(430); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8815,12 +8950,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 406: + case 412: ACCEPT_TOKEN(anon_sym_codata); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8833,14 +8968,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 407: + case 413: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(425); + ADVANCE(431); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8853,12 +8988,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 408: + case 414: ACCEPT_TOKEN(anon_sym_import); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8871,12 +9006,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 409: + case 415: ACCEPT_TOKEN(anon_sym_infixl); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8889,12 +9024,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 410: + case 416: ACCEPT_TOKEN(anon_sym_infixr); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8907,14 +9042,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 411: + case 417: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(426); + ADVANCE(432); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8927,12 +9062,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 412: + case 418: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8945,12 +9080,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 413: + case 419: ACCEPT_TOKEN(anon_sym_mutual); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8963,14 +9098,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 414: + case 420: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(427); + ADVANCE(433); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -8983,14 +9118,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 415: + case 421: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(428); + ADVANCE(434); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9003,14 +9138,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 416: + case 422: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(429); + ADVANCE(435); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9023,14 +9158,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 417: + case 423: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(430); + ADVANCE(436); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9043,14 +9178,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 418: + case 424: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(431); + ADVANCE(437); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9063,14 +9198,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 419: + case 425: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(432); + ADVANCE(438); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9083,12 +9218,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 420: + case 426: ACCEPT_TOKEN(anon_sym_record); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9101,12 +9236,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 421: + case 427: ACCEPT_TOKEN(anon_sym_syntax); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9119,12 +9254,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 422: + case 428: ACCEPT_TOKEN(anon_sym_tactic); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9137,14 +9272,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 423: + case 429: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(433); + ADVANCE(439); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9157,14 +9292,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 424: + case 430: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(434); + ADVANCE(440); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9177,14 +9312,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 425: + case 431: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(435); + ADVANCE(441); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9197,14 +9332,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 426: + case 432: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(436); + ADVANCE(442); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9217,12 +9352,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 427: + case 433: ACCEPT_TOKEN(anon_sym_pattern); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9235,14 +9370,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 428: + case 434: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(437); + ADVANCE(443); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9255,14 +9390,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 429: + case 435: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'v') - ADVANCE(438); + ADVANCE(444); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9275,12 +9410,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 430: + case 436: ACCEPT_TOKEN(anon_sym_private); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9293,14 +9428,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 431: + case 437: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(439); + ADVANCE(445); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9313,14 +9448,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 432: + case 438: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(440); + ADVANCE(446); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9333,12 +9468,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 433: + case 439: ACCEPT_TOKEN(anon_sym_unquote); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9351,12 +9486,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 434: + case 440: ACCEPT_TOKEN(anon_sym_abstract); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9369,14 +9504,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 435: + case 441: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'z') - ADVANCE(441); + ADVANCE(447); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9389,12 +9524,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 436: + case 442: ACCEPT_TOKEN(anon_sym_instance); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9407,14 +9542,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 437: + case 443: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(442); + ADVANCE(448); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9427,14 +9562,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 438: + case 444: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(443); + ADVANCE(449); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9447,14 +9582,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 439: + case 445: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(444); + ADVANCE(450); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9467,14 +9602,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 440: + case 446: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'm') - ADVANCE(445); + ADVANCE(451); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9487,14 +9622,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 441: + case 447: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(446); + ADVANCE(452); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9507,12 +9642,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 442: + case 448: ACCEPT_TOKEN(anon_sym_postulate); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9525,12 +9660,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 443: + case 449: ACCEPT_TOKEN(anon_sym_primitive); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9543,12 +9678,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 444: + case 450: ACCEPT_TOKEN(anon_sym_quoteGoal); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9561,12 +9696,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 445: + case 451: ACCEPT_TOKEN(anon_sym_quoteTerm); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9579,12 +9714,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 446: + case 452: ACCEPT_TOKEN(anon_sym_generalize); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9597,76 +9732,153 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 447: + case 453: + if (lookahead == '(') + ADVANCE(454); + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '.') + ADVANCE(456); + if (lookahead == '\\') + ADVANCE(457); + if (lookahead == '_') + ADVANCE(16); + if (lookahead == '{') + ADVANCE(458); + if (lookahead == '}') + ADVANCE(459); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(453); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '@') + ADVANCE(47); + END_STATE(); + case 454: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_name); + if (lookahead == '-') + ADVANCE(51); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 456: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') + ADVANCE(460); + END_STATE(); + case 457: + if (lookahead == 'n') + SKIP(453); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 458: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '-') + ADVANCE(335); + END_STATE(); + case 459: + if (lookahead == '}') + ADVANCE(91); + END_STATE(); + case 460: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 461: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') ADVANCE(7); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(447); + SKIP(461); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 448: + case 462: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(312); + ADVANCE(315); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9679,14 +9891,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 449: + case 463: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(314); + ADVANCE(317); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9699,45 +9911,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); - END_STATE(); - case 450: - if (lookahead == '}') - ADVANCE(90); + ADVANCE(305); END_STATE(); - case 451: - if (lookahead == '(') - ADVANCE(452); - if (lookahead == '-') - ADVANCE(453); + case 464: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(454); - if (lookahead == '\\') - ADVANCE(455); - if (lookahead == '_') - ADVANCE(16); - if (lookahead == '{') - ADVANCE(456); - if (lookahead == '}') - ADVANCE(450); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(451); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@') - ADVANCE(47); - END_STATE(); - case 452: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 453: - ACCEPT_TOKEN(sym_name); - if (lookahead == '-') - ADVANCE(51); + ADVANCE(307); + if (lookahead == 'a') + ADVANCE(332); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9746,113 +9927,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && - lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(47); - END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') - ADVANCE(457); - END_STATE(); - case 455: - if (lookahead == 'n') - SKIP(451); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); - END_STATE(); - case 456: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '-') - ADVANCE(331); - END_STATE(); - case 457: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ADVANCE(305); END_STATE(); - case 458: + case 465: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(462); + ADVANCE(469); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(458); + SKIP(465); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 459: + case 466: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9865,12 +10020,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 460: + case 467: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9883,14 +10038,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 461: + case 468: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(320); + ADVANCE(323); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9903,14 +10058,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 462: + case 469: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(465); + ADVANCE(472); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9923,16 +10078,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 463: + case 470: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'h') - ADVANCE(466); + ADVANCE(473); if (lookahead == 'i') - ADVANCE(467); + ADVANCE(474); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9945,12 +10100,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 464: + case 471: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9963,16 +10118,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 465: + case 472: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(356); + ADVANCE(360); if (lookahead == 'w') - ADVANCE(468); + ADVANCE(475); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -9985,14 +10140,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 466: + case 473: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(469); + ADVANCE(476); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10005,14 +10160,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 467: + case 474: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(470); + ADVANCE(477); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10025,14 +10180,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 468: + case 475: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(471); + ADVANCE(478); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10045,14 +10200,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 469: + case 476: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(472); + ADVANCE(479); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10065,14 +10220,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 470: + case 477: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'h') - ADVANCE(473); + ADVANCE(480); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10085,14 +10240,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 471: + case 478: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(474); + ADVANCE(481); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10105,14 +10260,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 472: + case 479: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(475); + ADVANCE(482); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10125,12 +10280,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 473: + case 480: ACCEPT_TOKEN(anon_sym_with); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10143,14 +10298,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 474: + case 481: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(476); + ADVANCE(483); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10163,12 +10318,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 475: + case 482: ACCEPT_TOKEN(anon_sym_where); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10181,14 +10336,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 476: + case 483: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(477); + ADVANCE(484); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10201,12 +10356,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 477: + case 484: ACCEPT_TOKEN(anon_sym_rewrite); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10219,9 +10374,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 478: + case 485: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -10229,56 +10384,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(480); + ADVANCE(487); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(478); + SKIP(485); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 479: + case 486: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 480: + case 487: if (lookahead == 'n') - SKIP(478); + SKIP(485); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10286,14 +10441,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 481: + case 488: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(482); + ADVANCE(489); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10306,14 +10461,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 482: + case 489: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(483); + ADVANCE(490); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10326,14 +10481,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 483: + case 490: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(484); + ADVANCE(491); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10346,14 +10501,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 484: + case 491: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(485); + ADVANCE(492); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10366,14 +10521,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 485: + case 492: ACCEPT_TOKEN(anon_sym_quote); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'T') - ADVANCE(419); + ADVANCE(425); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10386,75 +10541,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 486: + case 493: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') ADVANCE(7); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10628) - ADVANCE(487); + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(486); + SKIP(493); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 487: + case 494: ACCEPT_TOKEN(anon_sym_2); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10467,266 +10622,206 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 488: + case 495: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(489); + ADVANCE(496); if (lookahead == '0') - ADVANCE(490); + ADVANCE(497); if (lookahead == ':') - ADVANCE(491); + ADVANCE(498); if (lookahead == '=') - ADVANCE(492); + ADVANCE(499); if (lookahead == '\\') - SKIP(493); + SKIP(500); if (lookahead == 'i') - ADVANCE(494); + ADVANCE(501); if (lookahead == 'm') - ADVANCE(495); + ADVANCE(502); if (lookahead == 'r') - ADVANCE(496); + ADVANCE(503); if (lookahead == 'w') - ADVANCE(497); + ADVANCE(504); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(498); + ADVANCE(505); if (lookahead == 8594) - ADVANCE(499); + ADVANCE(506); if (lookahead == 10627) - ADVANCE(500); + ADVANCE(507); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(488); + SKIP(495); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(501); + ADVANCE(508); END_STATE(); - case 489: + case 496: if (lookahead == '-') - ADVANCE(92); + ADVANCE(93); if (lookahead == '0') - ADVANCE(490); + ADVANCE(497); if (lookahead == '>') - ADVANCE(499); + ADVANCE(506); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(501); + ADVANCE(508); END_STATE(); - case 490: + case 497: ACCEPT_TOKEN(aux_sym_integer_token1); if (lookahead == 'x') - ADVANCE(502); + ADVANCE(509); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(501); + ADVANCE(508); END_STATE(); - case 491: + case 498: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 492: + case 499: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 493: + case 500: if (lookahead == 'n') - SKIP(488); + SKIP(495); END_STATE(); - case 494: + case 501: if (lookahead == 'n') - ADVANCE(503); + ADVANCE(510); END_STATE(); - case 495: + case 502: if (lookahead == 'o') - ADVANCE(504); + ADVANCE(511); END_STATE(); - case 496: + case 503: if (lookahead == 'e') - ADVANCE(505); + ADVANCE(512); END_STATE(); - case 497: + case 504: if (lookahead == 'h') - ADVANCE(506); + ADVANCE(513); if (lookahead == 'i') - ADVANCE(507); + ADVANCE(514); END_STATE(); - case 498: + case 505: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 499: + case 506: ACCEPT_TOKEN(sym__const_right_arrow); END_STATE(); - case 500: + case 507: ACCEPT_TOKEN(anon_sym_); END_STATE(); - case 501: + case 508: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(501); + ADVANCE(508); END_STATE(); - case 502: + case 509: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(508); + ADVANCE(515); END_STATE(); - case 503: + case 510: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 504: + case 511: if (lookahead == 'd') - ADVANCE(509); + ADVANCE(516); END_STATE(); - case 505: + case 512: if (lookahead == 'w') - ADVANCE(510); + ADVANCE(517); END_STATE(); - case 506: + case 513: if (lookahead == 'e') - ADVANCE(511); + ADVANCE(518); END_STATE(); - case 507: + case 514: if (lookahead == 't') - ADVANCE(512); + ADVANCE(519); END_STATE(); - case 508: + case 515: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) - ADVANCE(508); + ADVANCE(515); END_STATE(); - case 509: + case 516: if (lookahead == 'u') - ADVANCE(513); + ADVANCE(520); END_STATE(); - case 510: + case 517: if (lookahead == 'r') - ADVANCE(514); + ADVANCE(521); END_STATE(); - case 511: + case 518: if (lookahead == 'r') - ADVANCE(515); + ADVANCE(522); END_STATE(); - case 512: + case 519: if (lookahead == 'h') - ADVANCE(516); + ADVANCE(523); END_STATE(); - case 513: + case 520: if (lookahead == 'l') - ADVANCE(517); + ADVANCE(524); END_STATE(); - case 514: + case 521: if (lookahead == 'i') - ADVANCE(518); + ADVANCE(525); END_STATE(); - case 515: + case 522: if (lookahead == 'e') - ADVANCE(519); + ADVANCE(526); END_STATE(); - case 516: + case 523: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 517: + case 524: if (lookahead == 'e') - ADVANCE(520); + ADVANCE(527); END_STATE(); - case 518: + case 525: if (lookahead == 't') - ADVANCE(521); + ADVANCE(528); END_STATE(); - case 519: + case 526: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 520: + case 527: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 521: + case 528: if (lookahead == 'e') - ADVANCE(522); + ADVANCE(529); END_STATE(); - case 522: + case 529: ACCEPT_TOKEN(anon_sym_rewrite); END_STATE(); - case 523: - if (lookahead == '(') - ADVANCE(452); - if (lookahead == '-') - ADVANCE(453); - if (lookahead == '.') - ADVANCE(454); - if (lookahead == '\\') - ADVANCE(524); - if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'w') - ADVANCE(525); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 10627) - ADVANCE(42); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(523); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@' && - lookahead != '}') - ADVANCE(47); - END_STATE(); - case 524: - if (lookahead == 'n') - SKIP(523); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); - END_STATE(); - case 525: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'h') - ADVANCE(85); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != '.' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(47); - END_STATE(); - case 526: + case 530: if (lookahead == '-') - ADVANCE(527); + ADVANCE(531); if (lookahead == '\\') - ADVANCE(528); + ADVANCE(532); if (lookahead == '_') - ADVANCE(334); + ADVANCE(338); if (lookahead == 'i') - ADVANCE(529); + ADVANCE(533); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(526); + SKIP(530); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -10734,14 +10829,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 527: + case 531: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(306); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10754,11 +10849,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 528: + case 532: if (lookahead == 'n') - SKIP(526); + SKIP(530); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10766,14 +10861,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 529: + case 533: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'm') - ADVANCE(316); + ADVANCE(319); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10786,13 +10881,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 530: + case 534: if (lookahead == '-') - ADVANCE(331); + ADVANCE(335); END_STATE(); - case 531: + case 535: + if (lookahead == '(') + ADVANCE(454); + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '.') + ADVANCE(456); + if (lookahead == '\\') + ADVANCE(536); + if (lookahead == '_') + ADVANCE(16); + if (lookahead == 'w') + ADVANCE(537); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 10627) + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(535); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '@' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 536: + if (lookahead == 'n') + SKIP(535); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 537: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'h') + ADVANCE(86); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 538: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -10800,157 +10955,157 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') ADVANCE(7); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(531); + SKIP(538); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 532: + case 539: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') ADVANCE(7); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(532); + SKIP(539); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 533: + case 540: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 534: + case 541: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(453); + ADVANCE(455); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(535); + ADVANCE(542); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 10627) ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(534); + SKIP(541); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 535: + case 542: if (lookahead == 'n') - SKIP(534); + SKIP(541); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10960,34 +11115,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 536: + case 543: if (lookahead == '-') - ADVANCE(527); + ADVANCE(531); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '\\') - ADVANCE(537); + ADVANCE(544); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(536); + SKIP(543); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '.' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 537: + case 544: if (lookahead == 'n') - SKIP(536); + SKIP(543); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -10995,9 +11150,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 538: + case 545: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -11005,206 +11160,285 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(538); + SKIP(545); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 539: + case 546: + if (lookahead == '-') + ADVANCE(547); + if (lookahead == '\\') + SKIP(548); + if (lookahead == 'i') + ADVANCE(501); + if (lookahead == 't') + ADVANCE(549); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(546); + END_STATE(); + case 547: + if (lookahead == '-') + ADVANCE(93); + END_STATE(); + case 548: + if (lookahead == 'n') + SKIP(546); + END_STATE(); + case 549: + if (lookahead == 'e') + ADVANCE(550); + END_STATE(); + case 550: + if (lookahead == 's') + ADVANCE(551); + END_STATE(); + case 551: + if (lookahead == 't') + ADVANCE(552); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym_test2); + END_STATE(); + case 553: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(539); + SKIP(553); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 540: + case 554: + if (lookahead == '(') + ADVANCE(454); + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '.') + ADVANCE(456); + if (lookahead == '=') + ADVANCE(11); + if (lookahead == '\\') + ADVANCE(555); + if (lookahead == '_') + ADVANCE(16); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 10627) + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(554); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '@' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 555: + if (lookahead == 'n') + SKIP(554); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 556: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(558); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); - if (lookahead == 10632) - ADVANCE(543); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(540); + SKIP(556); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 541: + case 557: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(303); + ADVANCE(306); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '>') - ADVANCE(542); + ADVANCE(559); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11217,12 +11451,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 542: - ACCEPT_TOKEN(sym__const_right_arrow); + case 558: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == ')') + ADVANCE(90); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11230,17 +11466,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '(' && - lookahead != ')' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 543: - ACCEPT_TOKEN(anon_sym_4); + case 559: + ACCEPT_TOKEN(sym__const_right_arrow); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11253,9 +11488,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 544: + case 560: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -11263,150 +11498,209 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') ADVANCE(7); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(529); + ADVANCE(533); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'o') - ADVANCE(288); + ADVANCE(291); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(544); + SKIP(560); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 545: + case 561: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(546); + ADVANCE(562); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); + if (lookahead == ':') + ADVANCE(498); + if (lookahead == ';') + ADVANCE(486); if (lookahead == '\\') - SKIP(547); + SKIP(563); + if (lookahead == 'w') + ADVANCE(564); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(565); + if (lookahead == '}') + ADVANCE(38); if (lookahead == 8594) - ADVANCE(499); + ADVANCE(506); if (lookahead == 10627) - ADVANCE(500); + ADVANCE(507); + if (lookahead == 10628) + ADVANCE(566); if (lookahead == 10632) - ADVANCE(548); + ADVANCE(567); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(545); + SKIP(561); END_STATE(); - case 546: + case 562: if (lookahead == '-') - ADVANCE(92); + ADVANCE(93); if (lookahead == '>') - ADVANCE(499); + ADVANCE(506); END_STATE(); - case 547: + case 563: if (lookahead == 'n') - SKIP(545); + SKIP(561); END_STATE(); - case 548: - ACCEPT_TOKEN(anon_sym_4); + case 564: + if (lookahead == 'h') + ADVANCE(513); END_STATE(); - case 549: + case 565: if (lookahead == ')') - ADVANCE(5); + ADVANCE(90); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_2); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_4); + END_STATE(); + case 568: + if (lookahead == '(') + ADVANCE(454); if (lookahead == '-') - ADVANCE(550); - if (lookahead == ':') - ADVANCE(491); - if (lookahead == ';') - ADVANCE(479); + ADVANCE(569); + if (lookahead == '.') + ADVANCE(456); if (lookahead == '\\') - SKIP(551); - if (lookahead == 'w') - ADVANCE(552); + ADVANCE(570); + if (lookahead == '_') + ADVANCE(16); if (lookahead == '{') - ADVANCE(530); + ADVANCE(298); if (lookahead == '|') - ADVANCE(553); - if (lookahead == '}') - ADVANCE(38); - if (lookahead == 10628) - ADVANCE(554); - if (lookahead == 10632) - ADVANCE(548); + ADVANCE(571); + if (lookahead == 8594) + ADVANCE(40); + if (lookahead == 10627) + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(549); + SKIP(568); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '@' && + lookahead != '}') + ADVANCE(47); END_STATE(); - case 550: + case 569: + ACCEPT_TOKEN(sym_name); if (lookahead == '-') - ADVANCE(92); + ADVANCE(51); + if (lookahead == '>') + ADVANCE(40); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); END_STATE(); - case 551: + case 570: if (lookahead == 'n') - SKIP(549); - END_STATE(); - case 552: - if (lookahead == 'h') - ADVANCE(506); + SKIP(568); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); END_STATE(); - case 553: + case 571: + ACCEPT_TOKEN(sym_name); if (lookahead == ')') - ADVANCE(89); - END_STATE(); - case 554: - ACCEPT_TOKEN(anon_sym_2); + ADVANCE(90); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); END_STATE(); - case 555: + case 572: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -11414,99 +11708,127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(555); + SKIP(572); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 556: + case 573: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); if (lookahead == '=') - ADVANCE(11); + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(557); + ADVANCE(574); if (lookahead == '_') - ADVANCE(16); + ADVANCE(282); + if (lookahead == 'm') + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(469); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(556); + SKIP(573); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 557: + case 574: if (lookahead == 'n') - SKIP(556); + SKIP(573); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11514,32 +11836,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 558: + case 575: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(275); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); + if (lookahead == '=') + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(469); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(575); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 576: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'n') + ADVANCE(577); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 577: + ACCEPT_TOKEN(anon_sym_in); if (lookahead == '.') + ADVANCE(307); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 578: + if (lookahead == '(') ADVANCE(454); + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '.') + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(559); + ADVANCE(579); if (lookahead == '_') ADVANCE(16); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 10627) ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(558); + SKIP(578); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -11547,9 +11980,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 559: + case 579: if (lookahead == 'n') - SKIP(558); + SKIP(578); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11559,144 +11992,252 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 560: + case 580: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10628) - ADVANCE(487); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); + if (lookahead == 10632) + ADVANCE(581); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(560); + SKIP(580); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 561: + case 581: + ACCEPT_TOKEN(anon_sym_4); + if (lookahead == '.') + ADVANCE(307); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 582: if (lookahead == '-') - ADVANCE(546); - if (lookahead == ':') - ADVANCE(491); - if (lookahead == '=') - ADVANCE(492); + ADVANCE(562); if (lookahead == '\\') - SKIP(562); + SKIP(583); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '|') - ADVANCE(498); + ADVANCE(505); if (lookahead == 8594) - ADVANCE(499); - if (lookahead == 10628) - ADVANCE(554); + ADVANCE(506); + if (lookahead == 10632) + ADVANCE(567); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(561); + SKIP(582); END_STATE(); - case 562: + case 583: if (lookahead == 'n') - SKIP(561); + SKIP(582); END_STATE(); - case 563: + case 584: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(557); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(564); + ADVANCE(281); if (lookahead == '_') - ADVANCE(565); - if (lookahead == 'i') - ADVANCE(566); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10628) + ADVANCE(494); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(563); + SKIP(584); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); - END_STATE(); - case 564: - if (lookahead == 'n') - SKIP(563); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 565: - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && + case 585: + if (lookahead == '-') + ADVANCE(562); + if (lookahead == ':') + ADVANCE(498); + if (lookahead == '=') + ADVANCE(499); + if (lookahead == '\\') + SKIP(586); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '|') + ADVANCE(505); + if (lookahead == 8594) + ADVANCE(506); + if (lookahead == 10628) + ADVANCE(566); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(585); + END_STATE(); + case 586: + if (lookahead == 'n') + SKIP(585); + END_STATE(); + case 587: + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '.') + ADVANCE(456); + if (lookahead == '\\') + ADVANCE(588); + if (lookahead == '_') + ADVANCE(589); + if (lookahead == 'i') + ADVANCE(590); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 10627) + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(587); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '@' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 588: + if (lookahead == 'n') + SKIP(587); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 589: + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && lookahead != ' ' && lookahead != '"' && lookahead != '(' && @@ -11708,10 +12249,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 566: + case 590: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(567); + ADVANCE(591); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11727,10 +12268,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 567: + case 591: ACCEPT_TOKEN(sym_name); if (lookahead == 's') - ADVANCE(568); + ADVANCE(592); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11746,10 +12287,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 568: + case 592: ACCEPT_TOKEN(sym_name); if (lookahead == 't') - ADVANCE(569); + ADVANCE(593); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11765,10 +12306,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 569: + case 593: ACCEPT_TOKEN(sym_name); if (lookahead == 'a') - ADVANCE(570); + ADVANCE(594); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11784,10 +12325,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 570: + case 594: ACCEPT_TOKEN(sym_name); if (lookahead == 'n') - ADVANCE(571); + ADVANCE(595); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11803,10 +12344,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 571: + case 595: ACCEPT_TOKEN(sym_name); if (lookahead == 'c') - ADVANCE(572); + ADVANCE(596); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11822,10 +12363,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 572: + case 596: ACCEPT_TOKEN(sym_name); if (lookahead == 'e') - ADVANCE(573); + ADVANCE(597); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11841,7 +12382,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 573: + case 597: ACCEPT_TOKEN(anon_sym_instance); if (lookahead != 0 && lookahead != '\t' && @@ -11858,85 +12399,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 574: + case 598: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); - if (lookahead == '=') - ADVANCE(460); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(599); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); + ADVANCE(282); + if (lookahead == 'a') + ADVANCE(600); + if (lookahead == 'h') + ADVANCE(601); + if (lookahead == 'p') + ADVANCE(602); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(462); - if (lookahead == 't') - ADVANCE(293); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) ADVANCE(298); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(574); + SKIP(598); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && + lookahead != '\'' && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 575: + case 599: + if (lookahead == 'n') + SKIP(598); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 600: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'n') - ADVANCE(576); + ADVANCE(307); + if (lookahead == 's') + ADVANCE(605); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11949,12 +12486,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 576: - ACCEPT_TOKEN(anon_sym_in); + case 601: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 'i') + ADVANCE(606); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -11967,51 +12506,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 577: - if (lookahead == '(') - ADVANCE(452); - if (lookahead == '-') - ADVANCE(578); + case 602: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(454); - if (lookahead == '=') - ADVANCE(11); - if (lookahead == '\\') - ADVANCE(579); - if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'm') - ADVANCE(580); - if (lookahead == 'r') - ADVANCE(581); - if (lookahead == 'w') - ADVANCE(35); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); - if (lookahead == 10627) - ADVANCE(42); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(577); + ADVANCE(307); + if (lookahead == 'u') + ADVANCE(607); if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && lookahead != '@' && + lookahead != '{' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 578: - ACCEPT_TOKEN(sym_name); - if (lookahead == '-') - ADVANCE(51); - if (lookahead == '>') - ADVANCE(40); + case 603: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'e') + ADVANCE(608); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12020,29 +12542,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && - lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 579: + case 604: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); if (lookahead == 'n') - SKIP(577); + ADVANCE(334); + if (lookahead == 's') + ADVANCE(609); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); END_STATE(); - case 580: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'o') - ADVANCE(71); + case 605: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '.') + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12051,17 +12582,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && - lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 581: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'e') - ADVANCE(582); + case 606: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'd') + ADVANCE(610); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12070,17 +12602,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && - lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 582: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'w') - ADVANCE(121); + case 607: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'b') + ADVANCE(611); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12089,302 +12622,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && - lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 583: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); + case 608: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10628) - ADVANCE(487); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(583); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(307); + if (lookahead == 'c') + ADVANCE(360); + if (lookahead == 'n') + ADVANCE(612); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && lookahead != ';' && lookahead != '@' && + lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 584: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == ')') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(272); + case 609: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(529); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'o') - ADVANCE(288); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(584); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(613); if (lookahead != 0 && - lookahead != '\'' && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && lookahead != ';' && lookahead != '@' && + lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 585: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(541); + case 610: + ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(36); - if (lookahead == '}') - ADVANCE(533); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(585); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@') - ADVANCE(302); - END_STATE(); - case 586: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == ')') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(587); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'a') - ADVANCE(588); - if (lookahead == 'h') - ADVANCE(589); - if (lookahead == 'p') - ADVANCE(590); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(591); - if (lookahead == 'u') - ADVANCE(592); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(586); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 587: - if (lookahead == 'n') - SKIP(586); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 588: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 's') - ADVANCE(593); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 589: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'i') - ADVANCE(594); + ADVANCE(307); + if (lookahead == 'i') + ADVANCE(614); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12397,14 +12688,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 590: + case 611: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'u') - ADVANCE(595); + ADVANCE(307); + if (lookahead == 'l') + ADVANCE(615); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12417,14 +12708,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 591: + case 612: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'e') - ADVANCE(596); + ADVANCE(307); + if (lookahead == 'a') + ADVANCE(616); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12437,74 +12728,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 592: + case 613: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(330); - if (lookahead == 's') - ADVANCE(597); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 593: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '.') - ADVANCE(304); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 594: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'd') - ADVANCE(598); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 595: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'b') - ADVANCE(599); + ADVANCE(617); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12517,36 +12748,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 596: + case 614: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'c') - ADVANCE(356); + ADVANCE(307); if (lookahead == 'n') - ADVANCE(600); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 597: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'i') - ADVANCE(601); + ADVANCE(618); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12559,14 +12768,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 598: + case 615: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(602); + ADVANCE(619); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12579,14 +12788,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 599: + case 616: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'l') - ADVANCE(603); + ADVANCE(307); + if (lookahead == 'm') + ADVANCE(620); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12599,14 +12808,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 600: + case 617: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'a') - ADVANCE(604); + ADVANCE(307); + if (lookahead == 'g') + ADVANCE(621); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12619,14 +12828,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 601: + case 618: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'n') - ADVANCE(605); + ADVANCE(307); + if (lookahead == 'g') + ADVANCE(622); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12639,14 +12848,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 602: + case 619: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'n') - ADVANCE(606); + ADVANCE(307); + if (lookahead == 'c') + ADVANCE(623); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12659,14 +12868,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 603: + case 620: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(607); + ADVANCE(624); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12679,14 +12888,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 604: - ACCEPT_TOKEN(sym_qualified_name); + case 621: + ACCEPT_TOKEN(anon_sym_using); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'm') - ADVANCE(608); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12699,14 +12906,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 605: - ACCEPT_TOKEN(sym_qualified_name); + case 622: + ACCEPT_TOKEN(anon_sym_hiding); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'g') - ADVANCE(609); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12719,14 +12924,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 606: - ACCEPT_TOKEN(sym_qualified_name); + case 623: + ACCEPT_TOKEN(anon_sym_public); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'g') - ADVANCE(610); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12739,14 +12942,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 607: + case 624: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'c') - ADVANCE(611); + ADVANCE(307); + if (lookahead == 'n') + ADVANCE(625); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12759,14 +12962,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 608: + case 625: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'i') - ADVANCE(612); + ADVANCE(307); + if (lookahead == 'g') + ADVANCE(626); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12779,12 +12982,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 609: - ACCEPT_TOKEN(anon_sym_using); + case 626: + ACCEPT_TOKEN(anon_sym_renaming); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12797,50 +13000,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 610: - ACCEPT_TOKEN(anon_sym_hiding); + case 627: + if (lookahead == '(') + ADVANCE(454); + if (lookahead == '-') + ADVANCE(569); if (lookahead == '.') - ADVANCE(304); + ADVANCE(456); + if (lookahead == '=') + ADVANCE(11); + if (lookahead == '\\') + ADVANCE(628); + if (lookahead == '_') + ADVANCE(16); + if (lookahead == 'm') + ADVANCE(629); + if (lookahead == 'r') + ADVANCE(630); + if (lookahead == 'w') + ADVANCE(35); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); + if (lookahead == 10627) + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(627); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && + (lookahead < '\'' || ')' < lookahead) && lookahead != '@' && - lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 611: - ACCEPT_TOKEN(anon_sym_public); - if (lookahead == '.') - ADVANCE(304); + case 628: + if (lookahead == 'n') + SKIP(627); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); END_STATE(); - case 612: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'n') - ADVANCE(613); + case 629: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'o') + ADVANCE(71); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12849,18 +13063,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && + lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 613: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'g') - ADVANCE(614); + case 630: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'e') + ADVANCE(631); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12869,16 +13082,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && + lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 614: - ACCEPT_TOKEN(anon_sym_renaming); - if (lookahead == '.') - ADVANCE(304); + case 631: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'w') + ADVANCE(122); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -12887,172 +13101,222 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '(' && lookahead != ')' && + lookahead != '.' && lookahead != ';' && lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 615: + case 632: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(616); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); + if (lookahead == 10628) + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(615); + SKIP(632); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 616: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') - ADVANCE(89); - if (lookahead == '.') ADVANCE(304); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && - lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 617: + case 633: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(578); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(618); + ADVANCE(281); if (lookahead == '_') - ADVANCE(16); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(619); - if (lookahead == 8594) - ADVANCE(40); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(533); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'o') + ADVANCE(291); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(617); + SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && + lookahead != '\'' && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); - END_STATE(); - case 618: - if (lookahead == 'n') - SKIP(617); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 619: - ACCEPT_TOKEN(sym_name); - if (lookahead == ')') - ADVANCE(89); + case 634: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(557); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(36); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(634); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != '.' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(47); + lookahead != '@') + ADVANCE(305); END_STATE(); - case 620: + case 635: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(621); + ADVANCE(636); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') ADVANCE(38); if (lookahead == 8594) @@ -13063,16 +13327,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(620); + SKIP(635); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && lookahead != '@') ADVANCE(47); END_STATE(); - case 621: + case 636: if (lookahead == 'n') - SKIP(620); + SKIP(635); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13082,66 +13346,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 622: - if (lookahead == '"') - ADVANCE(2); + case 637: if (lookahead == '(') - ADVANCE(4); + ADVANCE(454); if (lookahead == '-') - ADVANCE(272); + ADVANCE(455); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); + ADVANCE(456); if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(11); if (lookahead == '\\') - ADVANCE(623); + ADVANCE(638); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(462); - if (lookahead == 'u') - ADVANCE(294); + ADVANCE(16); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) - ADVANCE(297); + ADVANCE(298); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(622); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(637); if (lookahead != 0 && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 623: + case 638: if (lookahead == 'n') - SKIP(622); + SKIP(637); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13149,121 +13387,176 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 624: + case 639: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); if (lookahead == '=') - ADVANCE(11); + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(625); + ADVANCE(281); if (lookahead == '_') - ADVANCE(16); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(469); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(624); + SKIP(639); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); - END_STATE(); - case 625: - if (lookahead == 'n') - SKIP(624); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 626: + case 640: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(462); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); + ADVANCE(298); + if (lookahead == '}') + ADVANCE(540); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(626); + SKIP(640); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && + lookahead != '@') + ADVANCE(305); + END_STATE(); + case 641: + if (lookahead == '-') + ADVANCE(455); + if (lookahead == ':') + ADVANCE(9); + if (lookahead == '\\') + ADVANCE(642); + if (lookahead == '_') + ADVANCE(589); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(641); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '.' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 627: + case 642: + if (lookahead == 'n') + SKIP(641); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 643: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -13271,155 +13564,138 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(627); + SKIP(643); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 628: + case 644: if (lookahead == '-') - ADVANCE(546); + ADVANCE(562); if (lookahead == ':') - ADVANCE(491); + ADVANCE(498); if (lookahead == '=') - ADVANCE(492); + ADVANCE(499); if (lookahead == '\\') - SKIP(629); + SKIP(645); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '|') - ADVANCE(498); + ADVANCE(505); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 8594) - ADVANCE(499); + ADVANCE(506); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(628); + SKIP(644); END_STATE(); - case 629: + case 645: if (lookahead == 'n') - SKIP(628); + SKIP(644); END_STATE(); - case 630: - if (lookahead == '(') - ADVANCE(452); + case 646: if (lookahead == '-') - ADVANCE(578); - if (lookahead == '.') - ADVANCE(454); + ADVANCE(562); if (lookahead == '\\') - ADVANCE(631); - if (lookahead == '_') - ADVANCE(16); + SKIP(647); if (lookahead == '{') - ADVANCE(295); + ADVANCE(534); + if (lookahead == '|') + ADVANCE(648); if (lookahead == 8594) - ADVANCE(40); - if (lookahead == 10627) - ADVANCE(42); - if (lookahead == 10632) - ADVANCE(45); + ADVANCE(506); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(630); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@' && - lookahead != '}') - ADVANCE(47); + SKIP(646); END_STATE(); - case 631: + case 647: if (lookahead == 'n') - SKIP(630); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + SKIP(646); END_STATE(); - case 632: + case 648: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == ')') + ADVANCE(90); + END_STATE(); + case 649: if (lookahead == '-') - ADVANCE(527); + ADVANCE(531); if (lookahead == '\\') - ADVANCE(633); + ADVANCE(650); if (lookahead == '_') - ADVANCE(334); + ADVANCE(338); if (lookahead == 'i') - ADVANCE(529); + ADVANCE(533); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(632); + SKIP(649); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -13427,11 +13703,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 633: + case 650: if (lookahead == 'n') - SKIP(632); + SKIP(649); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13439,373 +13715,441 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 634: + case 651: if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(546); + ADVANCE(562); if (lookahead == ':') - ADVANCE(491); + ADVANCE(498); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '\\') - SKIP(635); + SKIP(652); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '|') - ADVANCE(498); + ADVANCE(505); if (lookahead == 8594) - ADVANCE(499); + ADVANCE(506); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(634); + SKIP(651); END_STATE(); - case 635: + case 652: if (lookahead == 'n') - SKIP(634); + SKIP(651); END_STATE(); - case 636: + case 653: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(654); if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '|') + ADVANCE(558); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(653); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 654: + if (lookahead == 'n') + SKIP(653); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 655: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(557); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10628) - ADVANCE(487); + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(636); + SKIP(655); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 637: + case 656: if (lookahead == '-') - ADVANCE(546); + ADVANCE(562); if (lookahead == ':') - ADVANCE(491); + ADVANCE(498); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '=') - ADVANCE(492); + ADVANCE(499); if (lookahead == '\\') - SKIP(638); + SKIP(657); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '|') - ADVANCE(498); + ADVANCE(505); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8594) - ADVANCE(499); + ADVANCE(506); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(637); + SKIP(656); END_STATE(); - case 638: + case 657: if (lookahead == 'n') - SKIP(637); + SKIP(656); END_STATE(); - case 639: + case 658: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(640); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(558); + if (lookahead == 955) + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); - if (lookahead == 10632) - ADVANCE(543); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(639); + SKIP(658); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); - END_STATE(); - case 640: - if (lookahead == 'n') - SKIP(639); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 641: - if (lookahead == '-') - ADVANCE(550); - if (lookahead == '\\') - SKIP(642); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '|') - ADVANCE(498); - if (lookahead == 10632) - ADVANCE(548); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(641); - END_STATE(); - case 642: - if (lookahead == 'n') - SKIP(641); + ADVANCE(305); END_STATE(); - case 643: + case 659: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(660); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(282); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); + ADVANCE(469); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); - if (lookahead == 10632) - ADVANCE(543); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(643); + SKIP(659); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 644: + case 660: + if (lookahead == 'n') + SKIP(659); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 661: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(662); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(282); + if (lookahead == 'a') + ADVANCE(600); + if (lookahead == 'h') + ADVANCE(601); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'p') + ADVANCE(602); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '}') - ADVANCE(533); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) ADVANCE(298); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(644); + SKIP(661); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '@') - ADVANCE(302); + lookahead != '@' && + lookahead != '}') + ADVANCE(305); END_STATE(); - case 645: + case 662: + if (lookahead == 'n') + SKIP(661); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 663: + if (lookahead == '(') + ADVANCE(454); if (lookahead == '-') - ADVANCE(453); - if (lookahead == ':') - ADVANCE(9); + ADVANCE(569); + if (lookahead == '.') + ADVANCE(456); + if (lookahead == '=') + ADVANCE(11); if (lookahead == '\\') - ADVANCE(646); + ADVANCE(664); if (lookahead == '_') - ADVANCE(565); + ADVANCE(16); + if (lookahead == 'i') + ADVANCE(665); + if (lookahead == 'm') + ADVANCE(629); + if (lookahead == 'r') + ADVANCE(630); + if (lookahead == 'w') + ADVANCE(35); if (lookahead == '{') - ADVANCE(530); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); + if (lookahead == 10627) + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(645); + SKIP(663); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != '.' && lookahead != '@' && lookahead != '}') ADVANCE(47); END_STATE(); - case 646: + case 664: if (lookahead == 'n') - SKIP(645); + SKIP(663); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13815,151 +14159,156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 647: + case 665: + ACCEPT_TOKEN(sym_name); + if (lookahead == 'n') + ADVANCE(68); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != '.' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(47); + END_STATE(); + case 666: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(469); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(647); + SKIP(666); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 648: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') ADVANCE(304); - if (lookahead == 'h') - ADVANCE(466); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && - lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 649: + case 667: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(650); + ADVANCE(668); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'h') - ADVANCE(589); + ADVANCE(601); if (lookahead == 'p') - ADVANCE(590); + ADVANCE(602); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(591); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(592); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(649); + SKIP(667); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 650: + case 668: if (lookahead == 'n') - SKIP(649); + SKIP(667); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -13967,66 +14316,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 651: + case 669: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(652); + ADVANCE(670); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'h') - ADVANCE(589); + ADVANCE(601); if (lookahead == 'p') - ADVANCE(590); + ADVANCE(602); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(591); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(592); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(651); + SKIP(669); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 652: + case 670: if (lookahead == 'n') - SKIP(651); + SKIP(669); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14034,32 +14383,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 653: + case 671: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(654); + ADVANCE(672); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) ADVANCE(42); - if (lookahead == 10628) - ADVANCE(43); + if (lookahead == 10632) + ADVANCE(45); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(653); + SKIP(671); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -14067,9 +14416,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 654: + case 672: if (lookahead == 'n') - SKIP(653); + SKIP(671); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14079,62 +14428,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 655: + case 673: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(656); + ADVANCE(674); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10628) - ADVANCE(487); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); + if (lookahead == 10632) + ADVANCE(581); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(655); + SKIP(673); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 656: + case 674: if (lookahead == 'n') - SKIP(655); + SKIP(673); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14142,159 +14491,172 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 657: + case 675: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10628) - ADVANCE(487); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); + if (lookahead == 10632) + ADVANCE(581); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(657); + SKIP(675); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 658: + case 676: + if (lookahead == '(') + ADVANCE(454); if (lookahead == '-') - ADVANCE(453); + ADVANCE(569); + if (lookahead == '.') + ADVANCE(456); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(677); if (lookahead == '_') - ADVANCE(565); + ADVANCE(16); if (lookahead == '{') - ADVANCE(530); - if (lookahead == 955) - ADVANCE(659); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); + if (lookahead == 10627) + ADVANCE(42); + if (lookahead == 10628) + ADVANCE(43); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(658); + SKIP(676); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != '.' && lookahead != '@' && lookahead != '}') ADVANCE(47); END_STATE(); - case 659: - ACCEPT_TOKEN(sym__const_lambda); + case 677: + if (lookahead == 'n') + SKIP(676); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != '.' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 660: - if (lookahead == '-') - ADVANCE(550); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == 955) - ADVANCE(278); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(660); - END_STATE(); - case 661: + case 678: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); - if (lookahead == ':') - ADVANCE(9); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(662); + ADVANCE(679); if (lookahead == '_') - ADVANCE(565); + ADVANCE(282); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10628) + ADVANCE(494); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(661); + SKIP(678); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 662: + case 679: if (lookahead == 'n') - SKIP(661); + SKIP(678); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14302,63 +14664,99 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 663: + case 680: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(578); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); - if (lookahead == '=') - ADVANCE(11); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(664); + ADVANCE(281); if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'i') - ADVANCE(665); - if (lookahead == 'm') - ADVANCE(580); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); if (lookahead == 'r') - ADVANCE(581); - if (lookahead == 'w') - ADVANCE(35); + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10628) + ADVANCE(494); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(663); + SKIP(680); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 664: - if (lookahead == 'n') - SKIP(663); + case 681: + if (lookahead == '-') + ADVANCE(455); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(589); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == 955) + ADVANCE(682); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(681); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != '.' && + lookahead != '@' && + lookahead != '}') ADVANCE(47); END_STATE(); - case 665: - ACCEPT_TOKEN(sym_name); - if (lookahead == 'n') - ADVANCE(68); + case 682: + ACCEPT_TOKEN(sym__const_lambda); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14374,66 +14772,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 666: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); + case 683: if (lookahead == '-') - ADVANCE(272); + ADVANCE(547); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == 955) + ADVANCE(281); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(683); + END_STATE(); + case 684: + if (lookahead == '-') + ADVANCE(455); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(456); + if (lookahead == ':') + ADVANCE(9); if (lookahead == '\\') - ADVANCE(667); + ADVANCE(685); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'a') - ADVANCE(588); - if (lookahead == 'h') ADVANCE(589); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'p') - ADVANCE(590); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(591); - if (lookahead == 'u') - ADVANCE(592); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8230) - ADVANCE(297); + ADVANCE(298); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(666); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(684); if (lookahead != 0 && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 667: + case 685: if (lookahead == 'n') - SKIP(666); + SKIP(684); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -14441,549 +14824,492 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 668: + case 686: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(669); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'm') - ADVANCE(461); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(462); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(668); + SKIP(686); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 669: - if (lookahead == 'n') - SKIP(668); + case 687: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'h') + ADVANCE(473); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 670: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 688: if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(547); if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); + SKIP(689); + if (lookahead == 'h') + ADVANCE(690); if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); + ADVANCE(501); + if (lookahead == 'p') + ADVANCE(691); if (lookahead == 'r') - ADVANCE(462); - if (lookahead == 't') - ADVANCE(293); + ADVANCE(692); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(693); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(670); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); + SKIP(688); END_STATE(); - case 671: + case 689: + if (lookahead == 'n') + SKIP(688); + END_STATE(); + case 690: + if (lookahead == 'i') + ADVANCE(694); + END_STATE(); + case 691: + if (lookahead == 'u') + ADVANCE(695); + END_STATE(); + case 692: + if (lookahead == 'e') + ADVANCE(696); + END_STATE(); + case 693: + if (lookahead == 's') + ADVANCE(697); + END_STATE(); + case 694: + if (lookahead == 'd') + ADVANCE(698); + END_STATE(); + case 695: + if (lookahead == 'b') + ADVANCE(699); + END_STATE(); + case 696: + if (lookahead == 'n') + ADVANCE(700); + END_STATE(); + case 697: + if (lookahead == 'i') + ADVANCE(701); + END_STATE(); + case 698: + if (lookahead == 'i') + ADVANCE(702); + END_STATE(); + case 699: + if (lookahead == 'l') + ADVANCE(703); + END_STATE(); + case 700: + if (lookahead == 'a') + ADVANCE(704); + END_STATE(); + case 701: + if (lookahead == 'n') + ADVANCE(705); + END_STATE(); + case 702: + if (lookahead == 'n') + ADVANCE(706); + END_STATE(); + case 703: + if (lookahead == 'i') + ADVANCE(707); + END_STATE(); + case 704: + if (lookahead == 'm') + ADVANCE(708); + END_STATE(); + case 705: + if (lookahead == 'g') + ADVANCE(709); + END_STATE(); + case 706: + if (lookahead == 'g') + ADVANCE(710); + END_STATE(); + case 707: + if (lookahead == 'c') + ADVANCE(711); + END_STATE(); + case 708: + if (lookahead == 'i') + ADVANCE(712); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_using); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_hiding); + END_STATE(); + case 711: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 712: + if (lookahead == 'n') + ADVANCE(713); + END_STATE(); + case 713: + if (lookahead == 'g') + ADVANCE(714); + END_STATE(); + case 714: + ACCEPT_TOKEN(anon_sym_renaming); + END_STATE(); + case 715: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') ADVANCE(38); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(671); + SKIP(715); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 672: + case 716: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10628) - ADVANCE(487); + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(672); + SKIP(716); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 673: + case 717: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(673); + SKIP(717); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 674: + case 718: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(674); + SKIP(718); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); - END_STATE(); - case 675: - if (lookahead == '-') - ADVANCE(550); - if (lookahead == '\\') - SKIP(676); - if (lookahead == 'h') - ADVANCE(677); - if (lookahead == 'i') - ADVANCE(494); - if (lookahead == 'p') - ADVANCE(678); - if (lookahead == 'r') - ADVANCE(679); - if (lookahead == 'u') - ADVANCE(680); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(675); - END_STATE(); - case 676: - if (lookahead == 'n') - SKIP(675); - END_STATE(); - case 677: - if (lookahead == 'i') - ADVANCE(681); - END_STATE(); - case 678: - if (lookahead == 'u') - ADVANCE(682); - END_STATE(); - case 679: - if (lookahead == 'e') - ADVANCE(683); - END_STATE(); - case 680: - if (lookahead == 's') - ADVANCE(684); - END_STATE(); - case 681: - if (lookahead == 'd') - ADVANCE(685); - END_STATE(); - case 682: - if (lookahead == 'b') - ADVANCE(686); - END_STATE(); - case 683: - if (lookahead == 'n') - ADVANCE(687); - END_STATE(); - case 684: - if (lookahead == 'i') - ADVANCE(688); - END_STATE(); - case 685: - if (lookahead == 'i') - ADVANCE(689); - END_STATE(); - case 686: - if (lookahead == 'l') - ADVANCE(690); - END_STATE(); - case 687: - if (lookahead == 'a') - ADVANCE(691); - END_STATE(); - case 688: - if (lookahead == 'n') - ADVANCE(692); - END_STATE(); - case 689: - if (lookahead == 'n') - ADVANCE(693); - END_STATE(); - case 690: - if (lookahead == 'i') - ADVANCE(694); - END_STATE(); - case 691: - if (lookahead == 'm') - ADVANCE(695); - END_STATE(); - case 692: - if (lookahead == 'g') - ADVANCE(696); - END_STATE(); - case 693: - if (lookahead == 'g') - ADVANCE(697); - END_STATE(); - case 694: - if (lookahead == 'c') - ADVANCE(698); - END_STATE(); - case 695: - if (lookahead == 'i') - ADVANCE(699); - END_STATE(); - case 696: - ACCEPT_TOKEN(anon_sym_using); - END_STATE(); - case 697: - ACCEPT_TOKEN(anon_sym_hiding); - END_STATE(); - case 698: - ACCEPT_TOKEN(anon_sym_public); - END_STATE(); - case 699: - if (lookahead == 'n') - ADVANCE(700); - END_STATE(); - case 700: - if (lookahead == 'g') - ADVANCE(701); - END_STATE(); - case 701: - ACCEPT_TOKEN(anon_sym_renaming); + ADVANCE(305); END_STATE(); - case 702: + case 719: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(703); + ADVANCE(720); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -14992,16 +15318,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(702); + SKIP(719); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 703: + case 720: if (lookahead == 'n') - SKIP(702); + SKIP(719); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15011,7 +15337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 704: + case 721: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -15019,56 +15345,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(705); + ADVANCE(722); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(704); + SKIP(721); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 705: + case 722: if (lookahead == 'n') - SKIP(704); + SKIP(721); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15076,63 +15402,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 706: + case 723: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(707); + ADVANCE(724); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(706); + SKIP(723); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 707: + case 724: if (lookahead == 'n') - SKIP(706); + SKIP(723); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15140,23 +15466,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 708: + case 725: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(709); + ADVANCE(726); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -15165,7 +15491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(708); + SKIP(725); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && @@ -15173,9 +15499,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 709: + case 726: if (lookahead == 'n') - SKIP(708); + SKIP(725); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15185,7 +15511,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 710: + case 727: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -15193,144 +15519,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(711); - if (lookahead == '_') ADVANCE(279); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(710); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 711: - if (lookahead == 'n') - SKIP(710); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 712: - if (lookahead == '-') - ADVANCE(546); - if (lookahead == '\\') - SKIP(713); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '|') - ADVANCE(714); - if (lookahead == 8594) - ADVANCE(499); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(712); - END_STATE(); - case 713: - if (lookahead == 'n') - SKIP(712); - END_STATE(); - case 714: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ')') - ADVANCE(89); - END_STATE(); - case 715: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(716); + ADVANCE(728); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(616); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(715); + SKIP(727); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + lookahead != '\'' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 716: + case 728: if (lookahead == 'n') - SKIP(715); + SKIP(727); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15338,86 +15575,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 717: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(616); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(717); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 718: + case 729: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(719); + ADVANCE(730); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -15426,16 +15600,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(718); + SKIP(729); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 719: + case 730: if (lookahead == 'n') - SKIP(718); + SKIP(729); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15445,62 +15619,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 720: + case 731: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(721); + ADVANCE(732); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(720); + SKIP(731); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 721: + case 732: if (lookahead == 'n') - SKIP(720); + SKIP(731); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15508,445 +15682,482 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 722: + case 733: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(462); + ADVANCE(469); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(722); + SKIP(733); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 723: + case 734: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(723); + SKIP(734); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 724: + case 735: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(724); + SKIP(735); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 725: + case 736: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(725); + SKIP(736); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 726: + case 737: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(726); + SKIP(737); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 727: + case 738: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(727); + SKIP(738); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 728: + case 739: + if (lookahead == ')') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(562); + if (lookahead == ':') + ADVANCE(498); + if (lookahead == ';') + ADVANCE(486); + if (lookahead == '=') + ADVANCE(499); + if (lookahead == '\\') + SKIP(740); + if (lookahead == 'w') + ADVANCE(564); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '|') + ADVANCE(565); + if (lookahead == '}') + ADVANCE(38); + if (lookahead == 8594) + ADVANCE(506); + if (lookahead == 10628) + ADVANCE(566); + if (lookahead == 10632) + ADVANCE(567); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(739); + END_STATE(); + case 740: + if (lookahead == 'n') + SKIP(739); + END_STATE(); + case 741: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(729); + ADVANCE(742); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') ADVANCE(38); if (lookahead == 8594) @@ -15957,16 +16168,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(728); + SKIP(741); if (lookahead != 0 && lookahead != '"' && lookahead != '\'' && lookahead != '@') ADVANCE(47); END_STATE(); - case 729: + case 742: if (lookahead == 'n') - SKIP(728); + SKIP(741); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -15976,23 +16187,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 730: + case 743: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(731); + ADVANCE(744); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -16001,16 +16212,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(730); + SKIP(743); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 731: + case 744: if (lookahead == 'n') - SKIP(730); + SKIP(743); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16020,7 +16231,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 732: + case 745: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -16028,58 +16239,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(733); + ADVANCE(746); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(732); + SKIP(745); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 733: + case 746: if (lookahead == 'n') - SKIP(732); + SKIP(745); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16087,65 +16298,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 734: + case 747: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(735); + ADVANCE(748); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(734); + SKIP(747); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 735: + case 748: if (lookahead == 'n') - SKIP(734); + SKIP(747); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16153,81 +16364,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 736: - if (lookahead == ')') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(546); - if (lookahead == ':') - ADVANCE(491); - if (lookahead == ';') - ADVANCE(479); - if (lookahead == '=') - ADVANCE(492); - if (lookahead == '\\') - SKIP(737); - if (lookahead == 'w') - ADVANCE(552); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '|') - ADVANCE(553); - if (lookahead == '}') - ADVANCE(38); - if (lookahead == 8594) - ADVANCE(499); - if (lookahead == 10628) - ADVANCE(554); - if (lookahead == 10632) - ADVANCE(548); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(736); - END_STATE(); - case 737: - if (lookahead == 'n') - SKIP(736); + ADVANCE(305); END_STATE(); - case 738: + case 749: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(578); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); if (lookahead == ':') - ADVANCE(9); + ADVANCE(466); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(739); + ADVANCE(750); if (lookahead == '_') - ADVANCE(16); + ADVANCE(282); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(738); + SKIP(749); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && lookahead != '\'' && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 739: + case 750: if (lookahead == 'n') - SKIP(738); + SKIP(749); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16235,66 +16431,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 740: - if (lookahead == '"') - ADVANCE(2); + case 751: if (lookahead == '(') - ADVANCE(4); + ADVANCE(454); if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(569); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); + ADVANCE(456); if (lookahead == ':') - ADVANCE(459); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(9); if (lookahead == '\\') - ADVANCE(741); + ADVANCE(752); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') - ADVANCE(294); + ADVANCE(16); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) - ADVANCE(297); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(740); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(751); if (lookahead != 0 && + lookahead != '"' && lookahead != '\'' && - lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 741: + case 752: if (lookahead == 'n') - SKIP(740); + SKIP(751); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16302,23 +16476,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 742: + case 753: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(743); + ADVANCE(754); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -16329,7 +16503,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(742); + SKIP(753); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -16337,9 +16511,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 743: + case 754: if (lookahead == 'n') - SKIP(742); + SKIP(753); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16349,64 +16523,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 744: + case 755: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(745); + ADVANCE(756); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10628) - ADVANCE(487); + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(744); + SKIP(755); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 745: + case 756: if (lookahead == 'n') - SKIP(744); + SKIP(755); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16414,25 +16588,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 746: + case 757: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(747); + ADVANCE(758); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -16441,16 +16615,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(746); + SKIP(757); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 747: + case 758: if (lookahead == 'n') - SKIP(746); + SKIP(757); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16460,64 +16634,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 748: + case 759: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(749); + ADVANCE(760); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(748); + SKIP(759); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 749: + case 760: if (lookahead == 'n') - SKIP(748); + SKIP(759); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16525,42 +16699,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 750: - if (lookahead == '(') - ADVANCE(452); + case 761: if (lookahead == '-') - ADVANCE(578); - if (lookahead == '.') - ADVANCE(454); + ADVANCE(455); if (lookahead == '\\') - ADVANCE(751); + ADVANCE(762); if (lookahead == '_') ADVANCE(16); - if (lookahead == 'w') - ADVANCE(525); + if (lookahead == 'i') + ADVANCE(665); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); - if (lookahead == 10627) - ADVANCE(42); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(750); + SKIP(761); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != '.' && lookahead != '@' && lookahead != '}') ADVANCE(47); END_STATE(); - case 751: + case 762: if (lookahead == 'n') - SKIP(750); + SKIP(761); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16570,62 +16737,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 752: + case 763: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(753); + ADVANCE(764); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); + if (lookahead == 'h') + ADVANCE(601); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'p') + ADVANCE(602); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(648); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); + ADVANCE(298); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(752); + SKIP(763); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 753: + case 764: if (lookahead == 'n') - SKIP(752); + SKIP(763); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -16633,419 +16802,789 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 754: + case 765: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); - if (lookahead == ')') - ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ';') - ADVANCE(479); + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(755); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'h') - ADVANCE(589); - if (lookahead == 'p') - ADVANCE(590); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(591); + ADVANCE(469); + if (lookahead == 't') + ADVANCE(464); if (lookahead == 'u') - ADVANCE(592); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '}') - ADVANCE(533); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(754); + SKIP(765); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '@') - ADVANCE(302); - END_STATE(); - case 755: - if (lookahead == 'n') - SKIP(754); + ADVANCE(304); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 756: - if (lookahead == ')') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(550); - if (lookahead == ';') - ADVANCE(479); - if (lookahead == '\\') - SKIP(757); - if (lookahead == 'h') - ADVANCE(677); - if (lookahead == 'p') - ADVANCE(678); - if (lookahead == 'r') - ADVANCE(679); - if (lookahead == 'u') - ADVANCE(680); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '}') - ADVANCE(533); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(756); - END_STATE(); - case 757: - if (lookahead == 'n') - SKIP(756); + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); END_STATE(); - case 758: + case 766: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); if (lookahead == '-') - ADVANCE(550); - if (lookahead == ';') - ADVANCE(479); + ADVANCE(557); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - SKIP(759); - if (lookahead == 'h') - ADVANCE(677); - if (lookahead == 'p') - ADVANCE(678); + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(293); if (lookahead == 'r') - ADVANCE(679); + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); if (lookahead == 'u') - ADVANCE(680); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); if (lookahead == '{') - ADVANCE(530); - if (lookahead == '}') - ADVANCE(533); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(758); - END_STATE(); - case 759: - if (lookahead == 'n') - SKIP(758); + SKIP(766); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); END_STATE(); - case 760: + case 767: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(760); + SKIP(767); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 761: + case 768: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '}') - ADVANCE(533); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(761); + SKIP(768); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '@') - ADVANCE(302); + lookahead != '@' && + lookahead != '}') + ADVANCE(305); END_STATE(); - case 762: + case 769: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'a') - ADVANCE(280); - if (lookahead == 'c') - ADVANCE(763); - if (lookahead == 'd') ADVANCE(282); - if (lookahead == 'e') - ADVANCE(764); + if (lookahead == 'd') + ADVANCE(462); if (lookahead == 'f') - ADVANCE(283); - if (lookahead == 'g') - ADVANCE(284); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(765); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(287); - if (lookahead == 'n') - ADVANCE(766); - if (lookahead == 'o') - ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 's') - ADVANCE(292); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(762); + SKIP(769); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 763: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') ADVANCE(304); - if (lookahead == 'o') - ADVANCE(767); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && - lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 764: - ACCEPT_TOKEN(sym_qualified_name); + case 770: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(557); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 't') - ADVANCE(768); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 765: - ACCEPT_TOKEN(sym_qualified_name); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(770); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 771: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == ')') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(275); if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == ';') + ADVANCE(486); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(772); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'h') + ADVANCE(601); + if (lookahead == 'p') + ADVANCE(602); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(603); + if (lookahead == 'u') + ADVANCE(604); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(771); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(304); - if (lookahead == 'm') - ADVANCE(316); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '@') + ADVANCE(305); + END_STATE(); + case 772: if (lookahead == 'n') - ADVANCE(769); + SKIP(771); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 773: + if (lookahead == ')') + ADVANCE(5); + if (lookahead == '-') + ADVANCE(547); + if (lookahead == ';') + ADVANCE(486); + if (lookahead == '\\') + SKIP(774); + if (lookahead == 'h') + ADVANCE(690); + if (lookahead == 'p') + ADVANCE(691); + if (lookahead == 'r') + ADVANCE(692); + if (lookahead == 'u') + ADVANCE(693); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(773); + END_STATE(); + case 774: + if (lookahead == 'n') + SKIP(773); + END_STATE(); + case 775: + if (lookahead == '-') + ADVANCE(547); + if (lookahead == ';') + ADVANCE(486); + if (lookahead == '\\') + SKIP(776); + if (lookahead == 'h') + ADVANCE(690); + if (lookahead == 'p') + ADVANCE(691); + if (lookahead == 'r') + ADVANCE(692); + if (lookahead == 'u') + ADVANCE(693); + if (lookahead == '{') + ADVANCE(534); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(775); + END_STATE(); + case 776: + if (lookahead == 'n') + SKIP(775); + END_STATE(); + case 777: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(557); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(777); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && - lookahead != '{' && lookahead != '}') + ADVANCE(305); + END_STATE(); + case 778: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(275); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); + if (lookahead == '=') + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(778); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@') + ADVANCE(305); END_STATE(); - case 766: - ACCEPT_TOKEN(sym_qualified_name); + case 779: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(275); if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'a') + ADVANCE(283); + if (lookahead == 'c') + ADVANCE(780); + if (lookahead == 'd') + ADVANCE(285); + if (lookahead == 'e') + ADVANCE(781); + if (lookahead == 'f') + ADVANCE(286); + if (lookahead == 'g') + ADVANCE(287); + if (lookahead == 'i') + ADVANCE(782); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(290); + if (lookahead == 'n') + ADVANCE(783); + if (lookahead == 'o') + ADVANCE(291); + if (lookahead == 'p') + ADVANCE(292); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 's') + ADVANCE(295); + if (lookahead == 't') + ADVANCE(296); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(779); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); if (lookahead == 'o') - ADVANCE(770); + ADVANCE(784); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17058,18 +17597,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 767: + case 781: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'd') - ADVANCE(339); - if (lookahead == 'i') - ADVANCE(771); - if (lookahead == 'n') - ADVANCE(772); + ADVANCE(307); + if (lookahead == 't') + ADVANCE(785); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17082,14 +17617,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 768: + case 782: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'a') - ADVANCE(773); + ADVANCE(307); + if (lookahead == 'm') + ADVANCE(319); + if (lookahead == 'n') + ADVANCE(786); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17102,18 +17639,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 769: + case 783: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'd') - ADVANCE(774); - if (lookahead == 'f') - ADVANCE(345); - if (lookahead == 's') - ADVANCE(346); + ADVANCE(307); + if (lookahead == 'o') + ADVANCE(787); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17126,14 +17659,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 770: + case 784: ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '-') - ADVANCE(775); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 'd') + ADVANCE(343); + if (lookahead == 'i') + ADVANCE(788); + if (lookahead == 'n') + ADVANCE(789); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17146,14 +17683,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 771: + case 785: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'n') - ADVANCE(776); + ADVANCE(307); + if (lookahead == 'a') + ADVANCE(790); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17166,14 +17703,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 772: + case 786: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 'd') + ADVANCE(791); + if (lookahead == 'f') + ADVANCE(349); if (lookahead == 's') - ADVANCE(777); + ADVANCE(350); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17186,14 +17727,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 773: + case 787: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(778); + ADVANCE(792); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17206,14 +17747,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 774: + case 788: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'u') - ADVANCE(779); + ADVANCE(307); + if (lookahead == 'n') + ADVANCE(793); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17226,14 +17767,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 775: + case 789: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'e') - ADVANCE(780); + ADVANCE(307); + if (lookahead == 's') + ADVANCE(794); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17246,14 +17787,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 776: + case 790: ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '-') + ADVANCE(795); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'd') - ADVANCE(781); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17266,14 +17807,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 777: + case 791: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); - if (lookahead == 't') - ADVANCE(782); + ADVANCE(307); + if (lookahead == 'u') + ADVANCE(796); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17286,14 +17827,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 778: + case 792: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(783); + ADVANCE(797); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17306,14 +17847,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 779: + case 793: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); + if (lookahead == 'd') + ADVANCE(798); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 't') + ADVANCE(799); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 795: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'e') + ADVANCE(800); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 796: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); if (lookahead == 'c') - ADVANCE(784); + ADVANCE(801); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17326,14 +17927,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 780: + case 797: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(785); + ADVANCE(802); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17346,14 +17947,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 781: + case 798: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(786); + ADVANCE(803); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17366,14 +17967,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 782: + case 799: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(787); + ADVANCE(804); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17386,14 +17987,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 783: + case 800: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'q') - ADVANCE(788); + ADVANCE(805); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17406,14 +18007,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 784: + case 801: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(789); + ADVANCE(806); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17426,14 +18027,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 785: + case 802: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(790); + ADVANCE(807); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17446,14 +18047,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 786: + case 803: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(791); + ADVANCE(808); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17466,14 +18067,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 787: + case 804: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(792); + ADVANCE(809); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17486,14 +18087,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 788: + case 805: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(793); + ADVANCE(810); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17506,14 +18107,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 789: + case 806: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(794); + ADVANCE(811); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17526,14 +18127,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 790: + case 807: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '-') - ADVANCE(795); + ADVANCE(812); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17546,14 +18147,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 791: + case 808: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(796); + ADVANCE(813); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17566,14 +18167,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 792: + case 809: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'c') - ADVANCE(797); + ADVANCE(814); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17586,14 +18187,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 793: + case 810: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(798); + ADVANCE(815); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17606,14 +18207,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 794: + case 811: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'v') - ADVANCE(799); + ADVANCE(816); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17626,14 +18227,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 795: + case 812: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(800); + ADVANCE(817); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17646,14 +18247,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 796: + case 813: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(801); + ADVANCE(818); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17666,14 +18267,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 797: + case 814: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(802); + ADVANCE(819); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17686,14 +18287,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 798: + case 815: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(803); + ADVANCE(820); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17706,14 +18307,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 799: + case 816: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(804); + ADVANCE(821); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17726,14 +18327,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 800: + case 817: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'q') - ADVANCE(805); + ADVANCE(822); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17746,14 +18347,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 801: + case 818: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'v') - ADVANCE(806); + ADVANCE(823); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17766,14 +18367,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 802: + case 819: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'o') - ADVANCE(807); + ADVANCE(824); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17786,14 +18387,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 803: + case 820: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(808); + ADVANCE(825); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17806,12 +18407,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 804: + case 821: ACCEPT_TOKEN(anon_sym_inductive); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17824,14 +18425,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 805: + case 822: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'u') - ADVANCE(809); + ADVANCE(826); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17844,14 +18445,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 806: + case 823: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'e') - ADVANCE(810); + ADVANCE(827); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17864,14 +18465,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 807: + case 824: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'r') - ADVANCE(811); + ADVANCE(828); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17884,14 +18485,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 808: + case 825: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(812); + ADVANCE(829); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17904,14 +18505,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 809: + case 826: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'a') - ADVANCE(813); + ADVANCE(830); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17924,12 +18525,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 810: + case 827: ACCEPT_TOKEN(anon_sym_coinductive); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17942,12 +18543,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 811: + case 828: ACCEPT_TOKEN(anon_sym_constructor); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17960,14 +18561,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 812: + case 829: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'y') - ADVANCE(814); + ADVANCE(831); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -17980,14 +18581,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 813: + case 830: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'l') - ADVANCE(815); + ADVANCE(832); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18000,12 +18601,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 814: + case 831: ACCEPT_TOKEN(anon_sym_eta_DASHequality); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18018,14 +18619,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 815: + case 832: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'i') - ADVANCE(816); + ADVANCE(833); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18038,14 +18639,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 816: + case 833: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 't') - ADVANCE(817); + ADVANCE(834); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18058,14 +18659,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 817: + case 834: ACCEPT_TOKEN(sym_qualified_name); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead == 'y') - ADVANCE(818); + ADVANCE(835); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18078,12 +18679,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 818: + case 835: ACCEPT_TOKEN(anon_sym_no_DASHeta_DASHequality); if (lookahead == '.') - ADVANCE(304); + ADVANCE(307); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18096,58 +18697,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@' && lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 819: + case 836: if (lookahead == '-') - ADVANCE(550); + ADVANCE(547); if (lookahead == '=') - ADVANCE(492); + ADVANCE(499); if (lookahead == '\\') - SKIP(820); + SKIP(837); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '}') ADVANCE(38); if (lookahead == 10628) - ADVANCE(554); + ADVANCE(566); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(819); + SKIP(836); END_STATE(); - case 820: + case 837: if (lookahead == 'n') - SKIP(819); + SKIP(836); END_STATE(); - case 821: + case 838: if (lookahead == '-') - ADVANCE(453); + ADVANCE(455); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(822); + ADVANCE(839); if (lookahead == '_') - ADVANCE(565); + ADVANCE(589); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '}') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(821); + SKIP(838); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 822: + case 839: if (lookahead == 'n') - SKIP(821); + SKIP(838); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18157,24 +18758,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 823: + case 840: if (lookahead == '-') - ADVANCE(453); + ADVANCE(455); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(824); + ADVANCE(841); if (lookahead == '_') - ADVANCE(565); + ADVANCE(589); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == 10628) ADVANCE(43); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(823); + SKIP(840); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -18182,9 +18783,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 824: + case 841: if (lookahead == 'n') - SKIP(823); + SKIP(840); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18194,33 +18795,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 825: + case 842: if (lookahead == '-') - ADVANCE(453); + ADVANCE(455); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(826); + ADVANCE(843); if (lookahead == '_') - ADVANCE(565); + ADVANCE(589); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(825); + SKIP(842); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 826: + case 843: if (lookahead == 'n') - SKIP(825); + SKIP(842); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18230,33 +18831,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 827: + case 844: + if (lookahead == '(') + ADVANCE(454); if (lookahead == '-') - ADVANCE(453); + ADVANCE(569); + if (lookahead == '.') + ADVANCE(456); if (lookahead == '\\') - ADVANCE(828); + ADVANCE(845); if (lookahead == '_') ADVANCE(16); - if (lookahead == 'i') - ADVANCE(665); + if (lookahead == 'w') + ADVANCE(537); if (lookahead == '{') - ADVANCE(530); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); + if (lookahead == 10627) + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(827); + SKIP(844); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != '.' && lookahead != '@' && lookahead != '}') ADVANCE(47); END_STATE(); - case 828: + case 845: if (lookahead == 'n') - SKIP(827); + SKIP(844); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18266,64 +18874,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 829: + case 846: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(830); + ADVANCE(847); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'h') - ADVANCE(589); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'p') - ADVANCE(590); + ADVANCE(282); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(591); + ADVANCE(294); if (lookahead == 'u') - ADVANCE(592); + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(829); + SKIP(846); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 830: + case 847: if (lookahead == 'n') - SKIP(829); + SKIP(846); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18331,459 +18937,318 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 831: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); + case 848: + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(541); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(455); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(849); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(589); if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(462); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(629); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(831); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(848); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + lookahead != '"' && + lookahead != '\'' && + lookahead != '(' && + lookahead != '.' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 832: - if (lookahead == '"') - ADVANCE(2); + case 849: + if (lookahead == 'n') + SKIP(848); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 850: if (lookahead == '(') - ADVANCE(4); + ADVANCE(454); if (lookahead == '-') - ADVANCE(272); + ADVANCE(569); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(456); + if (lookahead == ':') + ADVANCE(9); + if (lookahead == ';') + ADVANCE(10); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(851); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(16); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) ADVANCE(298); + if (lookahead == '}') + ADVANCE(540); + if (lookahead == 8594) + ADVANCE(40); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(832); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(850); if (lookahead != 0 && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); + lookahead != '@') + ADVANCE(47); END_STATE(); - case 833: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); + case 851: + if (lookahead == 'n') + SKIP(850); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 852: + if (lookahead == '#') + ADVANCE(853); if (lookahead == '-') - ADVANCE(541); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(547); if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(648); + SKIP(854); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(833); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); + SKIP(852); END_STATE(); - case 834: - if (lookahead == '"') - ADVANCE(2); + case 853: + if (lookahead == '-') + ADVANCE(855); + END_STATE(); + case 854: + if (lookahead == 'n') + SKIP(852); + END_STATE(); + case 855: + if (lookahead == '}') + ADVANCE(92); + END_STATE(); + case 856: if (lookahead == '(') - ADVANCE(4); + ADVANCE(454); if (lookahead == '-') - ADVANCE(541); + ADVANCE(569); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(857); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(16); if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); - if (lookahead == 8704) ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(834); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(856); if (lookahead != 0 && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 835: + case 857: + if (lookahead == 'n') + SKIP(856); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(47); + END_STATE(); + case 858: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(859); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(282); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(835); + SKIP(858); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 836: + case 859: + if (lookahead == 'n') + SKIP(858); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 860: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(836); + SKIP(860); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 837: + case 861: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); - if (lookahead == ':') - ADVANCE(9); - if (lookahead == ';') - ADVANCE(10); + ADVANCE(456); + if (lookahead == '=') + ADVANCE(11); if (lookahead == '\\') - ADVANCE(838); + ADVANCE(862); if (lookahead == '_') ADVANCE(16); + if (lookahead == 'm') + ADVANCE(629); + if (lookahead == 'w') + ADVANCE(35); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '}') - ADVANCE(533); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -18792,16 +19257,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(837); + SKIP(861); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != '@') + lookahead != '@' && + lookahead != '}') ADVANCE(47); END_STATE(); - case 838: + case 862: if (lookahead == 'n') - SKIP(837); + SKIP(861); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18811,63 +19277,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 839: - if (lookahead == '#') - ADVANCE(840); - if (lookahead == '-') - ADVANCE(550); - if (lookahead == '\\') - SKIP(841); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(839); - END_STATE(); - case 840: - if (lookahead == '-') - ADVANCE(842); - END_STATE(); - case 841: - if (lookahead == 'n') - SKIP(839); - END_STATE(); - case 842: - if (lookahead == '}') - ADVANCE(91); - END_STATE(); - case 843: - if (lookahead == ')') - ADVANCE(5); + case 863: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); if (lookahead == '-') - ADVANCE(453); + ADVANCE(275); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '=') + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(844); + ADVANCE(864); if (lookahead == '_') - ADVANCE(565); + ADVANCE(282); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(488); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(470); if (lookahead == '{') - ADVANCE(530); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(843); + SKIP(863); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\'' && - lookahead != '(' && - lookahead != '.' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 844: + case 864: if (lookahead == 'n') - SKIP(843); + SKIP(863); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18875,27 +19344,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 845: + case 865: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '=') ADVANCE(11); if (lookahead == '\\') - ADVANCE(846); + ADVANCE(866); if (lookahead == '_') ADVANCE(16); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(35); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -18904,7 +19373,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(845); + SKIP(865); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -18912,9 +19381,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 846: + case 866: if (lookahead == 'n') - SKIP(845); + SKIP(865); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18924,66 +19393,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 847: + case 867: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(848); + ADVANCE(868); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(847); + SKIP(867); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 848: + case 868: if (lookahead == 'n') - SKIP(847); + SKIP(867); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -18991,115 +19460,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 849: + case 869: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(578); + ADVANCE(275); if (lookahead == '.') - ADVANCE(454); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); if (lookahead == '=') - ADVANCE(11); + ADVANCE(467); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(850); + ADVANCE(281); if (lookahead == '_') - ADVANCE(16); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(468); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(849); + SKIP(869); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); if (lookahead != 0 && - lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(47); - END_STATE(); - case 850: - if (lookahead == 'n') - SKIP(849); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + ADVANCE(305); END_STATE(); - case 851: - if (lookahead == '"') - ADVANCE(2); + case 870: if (lookahead == '(') - ADVANCE(4); + ADVANCE(454); if (lookahead == '-') - ADVANCE(272); + ADVANCE(569); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(456); + if (lookahead == ':') + ADVANCE(9); if (lookahead == '\\') - ADVANCE(852); + ADVANCE(871); if (lookahead == '_') - ADVANCE(279); + ADVANCE(16); if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') - ADVANCE(294); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(35); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) - ADVANCE(297); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(851); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(870); if (lookahead != 0 && + lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 852: + case 871: if (lookahead == 'n') - SKIP(851); + SKIP(870); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19107,94 +19576,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 853: + case 872: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == '=') - ADVANCE(460); + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(873); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(282); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(853); + SKIP(872); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 854: + case 873: + if (lookahead == 'n') + SKIP(872); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 874: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); + if (lookahead == ':') + ADVANCE(9); if (lookahead == '\\') - ADVANCE(855); + ADVANCE(875); if (lookahead == '_') ADVANCE(16); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -19203,7 +19674,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(854); + SKIP(874); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -19211,9 +19682,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 855: + case 875: if (lookahead == 'n') - SKIP(854); + SKIP(874); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19223,64 +19694,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 856: + case 876: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(857); + ADVANCE(877); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(856); + SKIP(876); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 857: + case 877: if (lookahead == 'n') - SKIP(856); + SKIP(876); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19288,182 +19761,162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 858: + case 878: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); + if (lookahead == ':') + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(858); + SKIP(878); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 859: - if (lookahead == '(') - ADVANCE(452); + case 879: + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(578); - if (lookahead == '.') - ADVANCE(454); - if (lookahead == ':') - ADVANCE(9); + ADVANCE(547); if (lookahead == '\\') - ADVANCE(860); - if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'm') - ADVANCE(580); - if (lookahead == 'w') - ADVANCE(35); + SKIP(880); + if (lookahead == 'h') + ADVANCE(690); + if (lookahead == 'p') + ADVANCE(691); + if (lookahead == 'r') + ADVANCE(692); + if (lookahead == 'u') + ADVANCE(693); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); - if (lookahead == 10627) - ADVANCE(42); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(859); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@' && - lookahead != '}') - ADVANCE(47); + SKIP(879); END_STATE(); - case 860: + case 880: if (lookahead == 'n') - SKIP(859); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); + SKIP(879); END_STATE(); - case 861: + case 881: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); + if (lookahead == ')') + ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(862); + ADVANCE(882); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'm') - ADVANCE(461); + ADVANCE(282); + if (lookahead == 'h') + ADVANCE(601); + if (lookahead == 'p') + ADVANCE(602); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(603); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(463); + ADVANCE(604); if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); + ADVANCE(298); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(861); + SKIP(881); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && + lookahead != '\'' && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 862: + case 882: if (lookahead == 'n') - SKIP(861); + SKIP(881); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19471,278 +19924,182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 863: + case 883: + if (lookahead == '"') + ADVANCE(2); if (lookahead == '(') - ADVANCE(452); + ADVANCE(4); if (lookahead == '-') - ADVANCE(578); + ADVANCE(557); if (lookahead == '.') - ADVANCE(454); - if (lookahead == ':') - ADVANCE(9); + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); if (lookahead == '\\') - ADVANCE(864); + ADVANCE(281); if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'm') - ADVANCE(580); - if (lookahead == 'w') - ADVANCE(525); + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); if (lookahead == 8594) - ADVANCE(40); + ADVANCE(559); + if (lookahead == 8704) + ADVANCE(301); if (lookahead == 10627) - ADVANCE(42); + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(863); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@' && - lookahead != '}') - ADVANCE(47); - END_STATE(); - case 864: - if (lookahead == 'n') - SKIP(863); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); - END_STATE(); - case 865: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(866); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(648); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(865); + SKIP(883); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); - END_STATE(); - case 866: - if (lookahead == 'n') - SKIP(865); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 867: + case 884: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); - if (lookahead == ':') - ADVANCE(459); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); + if (lookahead == 'i') + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); + if (lookahead == 8594) + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(867); + SKIP(884); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); - END_STATE(); - case 868: - if (lookahead == ')') - ADVANCE(5); - if (lookahead == '-') - ADVANCE(550); - if (lookahead == '\\') - SKIP(869); - if (lookahead == 'h') - ADVANCE(677); - if (lookahead == 'p') - ADVANCE(678); - if (lookahead == 'r') - ADVANCE(679); - if (lookahead == 'u') - ADVANCE(680); - if (lookahead == '{') - ADVANCE(530); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(868); - END_STATE(); - case 869: - if (lookahead == 'n') - SKIP(868); + ADVANCE(305); END_STATE(); - case 870: - if (lookahead == '"') - ADVANCE(2); + case 885: if (lookahead == '(') - ADVANCE(4); - if (lookahead == ')') - ADVANCE(5); + ADVANCE(454); if (lookahead == '-') - ADVANCE(272); + ADVANCE(569); if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(871); + ADVANCE(886); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'h') - ADVANCE(589); - if (lookahead == 'p') - ADVANCE(590); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(591); - if (lookahead == 'u') - ADVANCE(592); + ADVANCE(16); + if (lookahead == 'i') + ADVANCE(665); + if (lookahead == 'm') + ADVANCE(629); + if (lookahead == 'w') + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8230) - ADVANCE(297); + ADVANCE(298); + if (lookahead == 8594) + ADVANCE(40); if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(870); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + SKIP(885); if (lookahead != 0 && - lookahead != '\'' && - lookahead != ';' && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead) && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 871: + case 886: if (lookahead == 'n') - SKIP(870); + SKIP(885); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19750,165 +20107,167 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(47); END_STATE(); - case 872: + case 887: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(888); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); + ADVANCE(576); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); + if (lookahead == 'w') + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); - if (lookahead == 8704) - ADVANCE(298); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(872); + SKIP(887); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 873: + case 888: + if (lookahead == 'n') + SKIP(887); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) + ADVANCE(305); + END_STATE(); + case 889: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); + if (lookahead == 'm') + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8594) - ADVANCE(542); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(873); + SKIP(889); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 874: + case 890: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '=') ADVANCE(11); if (lookahead == '\\') - ADVANCE(875); + ADVANCE(891); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') ADVANCE(35); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -19917,7 +20276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(874); + SKIP(890); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -19925,9 +20284,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 875: + case 891: if (lookahead == 'n') - SKIP(874); + SKIP(890); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -19937,68 +20296,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 876: + case 892: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(877); + ADVANCE(893); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(876); + SKIP(892); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 877: + case 893: if (lookahead == 'n') - SKIP(876); + SKIP(892); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20006,29 +20365,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 878: + case 894: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '=') ADVANCE(11); if (lookahead == '\\') - ADVANCE(879); + ADVANCE(895); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -20037,7 +20396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(878); + SKIP(894); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -20045,9 +20404,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 879: + case 895: if (lookahead == 'n') - SKIP(878); + SKIP(894); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20057,68 +20416,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 880: + case 896: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(881); + ADVANCE(897); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(880); + SKIP(896); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 881: + case 897: if (lookahead == 'n') - SKIP(880); + SKIP(896); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20126,285 +20485,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 882: + case 898: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') ADVANCE(294); - if (lookahead == 'w') - ADVANCE(648); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') + if (lookahead == 't') ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(882); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 883: - if (lookahead == '(') - ADVANCE(452); - if (lookahead == '-') - ADVANCE(578); - if (lookahead == '.') - ADVANCE(454); - if (lookahead == '\\') - ADVANCE(884); - if (lookahead == '_') - ADVANCE(16); - if (lookahead == 'i') - ADVANCE(665); - if (lookahead == 'm') - ADVANCE(580); - if (lookahead == 'w') - ADVANCE(525); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == 8594) - ADVANCE(40); - if (lookahead == 10627) - ADVANCE(42); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(883); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != '@' && - lookahead != '}') - ADVANCE(47); - END_STATE(); - case 884: - if (lookahead == 'n') - SKIP(883); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(47); - END_STATE(); - case 885: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(886); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(481); - if (lookahead == 'r') - ADVANCE(291); if (lookahead == 'u') - ADVANCE(294); - if (lookahead == 'w') - ADVANCE(648); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 8230) ADVANCE(297); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(885); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 886: - if (lookahead == 'n') - SKIP(885); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); - END_STATE(); - case 887: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') - ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'i') - ADVANCE(575); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(461); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(887); + SKIP(898); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 888: + case 899: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(889); + ADVANCE(900); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') ADVANCE(35); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -20413,7 +20587,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(888); + SKIP(899); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -20421,9 +20595,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 889: + case 900: if (lookahead == 'n') - SKIP(888); + SKIP(899); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20433,68 +20607,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 890: + case 901: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(891); + ADVANCE(902); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(890); + SKIP(901); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 891: + case 902: if (lookahead == 'n') - SKIP(890); + SKIP(901); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20502,29 +20676,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 892: + case 903: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ':') ADVANCE(9); if (lookahead == '\\') - ADVANCE(893); + ADVANCE(904); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == 'm') - ADVANCE(580); + ADVANCE(629); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -20533,7 +20707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(892); + SKIP(903); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -20541,9 +20715,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 893: + case 904: if (lookahead == 'n') - SKIP(892); + SKIP(903); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20553,68 +20727,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 894: + case 905: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(895); + ADVANCE(906); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(894); + SKIP(905); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 895: + case 906: if (lookahead == 'n') - SKIP(894); + SKIP(905); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20622,96 +20796,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 896: + case 907: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(896); + SKIP(907); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 897: + case 908: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == ';') ADVANCE(10); if (lookahead == '\\') - ADVANCE(898); + ADVANCE(909); if (lookahead == '_') ADVANCE(16); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '}') - ADVANCE(533); + ADVANCE(540); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -20720,16 +20894,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(897); + SKIP(908); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && lookahead != '@') ADVANCE(47); END_STATE(); - case 898: + case 909: if (lookahead == 'n') - SKIP(897); + SKIP(908); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -20739,149 +20913,149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 899: + case 910: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(899); + SKIP(910); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 900: + case 911: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(900); + SKIP(911); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 901: + case 912: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') @@ -20889,268 +21063,149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(5); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == ';') - ADVANCE(479); + ADVANCE(486); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') ADVANCE(38); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(901); + SKIP(912); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && lookahead != '\'' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 902: + case 913: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); - if (lookahead == 'P') - ADVANCE(276); - if (lookahead == 'S') - ADVANCE(277); - if (lookahead == '\\') ADVANCE(278); - if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'd') - ADVANCE(448); - if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'q') - ADVANCE(290); - if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 't') - ADVANCE(293); - if (lookahead == 'u') - ADVANCE(294); - if (lookahead == '{') - ADVANCE(295); - if (lookahead == '|') - ADVANCE(464); - if (lookahead == 955) - ADVANCE(296); - if (lookahead == 8230) - ADVANCE(297); - if (lookahead == 8704) - ADVANCE(298); - if (lookahead == 10627) - ADVANCE(299); - if (lookahead == 10628) - ADVANCE(487); - if (lookahead == 10631) - ADVANCE(300); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(902); - if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 903: - if (lookahead == '"') - ADVANCE(2); - if (lookahead == '(') - ADVANCE(4); - if (lookahead == '-') - ADVANCE(272); - if (lookahead == '.') - ADVANCE(273); - if (lookahead == '0') - ADVANCE(274); - if (lookahead == '?') - ADVANCE(275); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); - if (lookahead == 'a') - ADVANCE(280); - if (lookahead == 'c') - ADVANCE(904); - if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); if (lookahead == 'f') - ADVANCE(283); - if (lookahead == 'g') - ADVANCE(284); - if (lookahead == 'i') - ADVANCE(285); + ADVANCE(463); if (lookahead == 'l') - ADVANCE(286); - if (lookahead == 'm') - ADVANCE(287); - if (lookahead == 'o') - ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 's') - ADVANCE(292); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); + if (lookahead == '|') + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); + if (lookahead == 10628) + ADVANCE(494); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(903); + SKIP(913); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 904: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') - ADVANCE(304); - if (lookahead == 'o') - ADVANCE(905); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') - ADVANCE(302); - END_STATE(); - case 905: - ACCEPT_TOKEN(sym_qualified_name); - if (lookahead == '.') ADVANCE(304); - if (lookahead == 'd') - ADVANCE(339); - if (lookahead == 'n') - ADVANCE(772); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '(' && - lookahead != ')' && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && - lookahead != '{' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 906: + case 914: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(907); + ADVANCE(915); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -21159,7 +21214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(906); + SKIP(914); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -21167,9 +21222,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 907: + case 915: if (lookahead == 'n') - SKIP(906); + SKIP(914); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21179,62 +21234,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 908: + case 916: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(909); + ADVANCE(917); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(908); + SKIP(916); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 909: + case 917: if (lookahead == 'n') - SKIP(908); + SKIP(916); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21242,90 +21297,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 910: + case 918: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(910); + SKIP(918); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 911: + case 919: if (lookahead == '(') - ADVANCE(452); + ADVANCE(454); if (lookahead == '-') - ADVANCE(578); + ADVANCE(569); if (lookahead == '.') - ADVANCE(454); + ADVANCE(456); if (lookahead == '\\') - ADVANCE(912); + ADVANCE(920); if (lookahead == '_') ADVANCE(16); if (lookahead == 'i') ADVANCE(665); if (lookahead == 'w') - ADVANCE(525); + ADVANCE(537); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == 8594) ADVANCE(40); if (lookahead == 10627) @@ -21334,7 +21389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(911); + SKIP(919); if (lookahead != 0 && lookahead != '"' && (lookahead < '\'' || ')' < lookahead) && @@ -21342,9 +21397,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(47); END_STATE(); - case 912: + case 920: if (lookahead == 'n') - SKIP(911); + SKIP(919); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21354,64 +21409,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'a' || 'z' < lookahead)) ADVANCE(47); END_STATE(); - case 913: + case 921: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(914); + ADVANCE(922); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'q') - ADVANCE(481); + ADVANCE(488); if (lookahead == 'r') - ADVANCE(291); - if (lookahead == 'u') ADVANCE(294); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(913); + SKIP(921); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 914: + case 922: if (lookahead == 'n') - SKIP(913); + SKIP(921); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -21419,347 +21474,466 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'a' || 'z' < lookahead)) - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 915: + case 923: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(272); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(648); + ADVANCE(687); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(915); + SKIP(923); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 916: + case 924: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '=') - ADVANCE(460); + ADVANCE(467); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(916); + SKIP(924); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 917: + case 925: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(557); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == ':') - ADVANCE(459); + ADVANCE(466); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(462); if (lookahead == 'f') - ADVANCE(449); + ADVANCE(463); if (lookahead == 'i') - ADVANCE(575); + ADVANCE(576); if (lookahead == 'l') - ADVANCE(286); + ADVANCE(289); if (lookahead == 'm') - ADVANCE(461); + ADVANCE(468); if (lookahead == 'q') - ADVANCE(290); + ADVANCE(293); if (lookahead == 'r') - ADVANCE(291); + ADVANCE(294); if (lookahead == 't') - ADVANCE(293); + ADVANCE(464); if (lookahead == 'u') - ADVANCE(294); + ADVANCE(297); if (lookahead == 'w') - ADVANCE(463); + ADVANCE(470); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(917); + SKIP(925); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@' && lookahead != '}') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 918: + case 926: if (lookahead == '"') ADVANCE(2); if (lookahead == '(') ADVANCE(4); if (lookahead == '-') - ADVANCE(541); + ADVANCE(275); if (lookahead == '.') - ADVANCE(273); + ADVANCE(276); if (lookahead == '0') - ADVANCE(274); + ADVANCE(277); if (lookahead == '?') - ADVANCE(275); + ADVANCE(278); if (lookahead == 'P') - ADVANCE(276); + ADVANCE(279); if (lookahead == 'S') - ADVANCE(277); + ADVANCE(280); if (lookahead == '\\') - ADVANCE(278); + ADVANCE(281); if (lookahead == '_') - ADVANCE(279); + ADVANCE(282); + if (lookahead == 'a') + ADVANCE(283); + if (lookahead == 'c') + ADVANCE(927); if (lookahead == 'd') - ADVANCE(448); + ADVANCE(285); if (lookahead == 'f') - ADVANCE(449); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'q') + if (lookahead == 'g') + ADVANCE(287); + if (lookahead == 'i') + ADVANCE(288); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'm') ADVANCE(290); - if (lookahead == 'r') + if (lookahead == 'o') ADVANCE(291); - if (lookahead == 't') + if (lookahead == 'p') + ADVANCE(292); + if (lookahead == 'q') ADVANCE(293); + if (lookahead == 'r') + ADVANCE(294); + if (lookahead == 's') + ADVANCE(295); + if (lookahead == 't') + ADVANCE(296); if (lookahead == 'u') + ADVANCE(297); + if (lookahead == '{') + ADVANCE(298); + if (lookahead == 955) + ADVANCE(299); + if (lookahead == 8230) + ADVANCE(300); + if (lookahead == 8704) + ADVANCE(301); + if (lookahead == 10627) + ADVANCE(302); + if (lookahead == 10631) + ADVANCE(303); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(926); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(304); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '@' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'o') + ADVANCE(928); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_qualified_name); + if (lookahead == '.') + ADVANCE(307); + if (lookahead == 'd') + ADVANCE(343); + if (lookahead == 'n') + ADVANCE(789); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') + ADVANCE(305); + END_STATE(); + case 929: + if (lookahead == '"') + ADVANCE(2); + if (lookahead == '(') + ADVANCE(4); + if (lookahead == '-') + ADVANCE(557); + if (lookahead == '.') + ADVANCE(276); + if (lookahead == '0') + ADVANCE(277); + if (lookahead == '?') + ADVANCE(278); + if (lookahead == 'P') + ADVANCE(279); + if (lookahead == 'S') + ADVANCE(280); + if (lookahead == '\\') + ADVANCE(281); + if (lookahead == '_') + ADVANCE(282); + if (lookahead == 'd') + ADVANCE(462); + if (lookahead == 'f') + ADVANCE(463); + if (lookahead == 'l') + ADVANCE(289); + if (lookahead == 'q') + ADVANCE(293); + if (lookahead == 'r') ADVANCE(294); + if (lookahead == 't') + ADVANCE(464); + if (lookahead == 'u') + ADVANCE(297); if (lookahead == '{') - ADVANCE(295); + ADVANCE(298); if (lookahead == '|') - ADVANCE(464); + ADVANCE(471); if (lookahead == '}') - ADVANCE(450); + ADVANCE(459); if (lookahead == 955) - ADVANCE(296); + ADVANCE(299); if (lookahead == 8230) - ADVANCE(297); + ADVANCE(300); if (lookahead == 8594) - ADVANCE(542); + ADVANCE(559); if (lookahead == 8704) - ADVANCE(298); + ADVANCE(301); if (lookahead == 10627) - ADVANCE(299); + ADVANCE(302); if (lookahead == 10631) - ADVANCE(300); + ADVANCE(303); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(918); + SKIP(929); if (('1' <= lookahead && lookahead <= '9')) - ADVANCE(301); + ADVANCE(304); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '@') - ADVANCE(302); + ADVANCE(305); END_STATE(); - case 919: + case 930: if (lookahead == '-') - ADVANCE(550); + ADVANCE(547); if (lookahead == '\\') - SKIP(920); + SKIP(931); if (lookahead == 'c') - ADVANCE(921); + ADVANCE(932); if (lookahead == '{') - ADVANCE(530); + ADVANCE(534); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(919); + SKIP(930); END_STATE(); - case 920: + case 931: if (lookahead == 'n') - SKIP(919); + SKIP(930); END_STATE(); - case 921: + case 932: if (lookahead == 'o') - ADVANCE(922); + ADVANCE(933); END_STATE(); - case 922: + case 933: if (lookahead == 'n') - ADVANCE(923); + ADVANCE(934); END_STATE(); - case 923: + case 934: if (lookahead == 's') - ADVANCE(924); + ADVANCE(935); END_STATE(); - case 924: + case 935: if (lookahead == 't') - ADVANCE(925); + ADVANCE(936); END_STATE(); - case 925: + case 936: if (lookahead == 'r') - ADVANCE(926); + ADVANCE(937); END_STATE(); - case 926: + case 937: if (lookahead == 'u') - ADVANCE(927); + ADVANCE(938); END_STATE(); - case 927: + case 938: if (lookahead == 'c') - ADVANCE(928); + ADVANCE(939); END_STATE(); - case 928: + case 939: if (lookahead == 't') - ADVANCE(929); + ADVANCE(940); END_STATE(); - case 929: + case 940: if (lookahead == 'o') - ADVANCE(930); + ADVANCE(941); END_STATE(); - case 930: + case 941: if (lookahead == 'r') - ADVANCE(931); + ADVANCE(942); END_STATE(); - case 931: + case 942: ACCEPT_TOKEN(anon_sym_constructor); END_STATE(); default: @@ -21861,5518 +22035,5522 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 271}, - [2] = {.lex_state = 447}, - [3] = {.lex_state = 451}, + [1] = {.lex_state = 274}, + [2] = {.lex_state = 453}, + [3] = {.lex_state = 0, .external_lex_state = 2}, [4] = {.lex_state = 0, .external_lex_state = 2}, - [5] = {.lex_state = 451}, - [6] = {.lex_state = 0, .external_lex_state = 2}, - [7] = {.lex_state = 458, .external_lex_state = 3}, - [8] = {.lex_state = 0, .external_lex_state = 2}, - [9] = {.lex_state = 478}, - [10] = {.lex_state = 486}, - [11] = {.lex_state = 451}, - [12] = {.lex_state = 0, .external_lex_state = 2}, - [13] = {.lex_state = 488}, - [14] = {.lex_state = 0, .external_lex_state = 2}, + [5] = {.lex_state = 461}, + [6] = {.lex_state = 465, .external_lex_state = 3}, + [7] = {.lex_state = 485}, + [8] = {.lex_state = 274, .external_lex_state = 2}, + [9] = {.lex_state = 485}, + [10] = {.lex_state = 461}, + [11] = {.lex_state = 493}, + [12] = {.lex_state = 453}, + [13] = {.lex_state = 0, .external_lex_state = 2}, + [14] = {.lex_state = 495}, [15] = {.lex_state = 0, .external_lex_state = 2}, [16] = {.lex_state = 0, .external_lex_state = 2}, [17] = {.lex_state = 0, .external_lex_state = 2}, - [18] = {.lex_state = 271, .external_lex_state = 2}, - [19] = {.lex_state = 523}, - [20] = {.lex_state = 458, .external_lex_state = 3}, - [21] = {.lex_state = 526}, - [22] = {.lex_state = 447}, - [23] = {.lex_state = 531}, - [24] = {.lex_state = 451}, - [25] = {.lex_state = 0, .external_lex_state = 2}, - [26] = {.lex_state = 0, .external_lex_state = 2}, - [27] = {.lex_state = 478}, - [28] = {.lex_state = 447}, - [29] = {.lex_state = 532}, - [30] = {.lex_state = 534}, - [31] = {.lex_state = 478}, - [32] = {.lex_state = 536}, - [33] = {.lex_state = 451}, - [34] = {.lex_state = 536}, + [18] = {.lex_state = 0, .external_lex_state = 2}, + [19] = {.lex_state = 0, .external_lex_state = 2}, + [20] = {.lex_state = 453}, + [21] = {.lex_state = 465, .external_lex_state = 3}, + [22] = {.lex_state = 530}, + [23] = {.lex_state = 535}, + [24] = {.lex_state = 461}, + [25] = {.lex_state = 538}, + [26] = {.lex_state = 453}, + [27] = {.lex_state = 0, .external_lex_state = 2}, + [28] = {.lex_state = 0, .external_lex_state = 2}, + [29] = {.lex_state = 485}, + [30] = {.lex_state = 539}, + [31] = {.lex_state = 541}, + [32] = {.lex_state = 543}, + [33] = {.lex_state = 453}, + [34] = {.lex_state = 543}, [35] = {.lex_state = 0, .external_lex_state = 3}, - [36] = {.lex_state = 488, .external_lex_state = 3}, - [37] = {.lex_state = 488, .external_lex_state = 3}, - [38] = {.lex_state = 271}, - [39] = {.lex_state = 538}, - [40] = {.lex_state = 458, .external_lex_state = 3}, - [41] = {.lex_state = 0}, - [42] = {.lex_state = 488, .external_lex_state = 3}, - [43] = {.lex_state = 488, .external_lex_state = 3}, - [44] = {.lex_state = 488}, - [45] = {.lex_state = 539}, - [46] = {.lex_state = 488, .external_lex_state = 3}, - [47] = {.lex_state = 458, .external_lex_state = 3}, - [48] = {.lex_state = 540}, - [49] = {.lex_state = 447}, - [50] = {.lex_state = 271, .external_lex_state = 2}, - [51] = {.lex_state = 523}, - [52] = {.lex_state = 540}, - [53] = {.lex_state = 544}, - [54] = {.lex_state = 451}, - [55] = {.lex_state = 488}, + [36] = {.lex_state = 495, .external_lex_state = 3}, + [37] = {.lex_state = 465, .external_lex_state = 3}, + [38] = {.lex_state = 545}, + [39] = {.lex_state = 546, .external_lex_state = 3}, + [40] = {.lex_state = 0}, + [41] = {.lex_state = 495, .external_lex_state = 3}, + [42] = {.lex_state = 495, .external_lex_state = 3}, + [43] = {.lex_state = 495, .external_lex_state = 3}, + [44] = {.lex_state = 274}, + [45] = {.lex_state = 495, .external_lex_state = 3}, + [46] = {.lex_state = 465, .external_lex_state = 3}, + [47] = {.lex_state = 495}, + [48] = {.lex_state = 553}, + [49] = {.lex_state = 554}, + [50] = {.lex_state = 453}, + [51] = {.lex_state = 495, .external_lex_state = 3}, + [52] = {.lex_state = 274}, + [53] = {.lex_state = 495, .external_lex_state = 3}, + [54] = {.lex_state = 556}, + [55] = {.lex_state = 461}, [56] = {.lex_state = 0, .external_lex_state = 2}, - [57] = {.lex_state = 478}, - [58] = {.lex_state = 486}, - [59] = {.lex_state = 478}, - [60] = {.lex_state = 447}, - [61] = {.lex_state = 532}, - [62] = {.lex_state = 478}, - [63] = {.lex_state = 534}, - [64] = {.lex_state = 447}, - [65] = {.lex_state = 488}, - [66] = {.lex_state = 545}, - [67] = {.lex_state = 539}, - [68] = {.lex_state = 549}, - [69] = {.lex_state = 549}, - [70] = {.lex_state = 540}, - [71] = {.lex_state = 555}, - [72] = {.lex_state = 545}, - [73] = {.lex_state = 540}, - [74] = {.lex_state = 549}, - [75] = {.lex_state = 488}, - [76] = {.lex_state = 556}, - [77] = {.lex_state = 451}, - [78] = {.lex_state = 488, .external_lex_state = 3}, - [79] = {.lex_state = 488}, - [80] = {.lex_state = 271}, - [81] = {.lex_state = 488, .external_lex_state = 3}, - [82] = {.lex_state = 539}, - [83] = {.lex_state = 558}, - [84] = {.lex_state = 447}, - [85] = {.lex_state = 558}, - [86] = {.lex_state = 531}, - [87] = {.lex_state = 478}, - [88] = {.lex_state = 486}, - [89] = {.lex_state = 478}, - [90] = {.lex_state = 447}, - [91] = {.lex_state = 447}, - [92] = {.lex_state = 536}, - [93] = {.lex_state = 558}, - [94] = {.lex_state = 558}, - [95] = {.lex_state = 560}, - [96] = {.lex_state = 447}, - [97] = {.lex_state = 271, .external_lex_state = 2}, - [98] = {.lex_state = 523}, - [99] = {.lex_state = 560}, - [100] = {.lex_state = 544}, - [101] = {.lex_state = 451}, - [102] = {.lex_state = 458, .external_lex_state = 3}, - [103] = {.lex_state = 478}, - [104] = {.lex_state = 486}, - [105] = {.lex_state = 478}, - [106] = {.lex_state = 447}, - [107] = {.lex_state = 532}, - [108] = {.lex_state = 478}, - [109] = {.lex_state = 534}, - [110] = {.lex_state = 447}, - [111] = {.lex_state = 488}, - [112] = {.lex_state = 561}, + [57] = {.lex_state = 453}, + [58] = {.lex_state = 556}, + [59] = {.lex_state = 535}, + [60] = {.lex_state = 560}, + [61] = {.lex_state = 495}, + [62] = {.lex_state = 485}, + [63] = {.lex_state = 274, .external_lex_state = 2}, + [64] = {.lex_state = 485}, + [65] = {.lex_state = 461}, + [66] = {.lex_state = 493}, + [67] = {.lex_state = 461}, + [68] = {.lex_state = 485}, + [69] = {.lex_state = 539}, + [70] = {.lex_state = 541}, + [71] = {.lex_state = 561}, + [72] = {.lex_state = 561}, + [73] = {.lex_state = 556}, + [74] = {.lex_state = 568}, + [75] = {.lex_state = 572}, + [76] = {.lex_state = 495}, + [77] = {.lex_state = 556}, + [78] = {.lex_state = 495}, + [79] = {.lex_state = 561}, + [80] = {.lex_state = 561}, + [81] = {.lex_state = 553}, + [82] = {.lex_state = 573, .external_lex_state = 3}, + [83] = {.lex_state = 461}, + [84] = {.lex_state = 573, .external_lex_state = 3}, + [85] = {.lex_state = 538}, + [86] = {.lex_state = 461}, + [87] = {.lex_state = 461}, + [88] = {.lex_state = 485}, + [89] = {.lex_state = 493}, + [90] = {.lex_state = 485}, + [91] = {.lex_state = 539}, + [92] = {.lex_state = 573, .external_lex_state = 3}, + [93] = {.lex_state = 573, .external_lex_state = 3}, + [94] = {.lex_state = 495, .external_lex_state = 3}, + [95] = {.lex_state = 453}, + [96] = {.lex_state = 461}, + [97] = {.lex_state = 575, .external_lex_state = 3}, + [98] = {.lex_state = 485}, + [99] = {.lex_state = 274, .external_lex_state = 2}, + [100] = {.lex_state = 485}, + [101] = {.lex_state = 461}, + [102] = {.lex_state = 493}, + [103] = {.lex_state = 274}, + [104] = {.lex_state = 453}, + [105] = {.lex_state = 495}, + [106] = {.lex_state = 453}, + [107] = {.lex_state = 575, .external_lex_state = 3}, + [108] = {.lex_state = 530}, + [109] = {.lex_state = 535}, + [110] = {.lex_state = 461}, + [111] = {.lex_state = 538}, + [112] = {.lex_state = 485}, [113] = {.lex_state = 539}, - [114] = {.lex_state = 560}, - [115] = {.lex_state = 555}, - [116] = {.lex_state = 560}, - [117] = {.lex_state = 488}, - [118] = {.lex_state = 534}, - [119] = {.lex_state = 488, .external_lex_state = 3}, - [120] = {.lex_state = 451}, - [121] = {.lex_state = 451}, - [122] = {.lex_state = 488, .external_lex_state = 3}, - [123] = {.lex_state = 563}, - [124] = {.lex_state = 488, .external_lex_state = 3}, - [125] = {.lex_state = 488, .external_lex_state = 3}, - [126] = {.lex_state = 488, .external_lex_state = 3}, - [127] = {.lex_state = 447}, - [128] = {.lex_state = 451}, - [129] = {.lex_state = 451}, - [130] = {.lex_state = 574, .external_lex_state = 3}, - [131] = {.lex_state = 478}, - [132] = {.lex_state = 486}, - [133] = {.lex_state = 271}, - [134] = {.lex_state = 451}, - [135] = {.lex_state = 488}, - [136] = {.lex_state = 271, .external_lex_state = 2}, - [137] = {.lex_state = 523}, - [138] = {.lex_state = 574, .external_lex_state = 3}, - [139] = {.lex_state = 526}, - [140] = {.lex_state = 447}, - [141] = {.lex_state = 531}, - [142] = {.lex_state = 478}, - [143] = {.lex_state = 447}, - [144] = {.lex_state = 532}, - [145] = {.lex_state = 534}, - [146] = {.lex_state = 478}, - [147] = {.lex_state = 536}, - [148] = {.lex_state = 451}, - [149] = {.lex_state = 536}, - [150] = {.lex_state = 488, .external_lex_state = 3}, - [151] = {.lex_state = 488, .external_lex_state = 3}, - [152] = {.lex_state = 574, .external_lex_state = 3}, - [153] = {.lex_state = 538}, - [154] = {.lex_state = 271}, - [155] = {.lex_state = 488, .external_lex_state = 3}, - [156] = {.lex_state = 539}, - [157] = {.lex_state = 488, .external_lex_state = 3}, - [158] = {.lex_state = 574, .external_lex_state = 3}, - [159] = {.lex_state = 577, .external_lex_state = 3}, - [160] = {.lex_state = 539}, - [161] = {.lex_state = 583}, - [162] = {.lex_state = 534}, - [163] = {.lex_state = 584}, - [164] = {.lex_state = 585}, - [165] = {.lex_state = 0, .external_lex_state = 2}, - [166] = {.lex_state = 577, .external_lex_state = 3}, - [167] = {.lex_state = 577, .external_lex_state = 3}, - [168] = {.lex_state = 488, .external_lex_state = 3}, - [169] = {.lex_state = 577, .external_lex_state = 3}, - [170] = {.lex_state = 586, .external_lex_state = 3}, - [171] = {.lex_state = 536}, - [172] = {.lex_state = 451}, - [173] = {.lex_state = 586, .external_lex_state = 3}, - [174] = {.lex_state = 555}, - [175] = {.lex_state = 447}, - [176] = {.lex_state = 271, .external_lex_state = 2}, - [177] = {.lex_state = 523}, - [178] = {.lex_state = 555}, - [179] = {.lex_state = 544}, - [180] = {.lex_state = 451}, - [181] = {.lex_state = 478}, - [182] = {.lex_state = 486}, - [183] = {.lex_state = 478}, - [184] = {.lex_state = 447}, - [185] = {.lex_state = 532}, - [186] = {.lex_state = 478}, - [187] = {.lex_state = 534}, - [188] = {.lex_state = 447}, - [189] = {.lex_state = 488}, - [190] = {.lex_state = 451}, - [191] = {.lex_state = 539}, - [192] = {.lex_state = 555}, - [193] = {.lex_state = 555}, - [194] = {.lex_state = 555}, - [195] = {.lex_state = 488}, - [196] = {.lex_state = 271, .external_lex_state = 2}, - [197] = {.lex_state = 523}, - [198] = {.lex_state = 451}, - [199] = {.lex_state = 478}, - [200] = {.lex_state = 478}, - [201] = {.lex_state = 534}, - [202] = {.lex_state = 488}, - [203] = {.lex_state = 478}, - [204] = {.lex_state = 539}, - [205] = {.lex_state = 555}, - [206] = {.lex_state = 488}, - [207] = {.lex_state = 558}, - [208] = {.lex_state = 488, .external_lex_state = 3}, - [209] = {.lex_state = 488, .external_lex_state = 3}, - [210] = {.lex_state = 478}, - [211] = {.lex_state = 615}, - [212] = {.lex_state = 447}, - [213] = {.lex_state = 271, .external_lex_state = 2}, - [214] = {.lex_state = 523}, - [215] = {.lex_state = 615}, - [216] = {.lex_state = 544}, - [217] = {.lex_state = 451}, - [218] = {.lex_state = 478}, - [219] = {.lex_state = 486}, - [220] = {.lex_state = 478}, - [221] = {.lex_state = 447}, - [222] = {.lex_state = 532}, - [223] = {.lex_state = 478}, - [224] = {.lex_state = 534}, - [225] = {.lex_state = 447}, - [226] = {.lex_state = 488}, - [227] = {.lex_state = 617}, - [228] = {.lex_state = 539}, - [229] = {.lex_state = 615}, - [230] = {.lex_state = 555}, - [231] = {.lex_state = 615}, - [232] = {.lex_state = 488}, - [233] = {.lex_state = 271, .external_lex_state = 2}, - [234] = {.lex_state = 523}, - [235] = {.lex_state = 451}, - [236] = {.lex_state = 458, .external_lex_state = 3}, - [237] = {.lex_state = 478}, - [238] = {.lex_state = 478}, - [239] = {.lex_state = 534}, - [240] = {.lex_state = 488}, - [241] = {.lex_state = 534}, - [242] = {.lex_state = 539}, - [243] = {.lex_state = 555}, - [244] = {.lex_state = 488}, - [245] = {.lex_state = 620}, - [246] = {.lex_state = 539}, - [247] = {.lex_state = 539}, - [248] = {.lex_state = 534}, - [249] = {.lex_state = 584}, - [250] = {.lex_state = 539}, - [251] = {.lex_state = 620}, - [252] = {.lex_state = 488}, - [253] = {.lex_state = 620}, - [254] = {.lex_state = 447}, - [255] = {.lex_state = 620}, - [256] = {.lex_state = 622, .external_lex_state = 3}, - [257] = {.lex_state = 447}, - [258] = {.lex_state = 622, .external_lex_state = 3}, - [259] = {.lex_state = 531}, - [260] = {.lex_state = 478}, - [261] = {.lex_state = 486}, - [262] = {.lex_state = 478}, - [263] = {.lex_state = 447}, - [264] = {.lex_state = 532}, - [265] = {.lex_state = 447}, - [266] = {.lex_state = 622, .external_lex_state = 3}, - [267] = {.lex_state = 622, .external_lex_state = 3}, - [268] = {.lex_state = 488, .external_lex_state = 3}, - [269] = {.lex_state = 558}, - [270] = {.lex_state = 624}, - [271] = {.lex_state = 523}, - [272] = {.lex_state = 523}, - [273] = {.lex_state = 271}, - [274] = {.lex_state = 539}, - [275] = {.lex_state = 447}, - [276] = {.lex_state = 488, .external_lex_state = 3}, - [277] = {.lex_state = 488, .external_lex_state = 3}, - [278] = {.lex_state = 271}, - [279] = {.lex_state = 626, .external_lex_state = 3}, - [280] = {.lex_state = 626, .external_lex_state = 3}, - [281] = {.lex_state = 447}, - [282] = {.lex_state = 531}, - [283] = {.lex_state = 478}, - [284] = {.lex_state = 486}, - [285] = {.lex_state = 478}, - [286] = {.lex_state = 447}, - [287] = {.lex_state = 532}, - [288] = {.lex_state = 447}, - [289] = {.lex_state = 626, .external_lex_state = 3}, - [290] = {.lex_state = 626, .external_lex_state = 3}, - [291] = {.lex_state = 538}, - [292] = {.lex_state = 488, .external_lex_state = 3}, - [293] = {.lex_state = 447}, - [294] = {.lex_state = 0, .external_lex_state = 2}, - [295] = {.lex_state = 451}, - [296] = {.lex_state = 488, .external_lex_state = 3}, - [297] = {.lex_state = 488, .external_lex_state = 3}, - [298] = {.lex_state = 539}, - [299] = {.lex_state = 539}, - [300] = {.lex_state = 488, .external_lex_state = 3}, - [301] = {.lex_state = 447}, - [302] = {.lex_state = 539}, - [303] = {.lex_state = 447}, - [304] = {.lex_state = 488, .external_lex_state = 3}, - [305] = {.lex_state = 488, .external_lex_state = 3}, - [306] = {.lex_state = 627}, - [307] = {.lex_state = 447}, - [308] = {.lex_state = 271, .external_lex_state = 2}, - [309] = {.lex_state = 523}, - [310] = {.lex_state = 627}, - [311] = {.lex_state = 544}, - [312] = {.lex_state = 451}, - [313] = {.lex_state = 478}, - [314] = {.lex_state = 486}, - [315] = {.lex_state = 478}, - [316] = {.lex_state = 447}, - [317] = {.lex_state = 532}, - [318] = {.lex_state = 478}, - [319] = {.lex_state = 534}, - [320] = {.lex_state = 447}, - [321] = {.lex_state = 540}, - [322] = {.lex_state = 451}, - [323] = {.lex_state = 627}, - [324] = {.lex_state = 555}, - [325] = {.lex_state = 627}, - [326] = {.lex_state = 628}, - [327] = {.lex_state = 271}, - [328] = {.lex_state = 488, .external_lex_state = 3}, - [329] = {.lex_state = 271}, - [330] = {.lex_state = 630}, - [331] = {.lex_state = 539}, - [332] = {.lex_state = 583}, - [333] = {.lex_state = 534}, - [334] = {.lex_state = 584}, - [335] = {.lex_state = 585}, - [336] = {.lex_state = 0, .external_lex_state = 2}, - [337] = {.lex_state = 630}, - [338] = {.lex_state = 630}, - [339] = {.lex_state = 545}, - [340] = {.lex_state = 630}, - [341] = {.lex_state = 451}, - [342] = {.lex_state = 271, .external_lex_state = 2}, - [343] = {.lex_state = 523}, - [344] = {.lex_state = 632}, - [345] = {.lex_state = 478}, - [346] = {.lex_state = 478}, - [347] = {.lex_state = 536}, - [348] = {.lex_state = 534}, - [349] = {.lex_state = 478}, - [350] = {.lex_state = 555}, - [351] = {.lex_state = 634}, - [352] = {.lex_state = 478}, - [353] = {.lex_state = 488}, - [354] = {.lex_state = 539}, - [355] = {.lex_state = 539}, - [356] = {.lex_state = 539}, - [357] = {.lex_state = 539}, - [358] = {.lex_state = 539}, - [359] = {.lex_state = 478}, - [360] = {.lex_state = 536}, - [361] = {.lex_state = 451}, - [362] = {.lex_state = 636}, - [363] = {.lex_state = 447}, - [364] = {.lex_state = 271, .external_lex_state = 2}, - [365] = {.lex_state = 523}, - [366] = {.lex_state = 636}, - [367] = {.lex_state = 544}, - [368] = {.lex_state = 451}, - [369] = {.lex_state = 478}, - [370] = {.lex_state = 486}, - [371] = {.lex_state = 478}, - [372] = {.lex_state = 447}, - [373] = {.lex_state = 532}, - [374] = {.lex_state = 478}, - [375] = {.lex_state = 534}, - [376] = {.lex_state = 447}, - [377] = {.lex_state = 561}, - [378] = {.lex_state = 636}, - [379] = {.lex_state = 555}, - [380] = {.lex_state = 636}, - [381] = {.lex_state = 561}, - [382] = {.lex_state = 447}, - [383] = {.lex_state = 531}, - [384] = {.lex_state = 486}, - [385] = {.lex_state = 478}, - [386] = {.lex_state = 532}, - [387] = {.lex_state = 617}, - [388] = {.lex_state = 271, .external_lex_state = 2}, - [389] = {.lex_state = 523}, - [390] = {.lex_state = 451}, - [391] = {.lex_state = 540}, - [392] = {.lex_state = 478}, - [393] = {.lex_state = 478}, - [394] = {.lex_state = 534}, - [395] = {.lex_state = 534}, - [396] = {.lex_state = 555}, - [397] = {.lex_state = 637}, - [398] = {.lex_state = 639}, - [399] = {.lex_state = 447}, - [400] = {.lex_state = 639}, - [401] = {.lex_state = 531}, - [402] = {.lex_state = 478}, - [403] = {.lex_state = 486}, - [404] = {.lex_state = 478}, - [405] = {.lex_state = 447}, - [406] = {.lex_state = 532}, - [407] = {.lex_state = 447}, - [408] = {.lex_state = 639}, - [409] = {.lex_state = 639}, - [410] = {.lex_state = 641}, - [411] = {.lex_state = 447}, - [412] = {.lex_state = 545}, - [413] = {.lex_state = 447}, - [414] = {.lex_state = 458, .external_lex_state = 3}, - [415] = {.lex_state = 643}, - [416] = {.lex_state = 643}, - [417] = {.lex_state = 447}, - [418] = {.lex_state = 531}, - [419] = {.lex_state = 478}, - [420] = {.lex_state = 486}, - [421] = {.lex_state = 478}, - [422] = {.lex_state = 447}, - [423] = {.lex_state = 532}, - [424] = {.lex_state = 447}, - [425] = {.lex_state = 643}, - [426] = {.lex_state = 538}, - [427] = {.lex_state = 643}, - [428] = {.lex_state = 549}, - [429] = {.lex_state = 447}, - [430] = {.lex_state = 531}, - [431] = {.lex_state = 486}, - [432] = {.lex_state = 532}, - [433] = {.lex_state = 555}, - [434] = {.lex_state = 549}, - [435] = {.lex_state = 539}, - [436] = {.lex_state = 539}, - [437] = {.lex_state = 539}, - [438] = {.lex_state = 584}, - [439] = {.lex_state = 545}, - [440] = {.lex_state = 556}, + [114] = {.lex_state = 541}, + [115] = {.lex_state = 543}, + [116] = {.lex_state = 453}, + [117] = {.lex_state = 543}, + [118] = {.lex_state = 495, .external_lex_state = 3}, + [119] = {.lex_state = 575, .external_lex_state = 3}, + [120] = {.lex_state = 545}, + [121] = {.lex_state = 546, .external_lex_state = 3}, + [122] = {.lex_state = 495, .external_lex_state = 3}, + [123] = {.lex_state = 495, .external_lex_state = 3}, + [124] = {.lex_state = 274}, + [125] = {.lex_state = 495, .external_lex_state = 3}, + [126] = {.lex_state = 575, .external_lex_state = 3}, + [127] = {.lex_state = 553}, + [128] = {.lex_state = 578}, + [129] = {.lex_state = 461}, + [130] = {.lex_state = 578}, + [131] = {.lex_state = 538}, + [132] = {.lex_state = 461}, + [133] = {.lex_state = 461}, + [134] = {.lex_state = 485}, + [135] = {.lex_state = 493}, + [136] = {.lex_state = 485}, + [137] = {.lex_state = 543}, + [138] = {.lex_state = 578}, + [139] = {.lex_state = 578}, + [140] = {.lex_state = 580}, + [141] = {.lex_state = 461}, + [142] = {.lex_state = 453}, + [143] = {.lex_state = 580}, + [144] = {.lex_state = 535}, + [145] = {.lex_state = 560}, + [146] = {.lex_state = 485}, + [147] = {.lex_state = 274, .external_lex_state = 2}, + [148] = {.lex_state = 485}, + [149] = {.lex_state = 461}, + [150] = {.lex_state = 493}, + [151] = {.lex_state = 461}, + [152] = {.lex_state = 485}, + [153] = {.lex_state = 539}, + [154] = {.lex_state = 541}, + [155] = {.lex_state = 580}, + [156] = {.lex_state = 582}, + [157] = {.lex_state = 572}, + [158] = {.lex_state = 495}, + [159] = {.lex_state = 580}, + [160] = {.lex_state = 495}, + [161] = {.lex_state = 553}, + [162] = {.lex_state = 584}, + [163] = {.lex_state = 461}, + [164] = {.lex_state = 453}, + [165] = {.lex_state = 584}, + [166] = {.lex_state = 535}, + [167] = {.lex_state = 560}, + [168] = {.lex_state = 465, .external_lex_state = 3}, + [169] = {.lex_state = 485}, + [170] = {.lex_state = 274, .external_lex_state = 2}, + [171] = {.lex_state = 485}, + [172] = {.lex_state = 461}, + [173] = {.lex_state = 493}, + [174] = {.lex_state = 461}, + [175] = {.lex_state = 485}, + [176] = {.lex_state = 539}, + [177] = {.lex_state = 541}, + [178] = {.lex_state = 584}, + [179] = {.lex_state = 585}, + [180] = {.lex_state = 572}, + [181] = {.lex_state = 495}, + [182] = {.lex_state = 584}, + [183] = {.lex_state = 495}, + [184] = {.lex_state = 553}, + [185] = {.lex_state = 541}, + [186] = {.lex_state = 495, .external_lex_state = 3}, + [187] = {.lex_state = 453}, + [188] = {.lex_state = 453}, + [189] = {.lex_state = 495, .external_lex_state = 3}, + [190] = {.lex_state = 587}, + [191] = {.lex_state = 495, .external_lex_state = 3}, + [192] = {.lex_state = 495, .external_lex_state = 3}, + [193] = {.lex_state = 495, .external_lex_state = 3}, + [194] = {.lex_state = 553}, + [195] = {.lex_state = 495}, + [196] = {.lex_state = 598, .external_lex_state = 3}, + [197] = {.lex_state = 543}, + [198] = {.lex_state = 453}, + [199] = {.lex_state = 598, .external_lex_state = 3}, + [200] = {.lex_state = 627, .external_lex_state = 3}, + [201] = {.lex_state = 553}, + [202] = {.lex_state = 632}, + [203] = {.lex_state = 541}, + [204] = {.lex_state = 633}, + [205] = {.lex_state = 634}, + [206] = {.lex_state = 0, .external_lex_state = 2}, + [207] = {.lex_state = 627, .external_lex_state = 3}, + [208] = {.lex_state = 627, .external_lex_state = 3}, + [209] = {.lex_state = 495, .external_lex_state = 3}, + [210] = {.lex_state = 627, .external_lex_state = 3}, + [211] = {.lex_state = 572}, + [212] = {.lex_state = 461}, + [213] = {.lex_state = 453}, + [214] = {.lex_state = 572}, + [215] = {.lex_state = 535}, + [216] = {.lex_state = 560}, + [217] = {.lex_state = 485}, + [218] = {.lex_state = 274, .external_lex_state = 2}, + [219] = {.lex_state = 485}, + [220] = {.lex_state = 461}, + [221] = {.lex_state = 493}, + [222] = {.lex_state = 461}, + [223] = {.lex_state = 485}, + [224] = {.lex_state = 539}, + [225] = {.lex_state = 541}, + [226] = {.lex_state = 572}, + [227] = {.lex_state = 453}, + [228] = {.lex_state = 572}, + [229] = {.lex_state = 495}, + [230] = {.lex_state = 572}, + [231] = {.lex_state = 495}, + [232] = {.lex_state = 553}, + [233] = {.lex_state = 453}, + [234] = {.lex_state = 535}, + [235] = {.lex_state = 485}, + [236] = {.lex_state = 274, .external_lex_state = 2}, + [237] = {.lex_state = 485}, + [238] = {.lex_state = 541}, + [239] = {.lex_state = 485}, + [240] = {.lex_state = 572}, + [241] = {.lex_state = 495}, + [242] = {.lex_state = 495}, + [243] = {.lex_state = 553}, + [244] = {.lex_state = 578}, + [245] = {.lex_state = 495, .external_lex_state = 3}, + [246] = {.lex_state = 495, .external_lex_state = 3}, + [247] = {.lex_state = 485}, + [248] = {.lex_state = 453}, + [249] = {.lex_state = 535}, + [250] = {.lex_state = 485}, + [251] = {.lex_state = 274, .external_lex_state = 2}, + [252] = {.lex_state = 485}, + [253] = {.lex_state = 541}, + [254] = {.lex_state = 465, .external_lex_state = 3}, + [255] = {.lex_state = 541}, + [256] = {.lex_state = 572}, + [257] = {.lex_state = 495}, + [258] = {.lex_state = 495}, + [259] = {.lex_state = 553}, + [260] = {.lex_state = 635}, + [261] = {.lex_state = 553}, + [262] = {.lex_state = 553}, + [263] = {.lex_state = 541}, + [264] = {.lex_state = 633}, + [265] = {.lex_state = 553}, + [266] = {.lex_state = 635}, + [267] = {.lex_state = 495}, + [268] = {.lex_state = 635}, + [269] = {.lex_state = 461}, + [270] = {.lex_state = 635}, + [271] = {.lex_state = 578}, + [272] = {.lex_state = 637}, + [273] = {.lex_state = 535}, + [274] = {.lex_state = 535}, + [275] = {.lex_state = 274}, + [276] = {.lex_state = 639, .external_lex_state = 3}, + [277] = {.lex_state = 639, .external_lex_state = 3}, + [278] = {.lex_state = 461}, + [279] = {.lex_state = 538}, + [280] = {.lex_state = 461}, + [281] = {.lex_state = 485}, + [282] = {.lex_state = 461}, + [283] = {.lex_state = 493}, + [284] = {.lex_state = 485}, + [285] = {.lex_state = 539}, + [286] = {.lex_state = 495, .external_lex_state = 3}, + [287] = {.lex_state = 639, .external_lex_state = 3}, + [288] = {.lex_state = 639, .external_lex_state = 3}, + [289] = {.lex_state = 545}, + [290] = {.lex_state = 546, .external_lex_state = 3}, + [291] = {.lex_state = 461}, + [292] = {.lex_state = 0, .external_lex_state = 2}, + [293] = {.lex_state = 453}, + [294] = {.lex_state = 495, .external_lex_state = 3}, + [295] = {.lex_state = 495, .external_lex_state = 3}, + [296] = {.lex_state = 553}, + [297] = {.lex_state = 461}, + [298] = {.lex_state = 495, .external_lex_state = 3}, + [299] = {.lex_state = 495, .external_lex_state = 3}, + [300] = {.lex_state = 274}, + [301] = {.lex_state = 461}, + [302] = {.lex_state = 553}, + [303] = {.lex_state = 461}, + [304] = {.lex_state = 495, .external_lex_state = 3}, + [305] = {.lex_state = 495, .external_lex_state = 3}, + [306] = {.lex_state = 553}, + [307] = {.lex_state = 553}, + [308] = {.lex_state = 495, .external_lex_state = 3}, + [309] = {.lex_state = 554}, + [310] = {.lex_state = 553}, + [311] = {.lex_state = 632}, + [312] = {.lex_state = 461}, + [313] = {.lex_state = 541}, + [314] = {.lex_state = 633}, + [315] = {.lex_state = 640}, + [316] = {.lex_state = 554}, + [317] = {.lex_state = 554}, + [318] = {.lex_state = 495}, + [319] = {.lex_state = 554}, + [320] = {.lex_state = 641}, + [321] = {.lex_state = 0, .external_lex_state = 3}, + [322] = {.lex_state = 453, .external_lex_state = 4}, + [323] = {.lex_state = 0, .external_lex_state = 3}, + [324] = {.lex_state = 274, .external_lex_state = 4}, + [325] = {.lex_state = 643}, + [326] = {.lex_state = 461}, + [327] = {.lex_state = 453}, + [328] = {.lex_state = 643}, + [329] = {.lex_state = 535}, + [330] = {.lex_state = 560}, + [331] = {.lex_state = 485}, + [332] = {.lex_state = 274, .external_lex_state = 2}, + [333] = {.lex_state = 485}, + [334] = {.lex_state = 461}, + [335] = {.lex_state = 493}, + [336] = {.lex_state = 461}, + [337] = {.lex_state = 485}, + [338] = {.lex_state = 539}, + [339] = {.lex_state = 541}, + [340] = {.lex_state = 556}, + [341] = {.lex_state = 643}, + [342] = {.lex_state = 453}, + [343] = {.lex_state = 572}, + [344] = {.lex_state = 643}, + [345] = {.lex_state = 644}, + [346] = {.lex_state = 553}, + [347] = {.lex_state = 495}, + [348] = {.lex_state = 568}, + [349] = {.lex_state = 553}, + [350] = {.lex_state = 632}, + [351] = {.lex_state = 541}, + [352] = {.lex_state = 633}, + [353] = {.lex_state = 634}, + [354] = {.lex_state = 0, .external_lex_state = 2}, + [355] = {.lex_state = 568}, + [356] = {.lex_state = 568}, + [357] = {.lex_state = 646}, + [358] = {.lex_state = 568}, + [359] = {.lex_state = 485}, + [360] = {.lex_state = 274, .external_lex_state = 2}, + [361] = {.lex_state = 453}, + [362] = {.lex_state = 649}, + [363] = {.lex_state = 535}, + [364] = {.lex_state = 485}, + [365] = {.lex_state = 541}, + [366] = {.lex_state = 543}, + [367] = {.lex_state = 485}, + [368] = {.lex_state = 485}, + [369] = {.lex_state = 572}, + [370] = {.lex_state = 651}, + [371] = {.lex_state = 553}, + [372] = {.lex_state = 553}, + [373] = {.lex_state = 553}, + [374] = {.lex_state = 553}, + [375] = {.lex_state = 653}, + [376] = {.lex_state = 461}, + [377] = {.lex_state = 653}, + [378] = {.lex_state = 538}, + [379] = {.lex_state = 461}, + [380] = {.lex_state = 461}, + [381] = {.lex_state = 485}, + [382] = {.lex_state = 493}, + [383] = {.lex_state = 485}, + [384] = {.lex_state = 539}, + [385] = {.lex_state = 653}, + [386] = {.lex_state = 653}, + [387] = {.lex_state = 646}, + [388] = {.lex_state = 274}, + [389] = {.lex_state = 495, .external_lex_state = 3}, + [390] = {.lex_state = 274}, + [391] = {.lex_state = 485}, + [392] = {.lex_state = 543}, + [393] = {.lex_state = 453}, + [394] = {.lex_state = 568}, + [395] = {.lex_state = 655}, + [396] = {.lex_state = 461}, + [397] = {.lex_state = 453}, + [398] = {.lex_state = 655}, + [399] = {.lex_state = 535}, + [400] = {.lex_state = 560}, + [401] = {.lex_state = 485}, + [402] = {.lex_state = 274, .external_lex_state = 2}, + [403] = {.lex_state = 485}, + [404] = {.lex_state = 461}, + [405] = {.lex_state = 493}, + [406] = {.lex_state = 461}, + [407] = {.lex_state = 485}, + [408] = {.lex_state = 539}, + [409] = {.lex_state = 541}, + [410] = {.lex_state = 655}, + [411] = {.lex_state = 585}, + [412] = {.lex_state = 572}, + [413] = {.lex_state = 655}, + [414] = {.lex_state = 585}, + [415] = {.lex_state = 582}, + [416] = {.lex_state = 461}, + [417] = {.lex_state = 538}, + [418] = {.lex_state = 493}, + [419] = {.lex_state = 485}, + [420] = {.lex_state = 539}, + [421] = {.lex_state = 453}, + [422] = {.lex_state = 535}, + [423] = {.lex_state = 485}, + [424] = {.lex_state = 274, .external_lex_state = 2}, + [425] = {.lex_state = 485}, + [426] = {.lex_state = 541}, + [427] = {.lex_state = 556}, + [428] = {.lex_state = 541}, + [429] = {.lex_state = 572}, + [430] = {.lex_state = 656}, + [431] = {.lex_state = 461}, + [432] = {.lex_state = 553}, + [433] = {.lex_state = 553}, + [434] = {.lex_state = 553}, + [435] = {.lex_state = 633}, + [436] = {.lex_state = 561}, + [437] = {.lex_state = 465, .external_lex_state = 3}, + [438] = {.lex_state = 461}, + [439] = {.lex_state = 538}, + [440] = {.lex_state = 493}, [441] = {.lex_state = 539}, - [442] = {.lex_state = 583}, - [443] = {.lex_state = 447}, - [444] = {.lex_state = 534}, - [445] = {.lex_state = 584}, - [446] = {.lex_state = 644}, - [447] = {.lex_state = 556}, - [448] = {.lex_state = 556}, - [449] = {.lex_state = 488}, - [450] = {.lex_state = 556}, - [451] = {.lex_state = 645}, - [452] = {.lex_state = 0, .external_lex_state = 3}, - [453] = {.lex_state = 451, .external_lex_state = 4}, - [454] = {.lex_state = 447}, - [455] = {.lex_state = 0, .external_lex_state = 3}, - [456] = {.lex_state = 271, .external_lex_state = 4}, - [457] = {.lex_state = 647, .external_lex_state = 3}, - [458] = {.lex_state = 271, .external_lex_state = 2}, - [459] = {.lex_state = 523}, - [460] = {.lex_state = 647, .external_lex_state = 3}, - [461] = {.lex_state = 451}, - [462] = {.lex_state = 447}, - [463] = {.lex_state = 531}, - [464] = {.lex_state = 478}, - [465] = {.lex_state = 486}, - [466] = {.lex_state = 478}, - [467] = {.lex_state = 447}, - [468] = {.lex_state = 532}, - [469] = {.lex_state = 478}, - [470] = {.lex_state = 534}, - [471] = {.lex_state = 447}, - [472] = {.lex_state = 539}, - [473] = {.lex_state = 488, .external_lex_state = 3}, - [474] = {.lex_state = 647, .external_lex_state = 3}, - [475] = {.lex_state = 538}, - [476] = {.lex_state = 0, .external_lex_state = 3}, - [477] = {.lex_state = 647, .external_lex_state = 3}, - [478] = {.lex_state = 539, .external_lex_state = 4}, - [479] = {.lex_state = 558}, - [480] = {.lex_state = 451}, - [481] = {.lex_state = 478}, - [482] = {.lex_state = 536}, - [483] = {.lex_state = 451}, - [484] = {.lex_state = 561}, - [485] = {.lex_state = 532}, - [486] = {.lex_state = 558}, - [487] = {.lex_state = 617}, - [488] = {.lex_state = 545}, - [489] = {.lex_state = 649}, - [490] = {.lex_state = 458, .external_lex_state = 3}, - [491] = {.lex_state = 536}, - [492] = {.lex_state = 651}, - [493] = {.lex_state = 534}, - [494] = {.lex_state = 447}, - [495] = {.lex_state = 558}, - [496] = {.lex_state = 539}, - [497] = {.lex_state = 539}, - [498] = {.lex_state = 534}, - [499] = {.lex_state = 584}, - [500] = {.lex_state = 644}, - [501] = {.lex_state = 488, .external_lex_state = 5}, - [502] = {.lex_state = 558}, - [503] = {.lex_state = 488}, - [504] = {.lex_state = 558}, - [505] = {.lex_state = 558}, - [506] = {.lex_state = 560}, - [507] = {.lex_state = 451}, - [508] = {.lex_state = 271}, - [509] = {.lex_state = 488, .external_lex_state = 3}, - [510] = {.lex_state = 271}, - [511] = {.lex_state = 653}, - [512] = {.lex_state = 539}, - [513] = {.lex_state = 583}, - [514] = {.lex_state = 534}, - [515] = {.lex_state = 584}, - [516] = {.lex_state = 585}, - [517] = {.lex_state = 653}, - [518] = {.lex_state = 653}, - [519] = {.lex_state = 561}, - [520] = {.lex_state = 653}, - [521] = {.lex_state = 478}, - [522] = {.lex_state = 488}, - [523] = {.lex_state = 536}, - [524] = {.lex_state = 451}, - [525] = {.lex_state = 561}, - [526] = {.lex_state = 447}, - [527] = {.lex_state = 531}, - [528] = {.lex_state = 486}, - [529] = {.lex_state = 478}, - [530] = {.lex_state = 532}, - [531] = {.lex_state = 617}, - [532] = {.lex_state = 560}, - [533] = {.lex_state = 534}, - [534] = {.lex_state = 655}, - [535] = {.lex_state = 447}, - [536] = {.lex_state = 655}, - [537] = {.lex_state = 531}, - [538] = {.lex_state = 478}, - [539] = {.lex_state = 486}, - [540] = {.lex_state = 478}, - [541] = {.lex_state = 447}, - [542] = {.lex_state = 532}, - [543] = {.lex_state = 447}, - [544] = {.lex_state = 655}, - [545] = {.lex_state = 655}, - [546] = {.lex_state = 561}, - [547] = {.lex_state = 447}, - [548] = {.lex_state = 545}, - [549] = {.lex_state = 447}, - [550] = {.lex_state = 657}, - [551] = {.lex_state = 657}, - [552] = {.lex_state = 447}, - [553] = {.lex_state = 531}, - [554] = {.lex_state = 478}, - [555] = {.lex_state = 486}, - [556] = {.lex_state = 478}, - [557] = {.lex_state = 447}, - [558] = {.lex_state = 532}, - [559] = {.lex_state = 447}, - [560] = {.lex_state = 657}, - [561] = {.lex_state = 538}, - [562] = {.lex_state = 657}, - [563] = {.lex_state = 447}, - [564] = {.lex_state = 531}, - [565] = {.lex_state = 486}, - [566] = {.lex_state = 532}, - [567] = {.lex_state = 658}, - [568] = {.lex_state = 660}, - [569] = {.lex_state = 658}, - [570] = {.lex_state = 658}, - [571] = {.lex_state = 556}, - [572] = {.lex_state = 556}, - [573] = {.lex_state = 451, .external_lex_state = 3}, - [574] = {.lex_state = 451, .external_lex_state = 3}, - [575] = {.lex_state = 451, .external_lex_state = 3}, - [576] = {.lex_state = 451}, - [577] = {.lex_state = 534}, - [578] = {.lex_state = 451}, - [579] = {.lex_state = 534}, - [580] = {.lex_state = 451}, - [581] = {.lex_state = 0, .external_lex_state = 2}, - [582] = {.lex_state = 661}, - [583] = {.lex_state = 0, .external_lex_state = 3}, - [584] = {.lex_state = 563, .external_lex_state = 4}, - [585] = {.lex_state = 488}, - [586] = {.lex_state = 661}, - [587] = {.lex_state = 545}, - [588] = {.lex_state = 556}, - [589] = {.lex_state = 488}, - [590] = {.lex_state = 536}, - [591] = {.lex_state = 558}, - [592] = {.lex_state = 574, .external_lex_state = 3}, - [593] = {.lex_state = 561}, - [594] = {.lex_state = 488, .external_lex_state = 3}, - [595] = {.lex_state = 271, .external_lex_state = 4}, - [596] = {.lex_state = 534}, - [597] = {.lex_state = 451}, - [598] = {.lex_state = 271}, - [599] = {.lex_state = 488, .external_lex_state = 3}, - [600] = {.lex_state = 271}, - [601] = {.lex_state = 663, .external_lex_state = 3}, - [602] = {.lex_state = 539}, - [603] = {.lex_state = 583}, - [604] = {.lex_state = 534}, - [605] = {.lex_state = 584}, - [606] = {.lex_state = 585}, - [607] = {.lex_state = 663, .external_lex_state = 3}, - [608] = {.lex_state = 663, .external_lex_state = 3}, - [609] = {.lex_state = 488, .external_lex_state = 3}, - [610] = {.lex_state = 663, .external_lex_state = 3}, - [611] = {.lex_state = 666, .external_lex_state = 3}, - [612] = {.lex_state = 536}, - [613] = {.lex_state = 451}, - [614] = {.lex_state = 666, .external_lex_state = 3}, - [615] = {.lex_state = 451}, - [616] = {.lex_state = 478}, - [617] = {.lex_state = 478}, - [618] = {.lex_state = 617}, - [619] = {.lex_state = 574, .external_lex_state = 3}, - [620] = {.lex_state = 534}, - [621] = {.lex_state = 447}, - [622] = {.lex_state = 668, .external_lex_state = 3}, - [623] = {.lex_state = 447}, - [624] = {.lex_state = 668, .external_lex_state = 3}, - [625] = {.lex_state = 531}, - [626] = {.lex_state = 478}, - [627] = {.lex_state = 486}, - [628] = {.lex_state = 478}, - [629] = {.lex_state = 447}, - [630] = {.lex_state = 532}, - [631] = {.lex_state = 447}, - [632] = {.lex_state = 668, .external_lex_state = 3}, - [633] = {.lex_state = 668, .external_lex_state = 3}, - [634] = {.lex_state = 488, .external_lex_state = 3}, - [635] = {.lex_state = 558}, - [636] = {.lex_state = 624}, - [637] = {.lex_state = 447}, - [638] = {.lex_state = 539}, - [639] = {.lex_state = 447}, - [640] = {.lex_state = 488, .external_lex_state = 3}, - [641] = {.lex_state = 670, .external_lex_state = 3}, - [642] = {.lex_state = 670, .external_lex_state = 3}, - [643] = {.lex_state = 447}, - [644] = {.lex_state = 531}, - [645] = {.lex_state = 478}, - [646] = {.lex_state = 486}, - [647] = {.lex_state = 478}, - [648] = {.lex_state = 447}, - [649] = {.lex_state = 532}, - [650] = {.lex_state = 447}, - [651] = {.lex_state = 670, .external_lex_state = 3}, - [652] = {.lex_state = 670, .external_lex_state = 3}, - [653] = {.lex_state = 488, .external_lex_state = 3}, - [654] = {.lex_state = 271}, - [655] = {.lex_state = 447}, - [656] = {.lex_state = 447}, - [657] = {.lex_state = 539}, - [658] = {.lex_state = 447}, - [659] = {.lex_state = 488, .external_lex_state = 3}, - [660] = {.lex_state = 671}, - [661] = {.lex_state = 671}, - [662] = {.lex_state = 447}, - [663] = {.lex_state = 531}, - [664] = {.lex_state = 478}, - [665] = {.lex_state = 486}, - [666] = {.lex_state = 478}, - [667] = {.lex_state = 447}, - [668] = {.lex_state = 532}, - [669] = {.lex_state = 447}, - [670] = {.lex_state = 488, .external_lex_state = 3}, - [671] = {.lex_state = 671}, - [672] = {.lex_state = 671}, - [673] = {.lex_state = 539}, - [674] = {.lex_state = 628}, - [675] = {.lex_state = 672}, - [676] = {.lex_state = 672}, - [677] = {.lex_state = 447}, - [678] = {.lex_state = 531}, - [679] = {.lex_state = 478}, - [680] = {.lex_state = 486}, - [681] = {.lex_state = 478}, - [682] = {.lex_state = 447}, - [683] = {.lex_state = 532}, - [684] = {.lex_state = 447}, - [685] = {.lex_state = 672}, - [686] = {.lex_state = 672}, - [687] = {.lex_state = 539}, - [688] = {.lex_state = 561}, - [689] = {.lex_state = 539}, + [442] = {.lex_state = 561}, + [443] = {.lex_state = 572}, + [444] = {.lex_state = 461}, + [445] = {.lex_state = 658}, + [446] = {.lex_state = 658}, + [447] = {.lex_state = 461}, + [448] = {.lex_state = 538}, + [449] = {.lex_state = 461}, + [450] = {.lex_state = 485}, + [451] = {.lex_state = 461}, + [452] = {.lex_state = 493}, + [453] = {.lex_state = 485}, + [454] = {.lex_state = 539}, + [455] = {.lex_state = 658}, + [456] = {.lex_state = 545}, + [457] = {.lex_state = 658}, + [458] = {.lex_state = 561}, + [459] = {.lex_state = 573, .external_lex_state = 3}, + [460] = {.lex_state = 453}, + [461] = {.lex_state = 485}, + [462] = {.lex_state = 568}, + [463] = {.lex_state = 582}, + [464] = {.lex_state = 543}, + [465] = {.lex_state = 453}, + [466] = {.lex_state = 585}, + [467] = {.lex_state = 573, .external_lex_state = 3}, + [468] = {.lex_state = 541}, + [469] = {.lex_state = 573, .external_lex_state = 3}, + [470] = {.lex_state = 553}, + [471] = {.lex_state = 554}, + [472] = {.lex_state = 568}, + [473] = {.lex_state = 659, .external_lex_state = 3}, + [474] = {.lex_state = 461}, + [475] = {.lex_state = 659, .external_lex_state = 3}, + [476] = {.lex_state = 538}, + [477] = {.lex_state = 461}, + [478] = {.lex_state = 461}, + [479] = {.lex_state = 485}, + [480] = {.lex_state = 493}, + [481] = {.lex_state = 485}, + [482] = {.lex_state = 539}, + [483] = {.lex_state = 659, .external_lex_state = 3}, + [484] = {.lex_state = 659, .external_lex_state = 3}, + [485] = {.lex_state = 495, .external_lex_state = 3}, + [486] = {.lex_state = 274}, + [487] = {.lex_state = 495, .external_lex_state = 3}, + [488] = {.lex_state = 274}, + [489] = {.lex_state = 543}, + [490] = {.lex_state = 578}, + [491] = {.lex_state = 582}, + [492] = {.lex_state = 575, .external_lex_state = 3}, + [493] = {.lex_state = 585}, + [494] = {.lex_state = 495, .external_lex_state = 3}, + [495] = {.lex_state = 274, .external_lex_state = 4}, + [496] = {.lex_state = 541}, + [497] = {.lex_state = 453}, + [498] = {.lex_state = 495}, + [499] = {.lex_state = 661, .external_lex_state = 3}, + [500] = {.lex_state = 543}, + [501] = {.lex_state = 453}, + [502] = {.lex_state = 661, .external_lex_state = 3}, + [503] = {.lex_state = 663, .external_lex_state = 3}, + [504] = {.lex_state = 553}, + [505] = {.lex_state = 632}, + [506] = {.lex_state = 541}, + [507] = {.lex_state = 633}, + [508] = {.lex_state = 634}, + [509] = {.lex_state = 663, .external_lex_state = 3}, + [510] = {.lex_state = 663, .external_lex_state = 3}, + [511] = {.lex_state = 495, .external_lex_state = 3}, + [512] = {.lex_state = 663, .external_lex_state = 3}, + [513] = {.lex_state = 453}, + [514] = {.lex_state = 485}, + [515] = {.lex_state = 485}, + [516] = {.lex_state = 575, .external_lex_state = 3}, + [517] = {.lex_state = 541}, + [518] = {.lex_state = 461}, + [519] = {.lex_state = 578}, + [520] = {.lex_state = 637}, + [521] = {.lex_state = 461}, + [522] = {.lex_state = 666, .external_lex_state = 3}, + [523] = {.lex_state = 666, .external_lex_state = 3}, + [524] = {.lex_state = 461}, + [525] = {.lex_state = 538}, + [526] = {.lex_state = 461}, + [527] = {.lex_state = 485}, + [528] = {.lex_state = 461}, + [529] = {.lex_state = 493}, + [530] = {.lex_state = 485}, + [531] = {.lex_state = 539}, + [532] = {.lex_state = 666, .external_lex_state = 3}, + [533] = {.lex_state = 666, .external_lex_state = 3}, + [534] = {.lex_state = 546, .external_lex_state = 3}, + [535] = {.lex_state = 461}, + [536] = {.lex_state = 553}, + [537] = {.lex_state = 461}, + [538] = {.lex_state = 495, .external_lex_state = 3}, + [539] = {.lex_state = 495, .external_lex_state = 3}, + [540] = {.lex_state = 274}, + [541] = {.lex_state = 461}, + [542] = {.lex_state = 553}, + [543] = {.lex_state = 461}, + [544] = {.lex_state = 495, .external_lex_state = 3}, + [545] = {.lex_state = 578}, + [546] = {.lex_state = 453}, + [547] = {.lex_state = 485}, + [548] = {.lex_state = 568}, + [549] = {.lex_state = 582}, + [550] = {.lex_state = 543}, + [551] = {.lex_state = 453}, + [552] = {.lex_state = 585}, + [553] = {.lex_state = 539}, + [554] = {.lex_state = 578}, + [555] = {.lex_state = 667}, + [556] = {.lex_state = 465, .external_lex_state = 3}, + [557] = {.lex_state = 543}, + [558] = {.lex_state = 669}, + [559] = {.lex_state = 541}, + [560] = {.lex_state = 461}, + [561] = {.lex_state = 578}, + [562] = {.lex_state = 553}, + [563] = {.lex_state = 553}, + [564] = {.lex_state = 541}, + [565] = {.lex_state = 633}, + [566] = {.lex_state = 640}, + [567] = {.lex_state = 495, .external_lex_state = 5}, + [568] = {.lex_state = 578}, + [569] = {.lex_state = 495}, + [570] = {.lex_state = 578}, + [571] = {.lex_state = 578}, + [572] = {.lex_state = 580}, + [573] = {.lex_state = 453}, + [574] = {.lex_state = 495}, + [575] = {.lex_state = 671}, + [576] = {.lex_state = 553}, + [577] = {.lex_state = 632}, + [578] = {.lex_state = 541}, + [579] = {.lex_state = 633}, + [580] = {.lex_state = 634}, + [581] = {.lex_state = 671}, + [582] = {.lex_state = 671}, + [583] = {.lex_state = 582}, + [584] = {.lex_state = 671}, + [585] = {.lex_state = 485}, + [586] = {.lex_state = 673}, + [587] = {.lex_state = 461}, + [588] = {.lex_state = 673}, + [589] = {.lex_state = 538}, + [590] = {.lex_state = 461}, + [591] = {.lex_state = 461}, + [592] = {.lex_state = 485}, + [593] = {.lex_state = 493}, + [594] = {.lex_state = 485}, + [595] = {.lex_state = 539}, + [596] = {.lex_state = 673}, + [597] = {.lex_state = 673}, + [598] = {.lex_state = 582}, + [599] = {.lex_state = 274}, + [600] = {.lex_state = 495, .external_lex_state = 3}, + [601] = {.lex_state = 274}, + [602] = {.lex_state = 543}, + [603] = {.lex_state = 453}, + [604] = {.lex_state = 568}, + [605] = {.lex_state = 585}, + [606] = {.lex_state = 582}, + [607] = {.lex_state = 461}, + [608] = {.lex_state = 538}, + [609] = {.lex_state = 493}, + [610] = {.lex_state = 485}, + [611] = {.lex_state = 539}, + [612] = {.lex_state = 580}, + [613] = {.lex_state = 541}, + [614] = {.lex_state = 461}, + [615] = {.lex_state = 461}, + [616] = {.lex_state = 538}, + [617] = {.lex_state = 493}, + [618] = {.lex_state = 539}, + [619] = {.lex_state = 461}, + [620] = {.lex_state = 675}, + [621] = {.lex_state = 675}, + [622] = {.lex_state = 461}, + [623] = {.lex_state = 538}, + [624] = {.lex_state = 461}, + [625] = {.lex_state = 485}, + [626] = {.lex_state = 461}, + [627] = {.lex_state = 493}, + [628] = {.lex_state = 485}, + [629] = {.lex_state = 539}, + [630] = {.lex_state = 675}, + [631] = {.lex_state = 545}, + [632] = {.lex_state = 675}, + [633] = {.lex_state = 584}, + [634] = {.lex_state = 453}, + [635] = {.lex_state = 495}, + [636] = {.lex_state = 676}, + [637] = {.lex_state = 553}, + [638] = {.lex_state = 632}, + [639] = {.lex_state = 541}, + [640] = {.lex_state = 633}, + [641] = {.lex_state = 634}, + [642] = {.lex_state = 676}, + [643] = {.lex_state = 676}, + [644] = {.lex_state = 585}, + [645] = {.lex_state = 676}, + [646] = {.lex_state = 485}, + [647] = {.lex_state = 678}, + [648] = {.lex_state = 461}, + [649] = {.lex_state = 678}, + [650] = {.lex_state = 538}, + [651] = {.lex_state = 461}, + [652] = {.lex_state = 461}, + [653] = {.lex_state = 485}, + [654] = {.lex_state = 493}, + [655] = {.lex_state = 485}, + [656] = {.lex_state = 539}, + [657] = {.lex_state = 678}, + [658] = {.lex_state = 678}, + [659] = {.lex_state = 585}, + [660] = {.lex_state = 274}, + [661] = {.lex_state = 495, .external_lex_state = 3}, + [662] = {.lex_state = 274}, + [663] = {.lex_state = 543}, + [664] = {.lex_state = 453}, + [665] = {.lex_state = 568}, + [666] = {.lex_state = 585}, + [667] = {.lex_state = 582}, + [668] = {.lex_state = 461}, + [669] = {.lex_state = 538}, + [670] = {.lex_state = 493}, + [671] = {.lex_state = 485}, + [672] = {.lex_state = 539}, + [673] = {.lex_state = 584}, + [674] = {.lex_state = 541}, + [675] = {.lex_state = 461}, + [676] = {.lex_state = 461}, + [677] = {.lex_state = 538}, + [678] = {.lex_state = 493}, + [679] = {.lex_state = 539}, + [680] = {.lex_state = 461}, + [681] = {.lex_state = 680}, + [682] = {.lex_state = 680}, + [683] = {.lex_state = 461}, + [684] = {.lex_state = 538}, + [685] = {.lex_state = 461}, + [686] = {.lex_state = 485}, + [687] = {.lex_state = 461}, + [688] = {.lex_state = 493}, + [689] = {.lex_state = 485}, [690] = {.lex_state = 539}, - [691] = {.lex_state = 539}, - [692] = {.lex_state = 539}, - [693] = {.lex_state = 577, .external_lex_state = 3}, - [694] = {.lex_state = 271, .external_lex_state = 2}, - [695] = {.lex_state = 523}, - [696] = {.lex_state = 451}, - [697] = {.lex_state = 478}, - [698] = {.lex_state = 478}, - [699] = {.lex_state = 534}, - [700] = {.lex_state = 539}, - [701] = {.lex_state = 478}, - [702] = {.lex_state = 488}, - [703] = {.lex_state = 673}, - [704] = {.lex_state = 271, .external_lex_state = 2}, - [705] = {.lex_state = 523}, - [706] = {.lex_state = 673}, - [707] = {.lex_state = 451}, - [708] = {.lex_state = 447}, - [709] = {.lex_state = 531}, - [710] = {.lex_state = 447}, - [711] = {.lex_state = 478}, - [712] = {.lex_state = 486}, - [713] = {.lex_state = 478}, - [714] = {.lex_state = 447}, - [715] = {.lex_state = 532}, - [716] = {.lex_state = 478}, - [717] = {.lex_state = 451}, - [718] = {.lex_state = 534}, - [719] = {.lex_state = 447}, - [720] = {.lex_state = 478}, - [721] = {.lex_state = 673}, - [722] = {.lex_state = 674}, - [723] = {.lex_state = 674}, - [724] = {.lex_state = 673}, - [725] = {.lex_state = 536}, - [726] = {.lex_state = 637}, - [727] = {.lex_state = 585}, - [728] = {.lex_state = 488, .external_lex_state = 3}, - [729] = {.lex_state = 644}, - [730] = {.lex_state = 447}, - [731] = {.lex_state = 586, .external_lex_state = 3}, - [732] = {.lex_state = 556}, - [733] = {.lex_state = 651, .external_lex_state = 3}, - [734] = {.lex_state = 447}, - [735] = {.lex_state = 651, .external_lex_state = 3}, - [736] = {.lex_state = 531}, - [737] = {.lex_state = 536}, - [738] = {.lex_state = 451}, - [739] = {.lex_state = 478}, - [740] = {.lex_state = 451}, - [741] = {.lex_state = 486}, - [742] = {.lex_state = 478}, - [743] = {.lex_state = 447}, - [744] = {.lex_state = 532}, - [745] = {.lex_state = 447}, - [746] = {.lex_state = 675, .external_lex_state = 3}, - [747] = {.lex_state = 651, .external_lex_state = 3}, - [748] = {.lex_state = 675, .external_lex_state = 3}, - [749] = {.lex_state = 675, .external_lex_state = 3}, - [750] = {.lex_state = 651, .external_lex_state = 3}, - [751] = {.lex_state = 651, .external_lex_state = 3}, - [752] = {.lex_state = 555}, - [753] = {.lex_state = 451}, - [754] = {.lex_state = 271}, - [755] = {.lex_state = 488, .external_lex_state = 3}, - [756] = {.lex_state = 271}, - [757] = {.lex_state = 539}, - [758] = {.lex_state = 583}, - [759] = {.lex_state = 584}, - [760] = {.lex_state = 585}, - [761] = {.lex_state = 702}, - [762] = {.lex_state = 628}, - [763] = {.lex_state = 478}, - [764] = {.lex_state = 488}, - [765] = {.lex_state = 536}, - [766] = {.lex_state = 451}, - [767] = {.lex_state = 561}, - [768] = {.lex_state = 447}, - [769] = {.lex_state = 531}, - [770] = {.lex_state = 486}, - [771] = {.lex_state = 478}, - [772] = {.lex_state = 532}, - [773] = {.lex_state = 617}, - [774] = {.lex_state = 555}, - [775] = {.lex_state = 534}, - [776] = {.lex_state = 704}, - [777] = {.lex_state = 447}, - [778] = {.lex_state = 704}, - [779] = {.lex_state = 531}, - [780] = {.lex_state = 478}, - [781] = {.lex_state = 486}, - [782] = {.lex_state = 478}, - [783] = {.lex_state = 447}, - [784] = {.lex_state = 532}, - [785] = {.lex_state = 447}, - [786] = {.lex_state = 704}, - [787] = {.lex_state = 706}, - [788] = {.lex_state = 628}, - [789] = {.lex_state = 447}, - [790] = {.lex_state = 545}, - [791] = {.lex_state = 447}, - [792] = {.lex_state = 538}, - [793] = {.lex_state = 538}, - [794] = {.lex_state = 447}, - [795] = {.lex_state = 531}, - [796] = {.lex_state = 478}, - [797] = {.lex_state = 486}, - [798] = {.lex_state = 478}, - [799] = {.lex_state = 447}, - [800] = {.lex_state = 532}, - [801] = {.lex_state = 447}, - [802] = {.lex_state = 538}, - [803] = {.lex_state = 538}, - [804] = {.lex_state = 538}, - [805] = {.lex_state = 447}, - [806] = {.lex_state = 531}, - [807] = {.lex_state = 486}, - [808] = {.lex_state = 532}, - [809] = {.lex_state = 271}, - [810] = {.lex_state = 488, .external_lex_state = 3}, - [811] = {.lex_state = 271}, - [812] = {.lex_state = 708}, - [813] = {.lex_state = 634}, - [814] = {.lex_state = 488}, - [815] = {.lex_state = 478}, - [816] = {.lex_state = 478}, - [817] = {.lex_state = 710}, - [818] = {.lex_state = 634}, - [819] = {.lex_state = 447}, - [820] = {.lex_state = 447}, - [821] = {.lex_state = 478}, - [822] = {.lex_state = 538}, - [823] = {.lex_state = 447}, - [824] = {.lex_state = 539}, - [825] = {.lex_state = 488, .external_lex_state = 5}, - [826] = {.lex_state = 488}, - [827] = {.lex_state = 451}, - [828] = {.lex_state = 615}, - [829] = {.lex_state = 451}, - [830] = {.lex_state = 271}, - [831] = {.lex_state = 488, .external_lex_state = 3}, - [832] = {.lex_state = 271}, - [833] = {.lex_state = 617}, - [834] = {.lex_state = 539}, - [835] = {.lex_state = 583}, - [836] = {.lex_state = 534}, - [837] = {.lex_state = 584}, - [838] = {.lex_state = 585}, - [839] = {.lex_state = 617}, - [840] = {.lex_state = 617}, - [841] = {.lex_state = 712}, - [842] = {.lex_state = 617}, - [843] = {.lex_state = 478}, - [844] = {.lex_state = 488}, - [845] = {.lex_state = 536}, - [846] = {.lex_state = 451}, - [847] = {.lex_state = 561}, - [848] = {.lex_state = 447}, - [849] = {.lex_state = 531}, - [850] = {.lex_state = 486}, - [851] = {.lex_state = 478}, - [852] = {.lex_state = 532}, - [853] = {.lex_state = 617}, - [854] = {.lex_state = 615}, - [855] = {.lex_state = 534}, - [856] = {.lex_state = 715}, - [857] = {.lex_state = 447}, - [858] = {.lex_state = 715}, - [859] = {.lex_state = 531}, - [860] = {.lex_state = 478}, - [861] = {.lex_state = 486}, - [862] = {.lex_state = 478}, - [863] = {.lex_state = 447}, - [864] = {.lex_state = 532}, - [865] = {.lex_state = 447}, - [866] = {.lex_state = 715}, - [867] = {.lex_state = 715}, - [868] = {.lex_state = 712}, - [869] = {.lex_state = 447}, - [870] = {.lex_state = 545}, - [871] = {.lex_state = 447}, - [872] = {.lex_state = 717}, - [873] = {.lex_state = 717}, - [874] = {.lex_state = 447}, - [875] = {.lex_state = 531}, - [876] = {.lex_state = 478}, - [877] = {.lex_state = 486}, - [878] = {.lex_state = 478}, - [879] = {.lex_state = 447}, - [880] = {.lex_state = 532}, - [881] = {.lex_state = 447}, - [882] = {.lex_state = 717}, - [883] = {.lex_state = 538}, - [884] = {.lex_state = 717}, - [885] = {.lex_state = 447}, - [886] = {.lex_state = 531}, - [887] = {.lex_state = 486}, - [888] = {.lex_state = 532}, - [889] = {.lex_state = 271}, - [890] = {.lex_state = 488, .external_lex_state = 3}, - [891] = {.lex_state = 271}, - [892] = {.lex_state = 718}, - [893] = {.lex_state = 637}, - [894] = {.lex_state = 488}, - [895] = {.lex_state = 478}, - [896] = {.lex_state = 478}, - [897] = {.lex_state = 720}, - [898] = {.lex_state = 637}, - [899] = {.lex_state = 447}, - [900] = {.lex_state = 447}, - [901] = {.lex_state = 458, .external_lex_state = 3}, - [902] = {.lex_state = 478}, - [903] = {.lex_state = 538}, - [904] = {.lex_state = 628}, - [905] = {.lex_state = 561}, - [906] = {.lex_state = 539}, - [907] = {.lex_state = 539}, - [908] = {.lex_state = 539}, - [909] = {.lex_state = 539}, - [910] = {.lex_state = 620}, - [911] = {.lex_state = 478}, - [912] = {.lex_state = 488}, - [913] = {.lex_state = 478}, - [914] = {.lex_state = 539}, - [915] = {.lex_state = 637}, - [916] = {.lex_state = 447}, - [917] = {.lex_state = 620}, - [918] = {.lex_state = 722, .external_lex_state = 3}, - [919] = {.lex_state = 447}, - [920] = {.lex_state = 722, .external_lex_state = 3}, - [921] = {.lex_state = 544}, - [922] = {.lex_state = 478}, - [923] = {.lex_state = 486}, - [924] = {.lex_state = 478}, - [925] = {.lex_state = 447}, - [926] = {.lex_state = 532}, - [927] = {.lex_state = 447}, - [928] = {.lex_state = 488}, - [929] = {.lex_state = 488, .external_lex_state = 3}, - [930] = {.lex_state = 488, .external_lex_state = 3}, - [931] = {.lex_state = 722, .external_lex_state = 3}, - [932] = {.lex_state = 555}, - [933] = {.lex_state = 722, .external_lex_state = 3}, - [934] = {.lex_state = 488}, - [935] = {.lex_state = 622, .external_lex_state = 3}, - [936] = {.lex_state = 451}, - [937] = {.lex_state = 478}, - [938] = {.lex_state = 536}, - [939] = {.lex_state = 451}, - [940] = {.lex_state = 561}, - [941] = {.lex_state = 617}, - [942] = {.lex_state = 622, .external_lex_state = 3}, - [943] = {.lex_state = 534}, - [944] = {.lex_state = 545}, - [945] = {.lex_state = 622, .external_lex_state = 3}, - [946] = {.lex_state = 539}, - [947] = {.lex_state = 447}, - [948] = {.lex_state = 488}, - [949] = {.lex_state = 624}, - [950] = {.lex_state = 539}, - [951] = {.lex_state = 539}, - [952] = {.lex_state = 536}, - [953] = {.lex_state = 534}, - [954] = {.lex_state = 584}, - [955] = {.lex_state = 539}, - [956] = {.lex_state = 488, .external_lex_state = 5}, - [957] = {.lex_state = 624}, - [958] = {.lex_state = 488}, - [959] = {.lex_state = 624}, - [960] = {.lex_state = 624}, - [961] = {.lex_state = 539}, - [962] = {.lex_state = 539}, - [963] = {.lex_state = 534}, - [964] = {.lex_state = 584}, - [965] = {.lex_state = 539}, - [966] = {.lex_state = 523}, - [967] = {.lex_state = 488}, - [968] = {.lex_state = 523}, - [969] = {.lex_state = 523}, - [970] = {.lex_state = 723, .external_lex_state = 3}, - [971] = {.lex_state = 271, .external_lex_state = 2}, - [972] = {.lex_state = 523}, - [973] = {.lex_state = 723, .external_lex_state = 3}, - [974] = {.lex_state = 451}, - [975] = {.lex_state = 447}, - [976] = {.lex_state = 531}, - [977] = {.lex_state = 478}, - [978] = {.lex_state = 486}, - [979] = {.lex_state = 478}, - [980] = {.lex_state = 447}, - [981] = {.lex_state = 532}, - [982] = {.lex_state = 478}, - [983] = {.lex_state = 534}, - [984] = {.lex_state = 447}, - [985] = {.lex_state = 539}, - [986] = {.lex_state = 723, .external_lex_state = 3}, - [987] = {.lex_state = 488, .external_lex_state = 3}, - [988] = {.lex_state = 538}, - [989] = {.lex_state = 723, .external_lex_state = 3}, - [990] = {.lex_state = 724, .external_lex_state = 3}, - [991] = {.lex_state = 447}, - [992] = {.lex_state = 271, .external_lex_state = 2}, - [993] = {.lex_state = 523}, - [994] = {.lex_state = 724, .external_lex_state = 3}, - [995] = {.lex_state = 544}, - [996] = {.lex_state = 451}, - [997] = {.lex_state = 478}, - [998] = {.lex_state = 486}, - [999] = {.lex_state = 478}, - [1000] = {.lex_state = 447}, - [1001] = {.lex_state = 532}, - [1002] = {.lex_state = 478}, - [1003] = {.lex_state = 534}, - [1004] = {.lex_state = 447}, - [1005] = {.lex_state = 488}, - [1006] = {.lex_state = 488, .external_lex_state = 3}, - [1007] = {.lex_state = 539}, - [1008] = {.lex_state = 724, .external_lex_state = 3}, - [1009] = {.lex_state = 555}, - [1010] = {.lex_state = 724, .external_lex_state = 3}, - [1011] = {.lex_state = 488}, - [1012] = {.lex_state = 488, .external_lex_state = 3}, - [1013] = {.lex_state = 626, .external_lex_state = 3}, - [1014] = {.lex_state = 451}, - [1015] = {.lex_state = 478}, - [1016] = {.lex_state = 536}, - [1017] = {.lex_state = 451}, - [1018] = {.lex_state = 561}, - [1019] = {.lex_state = 617}, - [1020] = {.lex_state = 626, .external_lex_state = 3}, - [1021] = {.lex_state = 534}, - [1022] = {.lex_state = 545}, - [1023] = {.lex_state = 478}, - [1024] = {.lex_state = 725, .external_lex_state = 3}, - [1025] = {.lex_state = 447}, - [1026] = {.lex_state = 271, .external_lex_state = 2}, - [1027] = {.lex_state = 523}, - [1028] = {.lex_state = 725, .external_lex_state = 3}, - [1029] = {.lex_state = 544}, - [1030] = {.lex_state = 451}, - [1031] = {.lex_state = 478}, - [1032] = {.lex_state = 486}, - [1033] = {.lex_state = 478}, - [1034] = {.lex_state = 447}, - [1035] = {.lex_state = 532}, - [1036] = {.lex_state = 478}, - [1037] = {.lex_state = 534}, - [1038] = {.lex_state = 447}, - [1039] = {.lex_state = 488}, - [1040] = {.lex_state = 488, .external_lex_state = 3}, - [1041] = {.lex_state = 539}, - [1042] = {.lex_state = 725, .external_lex_state = 3}, - [1043] = {.lex_state = 555}, - [1044] = {.lex_state = 725, .external_lex_state = 3}, - [1045] = {.lex_state = 488}, - [1046] = {.lex_state = 488, .external_lex_state = 3}, - [1047] = {.lex_state = 488}, - [1048] = {.lex_state = 488}, - [1049] = {.lex_state = 488, .external_lex_state = 3}, - [1050] = {.lex_state = 478}, - [1051] = {.lex_state = 704}, - [1052] = {.lex_state = 488, .external_lex_state = 3}, - [1053] = {.lex_state = 726, .external_lex_state = 3}, - [1054] = {.lex_state = 271, .external_lex_state = 2}, - [1055] = {.lex_state = 523}, - [1056] = {.lex_state = 726, .external_lex_state = 3}, - [1057] = {.lex_state = 451}, - [1058] = {.lex_state = 447}, - [1059] = {.lex_state = 531}, - [1060] = {.lex_state = 478}, - [1061] = {.lex_state = 486}, - [1062] = {.lex_state = 478}, - [1063] = {.lex_state = 447}, - [1064] = {.lex_state = 532}, - [1065] = {.lex_state = 478}, - [1066] = {.lex_state = 534}, - [1067] = {.lex_state = 447}, + [691] = {.lex_state = 680}, + [692] = {.lex_state = 545}, + [693] = {.lex_state = 680}, + [694] = {.lex_state = 681}, + [695] = {.lex_state = 683}, + [696] = {.lex_state = 681}, + [697] = {.lex_state = 681}, + [698] = {.lex_state = 554}, + [699] = {.lex_state = 554}, + [700] = {.lex_state = 453, .external_lex_state = 3}, + [701] = {.lex_state = 453, .external_lex_state = 3}, + [702] = {.lex_state = 453, .external_lex_state = 3}, + [703] = {.lex_state = 453}, + [704] = {.lex_state = 541}, + [705] = {.lex_state = 453}, + [706] = {.lex_state = 541}, + [707] = {.lex_state = 453}, + [708] = {.lex_state = 0, .external_lex_state = 2}, + [709] = {.lex_state = 684}, + [710] = {.lex_state = 684}, + [711] = {.lex_state = 0, .external_lex_state = 3}, + [712] = {.lex_state = 587, .external_lex_state = 4}, + [713] = {.lex_state = 495}, + [714] = {.lex_state = 686, .external_lex_state = 3}, + [715] = {.lex_state = 453}, + [716] = {.lex_state = 686, .external_lex_state = 3}, + [717] = {.lex_state = 535}, + [718] = {.lex_state = 461}, + [719] = {.lex_state = 538}, + [720] = {.lex_state = 461}, + [721] = {.lex_state = 485}, + [722] = {.lex_state = 274, .external_lex_state = 2}, + [723] = {.lex_state = 485}, + [724] = {.lex_state = 461}, + [725] = {.lex_state = 493}, + [726] = {.lex_state = 485}, + [727] = {.lex_state = 539}, + [728] = {.lex_state = 541}, + [729] = {.lex_state = 0, .external_lex_state = 3}, + [730] = {.lex_state = 686, .external_lex_state = 3}, + [731] = {.lex_state = 545}, + [732] = {.lex_state = 686, .external_lex_state = 3}, + [733] = {.lex_state = 553, .external_lex_state = 4}, + [734] = {.lex_state = 495, .external_lex_state = 3}, + [735] = {.lex_state = 553}, + [736] = {.lex_state = 461}, + [737] = {.lex_state = 598, .external_lex_state = 3}, + [738] = {.lex_state = 554}, + [739] = {.lex_state = 669, .external_lex_state = 3}, + [740] = {.lex_state = 461}, + [741] = {.lex_state = 669, .external_lex_state = 3}, + [742] = {.lex_state = 538}, + [743] = {.lex_state = 543}, + [744] = {.lex_state = 461}, + [745] = {.lex_state = 453}, + [746] = {.lex_state = 485}, + [747] = {.lex_state = 453}, + [748] = {.lex_state = 461}, + [749] = {.lex_state = 493}, + [750] = {.lex_state = 485}, + [751] = {.lex_state = 539}, + [752] = {.lex_state = 688, .external_lex_state = 3}, + [753] = {.lex_state = 688, .external_lex_state = 3}, + [754] = {.lex_state = 669, .external_lex_state = 3}, + [755] = {.lex_state = 669, .external_lex_state = 3}, + [756] = {.lex_state = 688, .external_lex_state = 3}, + [757] = {.lex_state = 669, .external_lex_state = 3}, + [758] = {.lex_state = 715}, + [759] = {.lex_state = 715}, + [760] = {.lex_state = 461}, + [761] = {.lex_state = 538}, + [762] = {.lex_state = 461}, + [763] = {.lex_state = 485}, + [764] = {.lex_state = 461}, + [765] = {.lex_state = 493}, + [766] = {.lex_state = 485}, + [767] = {.lex_state = 539}, + [768] = {.lex_state = 495, .external_lex_state = 3}, + [769] = {.lex_state = 715}, + [770] = {.lex_state = 715}, + [771] = {.lex_state = 553}, + [772] = {.lex_state = 644}, + [773] = {.lex_state = 716}, + [774] = {.lex_state = 716}, + [775] = {.lex_state = 461}, + [776] = {.lex_state = 538}, + [777] = {.lex_state = 461}, + [778] = {.lex_state = 485}, + [779] = {.lex_state = 461}, + [780] = {.lex_state = 493}, + [781] = {.lex_state = 485}, + [782] = {.lex_state = 539}, + [783] = {.lex_state = 716}, + [784] = {.lex_state = 716}, + [785] = {.lex_state = 553}, + [786] = {.lex_state = 585}, + [787] = {.lex_state = 553}, + [788] = {.lex_state = 553}, + [789] = {.lex_state = 553}, + [790] = {.lex_state = 553}, + [791] = {.lex_state = 627, .external_lex_state = 3}, + [792] = {.lex_state = 453}, + [793] = {.lex_state = 535}, + [794] = {.lex_state = 485}, + [795] = {.lex_state = 274, .external_lex_state = 2}, + [796] = {.lex_state = 485}, + [797] = {.lex_state = 541}, + [798] = {.lex_state = 495}, + [799] = {.lex_state = 553}, + [800] = {.lex_state = 485}, + [801] = {.lex_state = 717}, + [802] = {.lex_state = 453}, + [803] = {.lex_state = 717}, + [804] = {.lex_state = 535}, + [805] = {.lex_state = 453}, + [806] = {.lex_state = 461}, + [807] = {.lex_state = 538}, + [808] = {.lex_state = 461}, + [809] = {.lex_state = 461}, + [810] = {.lex_state = 485}, + [811] = {.lex_state = 274, .external_lex_state = 2}, + [812] = {.lex_state = 485}, + [813] = {.lex_state = 493}, + [814] = {.lex_state = 461}, + [815] = {.lex_state = 485}, + [816] = {.lex_state = 539}, + [817] = {.lex_state = 541}, + [818] = {.lex_state = 718}, + [819] = {.lex_state = 717}, + [820] = {.lex_state = 718}, + [821] = {.lex_state = 543}, + [822] = {.lex_state = 717}, + [823] = {.lex_state = 485}, + [824] = {.lex_state = 656}, + [825] = {.lex_state = 634}, + [826] = {.lex_state = 495, .external_lex_state = 3}, + [827] = {.lex_state = 640}, + [828] = {.lex_state = 461}, + [829] = {.lex_state = 572}, + [830] = {.lex_state = 453}, + [831] = {.lex_state = 495}, + [832] = {.lex_state = 553}, + [833] = {.lex_state = 632}, + [834] = {.lex_state = 633}, + [835] = {.lex_state = 634}, + [836] = {.lex_state = 719}, + [837] = {.lex_state = 644}, + [838] = {.lex_state = 485}, + [839] = {.lex_state = 721}, + [840] = {.lex_state = 461}, + [841] = {.lex_state = 721}, + [842] = {.lex_state = 538}, + [843] = {.lex_state = 461}, + [844] = {.lex_state = 461}, + [845] = {.lex_state = 485}, + [846] = {.lex_state = 493}, + [847] = {.lex_state = 485}, + [848] = {.lex_state = 539}, + [849] = {.lex_state = 721}, + [850] = {.lex_state = 723}, + [851] = {.lex_state = 644}, + [852] = {.lex_state = 274}, + [853] = {.lex_state = 495, .external_lex_state = 3}, + [854] = {.lex_state = 274}, + [855] = {.lex_state = 543}, + [856] = {.lex_state = 453}, + [857] = {.lex_state = 568}, + [858] = {.lex_state = 585}, + [859] = {.lex_state = 582}, + [860] = {.lex_state = 461}, + [861] = {.lex_state = 538}, + [862] = {.lex_state = 493}, + [863] = {.lex_state = 485}, + [864] = {.lex_state = 539}, + [865] = {.lex_state = 572}, + [866] = {.lex_state = 541}, + [867] = {.lex_state = 461}, + [868] = {.lex_state = 461}, + [869] = {.lex_state = 538}, + [870] = {.lex_state = 493}, + [871] = {.lex_state = 539}, + [872] = {.lex_state = 461}, + [873] = {.lex_state = 545}, + [874] = {.lex_state = 545}, + [875] = {.lex_state = 461}, + [876] = {.lex_state = 538}, + [877] = {.lex_state = 461}, + [878] = {.lex_state = 485}, + [879] = {.lex_state = 461}, + [880] = {.lex_state = 493}, + [881] = {.lex_state = 485}, + [882] = {.lex_state = 539}, + [883] = {.lex_state = 545}, + [884] = {.lex_state = 545}, + [885] = {.lex_state = 545}, + [886] = {.lex_state = 495}, + [887] = {.lex_state = 725}, + [888] = {.lex_state = 651}, + [889] = {.lex_state = 485}, + [890] = {.lex_state = 727}, + [891] = {.lex_state = 651}, + [892] = {.lex_state = 274}, + [893] = {.lex_state = 495, .external_lex_state = 3}, + [894] = {.lex_state = 274}, + [895] = {.lex_state = 485}, + [896] = {.lex_state = 461}, + [897] = {.lex_state = 461}, + [898] = {.lex_state = 485}, + [899] = {.lex_state = 545}, + [900] = {.lex_state = 461}, + [901] = {.lex_state = 553}, + [902] = {.lex_state = 495, .external_lex_state = 5}, + [903] = {.lex_state = 495}, + [904] = {.lex_state = 453}, + [905] = {.lex_state = 495}, + [906] = {.lex_state = 729}, + [907] = {.lex_state = 656}, + [908] = {.lex_state = 485}, + [909] = {.lex_state = 731}, + [910] = {.lex_state = 656}, + [911] = {.lex_state = 274}, + [912] = {.lex_state = 495, .external_lex_state = 3}, + [913] = {.lex_state = 274}, + [914] = {.lex_state = 485}, + [915] = {.lex_state = 461}, + [916] = {.lex_state = 465, .external_lex_state = 3}, + [917] = {.lex_state = 461}, + [918] = {.lex_state = 485}, + [919] = {.lex_state = 545}, + [920] = {.lex_state = 644}, + [921] = {.lex_state = 585}, + [922] = {.lex_state = 553}, + [923] = {.lex_state = 553}, + [924] = {.lex_state = 553}, + [925] = {.lex_state = 553}, + [926] = {.lex_state = 635}, + [927] = {.lex_state = 495}, + [928] = {.lex_state = 485}, + [929] = {.lex_state = 485}, + [930] = {.lex_state = 553}, + [931] = {.lex_state = 656}, + [932] = {.lex_state = 461}, + [933] = {.lex_state = 635}, + [934] = {.lex_state = 733, .external_lex_state = 3}, + [935] = {.lex_state = 461}, + [936] = {.lex_state = 733, .external_lex_state = 3}, + [937] = {.lex_state = 560}, + [938] = {.lex_state = 485}, + [939] = {.lex_state = 461}, + [940] = {.lex_state = 493}, + [941] = {.lex_state = 461}, + [942] = {.lex_state = 485}, + [943] = {.lex_state = 539}, + [944] = {.lex_state = 733, .external_lex_state = 3}, + [945] = {.lex_state = 495, .external_lex_state = 3}, + [946] = {.lex_state = 572}, + [947] = {.lex_state = 495}, + [948] = {.lex_state = 733, .external_lex_state = 3}, + [949] = {.lex_state = 495}, + [950] = {.lex_state = 495, .external_lex_state = 3}, + [951] = {.lex_state = 461}, + [952] = {.lex_state = 495}, + [953] = {.lex_state = 637}, + [954] = {.lex_state = 553}, + [955] = {.lex_state = 553}, + [956] = {.lex_state = 543}, + [957] = {.lex_state = 541}, + [958] = {.lex_state = 633}, + [959] = {.lex_state = 553}, + [960] = {.lex_state = 495, .external_lex_state = 5}, + [961] = {.lex_state = 637}, + [962] = {.lex_state = 495}, + [963] = {.lex_state = 637}, + [964] = {.lex_state = 637}, + [965] = {.lex_state = 553}, + [966] = {.lex_state = 553}, + [967] = {.lex_state = 541}, + [968] = {.lex_state = 633}, + [969] = {.lex_state = 553}, + [970] = {.lex_state = 535}, + [971] = {.lex_state = 495}, + [972] = {.lex_state = 535}, + [973] = {.lex_state = 535}, + [974] = {.lex_state = 639, .external_lex_state = 3}, + [975] = {.lex_state = 453}, + [976] = {.lex_state = 485}, + [977] = {.lex_state = 568}, + [978] = {.lex_state = 543}, + [979] = {.lex_state = 453}, + [980] = {.lex_state = 582}, + [981] = {.lex_state = 585}, + [982] = {.lex_state = 639, .external_lex_state = 3}, + [983] = {.lex_state = 541}, + [984] = {.lex_state = 485}, + [985] = {.lex_state = 734, .external_lex_state = 3}, + [986] = {.lex_state = 461}, + [987] = {.lex_state = 453}, + [988] = {.lex_state = 734, .external_lex_state = 3}, + [989] = {.lex_state = 535}, + [990] = {.lex_state = 560}, + [991] = {.lex_state = 485}, + [992] = {.lex_state = 274, .external_lex_state = 2}, + [993] = {.lex_state = 485}, + [994] = {.lex_state = 461}, + [995] = {.lex_state = 493}, + [996] = {.lex_state = 461}, + [997] = {.lex_state = 485}, + [998] = {.lex_state = 539}, + [999] = {.lex_state = 541}, + [1000] = {.lex_state = 734, .external_lex_state = 3}, + [1001] = {.lex_state = 495, .external_lex_state = 3}, + [1002] = {.lex_state = 572}, + [1003] = {.lex_state = 495}, + [1004] = {.lex_state = 734, .external_lex_state = 3}, + [1005] = {.lex_state = 495}, + [1006] = {.lex_state = 553}, + [1007] = {.lex_state = 495, .external_lex_state = 3}, + [1008] = {.lex_state = 495}, + [1009] = {.lex_state = 495}, + [1010] = {.lex_state = 495, .external_lex_state = 3}, + [1011] = {.lex_state = 735, .external_lex_state = 3}, + [1012] = {.lex_state = 453}, + [1013] = {.lex_state = 735, .external_lex_state = 3}, + [1014] = {.lex_state = 535}, + [1015] = {.lex_state = 461}, + [1016] = {.lex_state = 538}, + [1017] = {.lex_state = 461}, + [1018] = {.lex_state = 485}, + [1019] = {.lex_state = 274, .external_lex_state = 2}, + [1020] = {.lex_state = 485}, + [1021] = {.lex_state = 461}, + [1022] = {.lex_state = 493}, + [1023] = {.lex_state = 485}, + [1024] = {.lex_state = 539}, + [1025] = {.lex_state = 541}, + [1026] = {.lex_state = 735, .external_lex_state = 3}, + [1027] = {.lex_state = 545}, + [1028] = {.lex_state = 735, .external_lex_state = 3}, + [1029] = {.lex_state = 495, .external_lex_state = 3}, + [1030] = {.lex_state = 553}, + [1031] = {.lex_state = 736, .external_lex_state = 3}, + [1032] = {.lex_state = 461}, + [1033] = {.lex_state = 453}, + [1034] = {.lex_state = 736, .external_lex_state = 3}, + [1035] = {.lex_state = 535}, + [1036] = {.lex_state = 560}, + [1037] = {.lex_state = 485}, + [1038] = {.lex_state = 274, .external_lex_state = 2}, + [1039] = {.lex_state = 485}, + [1040] = {.lex_state = 461}, + [1041] = {.lex_state = 493}, + [1042] = {.lex_state = 461}, + [1043] = {.lex_state = 485}, + [1044] = {.lex_state = 539}, + [1045] = {.lex_state = 541}, + [1046] = {.lex_state = 736, .external_lex_state = 3}, + [1047] = {.lex_state = 495, .external_lex_state = 3}, + [1048] = {.lex_state = 572}, + [1049] = {.lex_state = 495}, + [1050] = {.lex_state = 736, .external_lex_state = 3}, + [1051] = {.lex_state = 495}, + [1052] = {.lex_state = 553}, + [1053] = {.lex_state = 495, .external_lex_state = 3}, + [1054] = {.lex_state = 495, .external_lex_state = 3}, + [1055] = {.lex_state = 737, .external_lex_state = 3}, + [1056] = {.lex_state = 453}, + [1057] = {.lex_state = 737, .external_lex_state = 3}, + [1058] = {.lex_state = 535}, + [1059] = {.lex_state = 461}, + [1060] = {.lex_state = 538}, + [1061] = {.lex_state = 461}, + [1062] = {.lex_state = 485}, + [1063] = {.lex_state = 274, .external_lex_state = 2}, + [1064] = {.lex_state = 485}, + [1065] = {.lex_state = 461}, + [1066] = {.lex_state = 493}, + [1067] = {.lex_state = 485}, [1068] = {.lex_state = 539}, - [1069] = {.lex_state = 726, .external_lex_state = 3}, - [1070] = {.lex_state = 538}, - [1071] = {.lex_state = 726, .external_lex_state = 3}, - [1072] = {.lex_state = 727, .external_lex_state = 3}, - [1073] = {.lex_state = 447}, - [1074] = {.lex_state = 271, .external_lex_state = 2}, - [1075] = {.lex_state = 523}, - [1076] = {.lex_state = 727, .external_lex_state = 3}, - [1077] = {.lex_state = 544}, - [1078] = {.lex_state = 451}, - [1079] = {.lex_state = 478}, - [1080] = {.lex_state = 486}, - [1081] = {.lex_state = 478}, - [1082] = {.lex_state = 447}, - [1083] = {.lex_state = 532}, - [1084] = {.lex_state = 478}, - [1085] = {.lex_state = 534}, - [1086] = {.lex_state = 447}, - [1087] = {.lex_state = 488}, - [1088] = {.lex_state = 539}, - [1089] = {.lex_state = 727, .external_lex_state = 3}, - [1090] = {.lex_state = 555}, - [1091] = {.lex_state = 727, .external_lex_state = 3}, - [1092] = {.lex_state = 488}, - [1093] = {.lex_state = 488, .external_lex_state = 3}, - [1094] = {.lex_state = 627}, - [1095] = {.lex_state = 451}, - [1096] = {.lex_state = 271}, - [1097] = {.lex_state = 488, .external_lex_state = 3}, - [1098] = {.lex_state = 271}, - [1099] = {.lex_state = 728}, - [1100] = {.lex_state = 539}, - [1101] = {.lex_state = 583}, - [1102] = {.lex_state = 534}, - [1103] = {.lex_state = 584}, - [1104] = {.lex_state = 585}, - [1105] = {.lex_state = 728}, - [1106] = {.lex_state = 730}, - [1107] = {.lex_state = 628}, - [1108] = {.lex_state = 728}, - [1109] = {.lex_state = 478}, - [1110] = {.lex_state = 488}, - [1111] = {.lex_state = 536}, - [1112] = {.lex_state = 451}, - [1113] = {.lex_state = 561}, - [1114] = {.lex_state = 447}, - [1115] = {.lex_state = 531}, - [1116] = {.lex_state = 486}, - [1117] = {.lex_state = 478}, - [1118] = {.lex_state = 532}, - [1119] = {.lex_state = 617}, - [1120] = {.lex_state = 627}, - [1121] = {.lex_state = 534}, - [1122] = {.lex_state = 732}, - [1123] = {.lex_state = 447}, - [1124] = {.lex_state = 732}, - [1125] = {.lex_state = 531}, - [1126] = {.lex_state = 478}, - [1127] = {.lex_state = 486}, - [1128] = {.lex_state = 478}, - [1129] = {.lex_state = 447}, - [1130] = {.lex_state = 532}, - [1131] = {.lex_state = 447}, - [1132] = {.lex_state = 732}, - [1133] = {.lex_state = 734}, - [1134] = {.lex_state = 628}, - [1135] = {.lex_state = 447}, - [1136] = {.lex_state = 545}, - [1137] = {.lex_state = 540}, - [1138] = {.lex_state = 447}, - [1139] = {.lex_state = 531}, - [1140] = {.lex_state = 486}, - [1141] = {.lex_state = 532}, - [1142] = {.lex_state = 447}, - [1143] = {.lex_state = 488, .external_lex_state = 3}, - [1144] = {.lex_state = 271, .external_lex_state = 4}, - [1145] = {.lex_state = 447}, - [1146] = {.lex_state = 488, .external_lex_state = 3}, - [1147] = {.lex_state = 736}, - [1148] = {.lex_state = 628}, - [1149] = {.lex_state = 561}, - [1150] = {.lex_state = 539}, - [1151] = {.lex_state = 539}, - [1152] = {.lex_state = 539}, - [1153] = {.lex_state = 539}, - [1154] = {.lex_state = 630}, - [1155] = {.lex_state = 478}, - [1156] = {.lex_state = 488}, - [1157] = {.lex_state = 536}, - [1158] = {.lex_state = 637}, - [1159] = {.lex_state = 585}, - [1160] = {.lex_state = 549}, - [1161] = {.lex_state = 644}, - [1162] = {.lex_state = 447}, - [1163] = {.lex_state = 488}, - [1164] = {.lex_state = 271}, - [1165] = {.lex_state = 488, .external_lex_state = 3}, - [1166] = {.lex_state = 271}, - [1167] = {.lex_state = 738}, - [1168] = {.lex_state = 634}, - [1169] = {.lex_state = 586}, - [1170] = {.lex_state = 536}, - [1171] = {.lex_state = 586}, - [1172] = {.lex_state = 478}, - [1173] = {.lex_state = 478}, - [1174] = {.lex_state = 740}, - [1175] = {.lex_state = 634}, - [1176] = {.lex_state = 447}, - [1177] = {.lex_state = 447}, - [1178] = {.lex_state = 545}, - [1179] = {.lex_state = 447}, - [1180] = {.lex_state = 488}, - [1181] = {.lex_state = 488}, - [1182] = {.lex_state = 488}, - [1183] = {.lex_state = 488}, - [1184] = {.lex_state = 539, .external_lex_state = 4}, - [1185] = {.lex_state = 540}, - [1186] = {.lex_state = 534}, - [1187] = {.lex_state = 536}, - [1188] = {.lex_state = 636}, - [1189] = {.lex_state = 451}, - [1190] = {.lex_state = 271}, - [1191] = {.lex_state = 488, .external_lex_state = 3}, - [1192] = {.lex_state = 271}, - [1193] = {.lex_state = 742}, - [1194] = {.lex_state = 539}, - [1195] = {.lex_state = 583}, - [1196] = {.lex_state = 534}, - [1197] = {.lex_state = 584}, - [1198] = {.lex_state = 585}, - [1199] = {.lex_state = 742}, - [1200] = {.lex_state = 742}, - [1201] = {.lex_state = 561}, - [1202] = {.lex_state = 742}, - [1203] = {.lex_state = 478}, - [1204] = {.lex_state = 488}, - [1205] = {.lex_state = 536}, - [1206] = {.lex_state = 451}, - [1207] = {.lex_state = 561}, - [1208] = {.lex_state = 447}, - [1209] = {.lex_state = 531}, - [1210] = {.lex_state = 486}, - [1211] = {.lex_state = 478}, - [1212] = {.lex_state = 532}, - [1213] = {.lex_state = 617}, - [1214] = {.lex_state = 636}, - [1215] = {.lex_state = 534}, - [1216] = {.lex_state = 744}, - [1217] = {.lex_state = 447}, - [1218] = {.lex_state = 744}, - [1219] = {.lex_state = 531}, - [1220] = {.lex_state = 478}, - [1221] = {.lex_state = 486}, - [1222] = {.lex_state = 478}, - [1223] = {.lex_state = 447}, - [1224] = {.lex_state = 532}, - [1225] = {.lex_state = 447}, - [1226] = {.lex_state = 744}, - [1227] = {.lex_state = 744}, - [1228] = {.lex_state = 561}, - [1229] = {.lex_state = 447}, - [1230] = {.lex_state = 545}, - [1231] = {.lex_state = 447}, - [1232] = {.lex_state = 531}, - [1233] = {.lex_state = 486}, - [1234] = {.lex_state = 532}, - [1235] = {.lex_state = 447}, - [1236] = {.lex_state = 628}, - [1237] = {.lex_state = 634}, - [1238] = {.lex_state = 561}, - [1239] = {.lex_state = 637}, - [1240] = {.lex_state = 271}, - [1241] = {.lex_state = 488, .external_lex_state = 3}, - [1242] = {.lex_state = 271}, - [1243] = {.lex_state = 746}, - [1244] = {.lex_state = 637}, - [1245] = {.lex_state = 488}, - [1246] = {.lex_state = 478}, - [1247] = {.lex_state = 478}, - [1248] = {.lex_state = 748}, - [1249] = {.lex_state = 637}, - [1250] = {.lex_state = 447}, - [1251] = {.lex_state = 540}, - [1252] = {.lex_state = 447}, - [1253] = {.lex_state = 639}, - [1254] = {.lex_state = 451}, - [1255] = {.lex_state = 478}, - [1256] = {.lex_state = 536}, - [1257] = {.lex_state = 451}, - [1258] = {.lex_state = 561}, - [1259] = {.lex_state = 617}, - [1260] = {.lex_state = 639}, - [1261] = {.lex_state = 534}, - [1262] = {.lex_state = 545}, - [1263] = {.lex_state = 639}, - [1264] = {.lex_state = 539}, - [1265] = {.lex_state = 549}, - [1266] = {.lex_state = 549}, - [1267] = {.lex_state = 643}, - [1268] = {.lex_state = 451}, - [1269] = {.lex_state = 478}, - [1270] = {.lex_state = 536}, - [1271] = {.lex_state = 451}, - [1272] = {.lex_state = 561}, - [1273] = {.lex_state = 617}, - [1274] = {.lex_state = 643}, - [1275] = {.lex_state = 534}, - [1276] = {.lex_state = 545}, - [1277] = {.lex_state = 478}, - [1278] = {.lex_state = 488}, - [1279] = {.lex_state = 488}, - [1280] = {.lex_state = 488}, - [1281] = {.lex_state = 488}, - [1282] = {.lex_state = 628}, - [1283] = {.lex_state = 561}, - [1284] = {.lex_state = 555, .external_lex_state = 3}, - [1285] = {.lex_state = 447}, - [1286] = {.lex_state = 271, .external_lex_state = 2}, - [1287] = {.lex_state = 523}, - [1288] = {.lex_state = 555, .external_lex_state = 3}, - [1289] = {.lex_state = 544}, - [1290] = {.lex_state = 451}, - [1291] = {.lex_state = 478}, - [1292] = {.lex_state = 486}, - [1293] = {.lex_state = 478}, - [1294] = {.lex_state = 447}, - [1295] = {.lex_state = 532}, - [1296] = {.lex_state = 478}, - [1297] = {.lex_state = 534}, - [1298] = {.lex_state = 447}, - [1299] = {.lex_state = 488}, - [1300] = {.lex_state = 488, .external_lex_state = 3}, - [1301] = {.lex_state = 539}, - [1302] = {.lex_state = 555, .external_lex_state = 3}, - [1303] = {.lex_state = 555}, - [1304] = {.lex_state = 555, .external_lex_state = 3}, - [1305] = {.lex_state = 488}, - [1306] = {.lex_state = 539}, - [1307] = {.lex_state = 539}, - [1308] = {.lex_state = 539}, - [1309] = {.lex_state = 539}, - [1310] = {.lex_state = 556}, - [1311] = {.lex_state = 478}, - [1312] = {.lex_state = 488}, - [1313] = {.lex_state = 637}, - [1314] = {.lex_state = 447}, - [1315] = {.lex_state = 447}, - [1316] = {.lex_state = 645}, - [1317] = {.lex_state = 451, .external_lex_state = 4}, - [1318] = {.lex_state = 488, .external_lex_state = 3}, - [1319] = {.lex_state = 451, .external_lex_state = 4}, - [1320] = {.lex_state = 488, .external_lex_state = 3}, - [1321] = {.lex_state = 271, .external_lex_state = 4}, - [1322] = {.lex_state = 488, .external_lex_state = 3}, - [1323] = {.lex_state = 271, .external_lex_state = 4}, - [1324] = {.lex_state = 271}, - [1325] = {.lex_state = 488, .external_lex_state = 3}, - [1326] = {.lex_state = 271}, - [1327] = {.lex_state = 750, .external_lex_state = 3}, - [1328] = {.lex_state = 539}, - [1329] = {.lex_state = 583}, - [1330] = {.lex_state = 534}, - [1331] = {.lex_state = 584}, - [1332] = {.lex_state = 585}, - [1333] = {.lex_state = 750, .external_lex_state = 3}, - [1334] = {.lex_state = 750, .external_lex_state = 3}, - [1335] = {.lex_state = 488, .external_lex_state = 3}, - [1336] = {.lex_state = 750, .external_lex_state = 3}, - [1337] = {.lex_state = 488}, - [1338] = {.lex_state = 647, .external_lex_state = 3}, - [1339] = {.lex_state = 451}, - [1340] = {.lex_state = 478}, - [1341] = {.lex_state = 536}, - [1342] = {.lex_state = 451}, - [1343] = {.lex_state = 561}, - [1344] = {.lex_state = 617}, - [1345] = {.lex_state = 647, .external_lex_state = 3}, - [1346] = {.lex_state = 534}, - [1347] = {.lex_state = 752, .external_lex_state = 3}, - [1348] = {.lex_state = 447}, - [1349] = {.lex_state = 752, .external_lex_state = 3}, - [1350] = {.lex_state = 531}, - [1351] = {.lex_state = 478}, - [1352] = {.lex_state = 486}, - [1353] = {.lex_state = 478}, - [1354] = {.lex_state = 447}, - [1355] = {.lex_state = 532}, - [1356] = {.lex_state = 447}, - [1357] = {.lex_state = 752, .external_lex_state = 3}, - [1358] = {.lex_state = 752, .external_lex_state = 3}, - [1359] = {.lex_state = 488, .external_lex_state = 3}, - [1360] = {.lex_state = 447}, - [1361] = {.lex_state = 545}, - [1362] = {.lex_state = 0, .external_lex_state = 2}, - [1363] = {.lex_state = 539, .external_lex_state = 4}, - [1364] = {.lex_state = 488, .external_lex_state = 3}, - [1365] = {.lex_state = 539, .external_lex_state = 4}, - [1366] = {.lex_state = 558}, - [1367] = {.lex_state = 558}, - [1368] = {.lex_state = 534}, - [1369] = {.lex_state = 536}, - [1370] = {.lex_state = 558}, - [1371] = {.lex_state = 534}, - [1372] = {.lex_state = 447}, - [1373] = {.lex_state = 536}, - [1374] = {.lex_state = 536}, - [1375] = {.lex_state = 754}, - [1376] = {.lex_state = 447}, - [1377] = {.lex_state = 754}, - [1378] = {.lex_state = 531}, - [1379] = {.lex_state = 451}, - [1380] = {.lex_state = 478}, - [1381] = {.lex_state = 451}, - [1382] = {.lex_state = 486}, - [1383] = {.lex_state = 478}, - [1384] = {.lex_state = 447}, - [1385] = {.lex_state = 532}, - [1386] = {.lex_state = 447}, - [1387] = {.lex_state = 756}, - [1388] = {.lex_state = 754}, - [1389] = {.lex_state = 758}, - [1390] = {.lex_state = 758}, - [1391] = {.lex_state = 651}, - [1392] = {.lex_state = 458, .external_lex_state = 3}, - [1393] = {.lex_state = 760, .external_lex_state = 3}, - [1394] = {.lex_state = 447}, - [1395] = {.lex_state = 760, .external_lex_state = 3}, - [1396] = {.lex_state = 544}, - [1397] = {.lex_state = 478}, - [1398] = {.lex_state = 486}, - [1399] = {.lex_state = 478}, - [1400] = {.lex_state = 447}, - [1401] = {.lex_state = 532}, - [1402] = {.lex_state = 447}, - [1403] = {.lex_state = 488}, - [1404] = {.lex_state = 488, .external_lex_state = 3}, - [1405] = {.lex_state = 760, .external_lex_state = 3}, - [1406] = {.lex_state = 555}, - [1407] = {.lex_state = 760, .external_lex_state = 3}, - [1408] = {.lex_state = 488}, - [1409] = {.lex_state = 628}, - [1410] = {.lex_state = 561}, - [1411] = {.lex_state = 539}, - [1412] = {.lex_state = 539}, - [1413] = {.lex_state = 539}, - [1414] = {.lex_state = 539}, - [1415] = {.lex_state = 558}, - [1416] = {.lex_state = 478}, - [1417] = {.lex_state = 488}, - [1418] = {.lex_state = 761}, - [1419] = {.lex_state = 534}, - [1420] = {.lex_state = 536}, - [1421] = {.lex_state = 637}, - [1422] = {.lex_state = 762, .external_lex_state = 4}, - [1423] = {.lex_state = 488, .external_lex_state = 3}, - [1424] = {.lex_state = 447}, - [1425] = {.lex_state = 488, .external_lex_state = 5}, - [1426] = {.lex_state = 558}, - [1427] = {.lex_state = 560}, - [1428] = {.lex_state = 488, .external_lex_state = 3}, - [1429] = {.lex_state = 271, .external_lex_state = 4}, - [1430] = {.lex_state = 447}, - [1431] = {.lex_state = 488, .external_lex_state = 3}, - [1432] = {.lex_state = 628}, - [1433] = {.lex_state = 561}, - [1434] = {.lex_state = 539}, - [1435] = {.lex_state = 539}, - [1436] = {.lex_state = 539}, - [1437] = {.lex_state = 539}, - [1438] = {.lex_state = 653}, - [1439] = {.lex_state = 478}, - [1440] = {.lex_state = 488}, - [1441] = {.lex_state = 637}, - [1442] = {.lex_state = 644}, - [1443] = {.lex_state = 447}, - [1444] = {.lex_state = 447}, - [1445] = {.lex_state = 560}, - [1446] = {.lex_state = 534}, - [1447] = {.lex_state = 536}, - [1448] = {.lex_state = 560}, - [1449] = {.lex_state = 655}, - [1450] = {.lex_state = 451}, - [1451] = {.lex_state = 478}, - [1452] = {.lex_state = 536}, - [1453] = {.lex_state = 451}, - [1454] = {.lex_state = 561}, - [1455] = {.lex_state = 617}, - [1456] = {.lex_state = 655}, - [1457] = {.lex_state = 534}, - [1458] = {.lex_state = 545}, - [1459] = {.lex_state = 655}, - [1460] = {.lex_state = 539}, - [1461] = {.lex_state = 657}, - [1462] = {.lex_state = 451}, - [1463] = {.lex_state = 478}, - [1464] = {.lex_state = 536}, - [1465] = {.lex_state = 451}, - [1466] = {.lex_state = 561}, - [1467] = {.lex_state = 617}, - [1468] = {.lex_state = 657}, - [1469] = {.lex_state = 534}, - [1470] = {.lex_state = 545}, - [1471] = {.lex_state = 451}, - [1472] = {.lex_state = 819}, - [1473] = {.lex_state = 637}, - [1474] = {.lex_state = 451}, - [1475] = {.lex_state = 628}, - [1476] = {.lex_state = 561}, - [1477] = {.lex_state = 451}, - [1478] = {.lex_state = 556}, - [1479] = {.lex_state = 451, .external_lex_state = 3}, - [1480] = {.lex_state = 451}, - [1481] = {.lex_state = 821}, - [1482] = {.lex_state = 451}, - [1483] = {.lex_state = 488}, - [1484] = {.lex_state = 451}, - [1485] = {.lex_state = 823}, - [1486] = {.lex_state = 823}, - [1487] = {.lex_state = 451}, - [1488] = {.lex_state = 451}, - [1489] = {.lex_state = 451}, - [1490] = {.lex_state = 661}, - [1491] = {.lex_state = 825}, - [1492] = {.lex_state = 0, .external_lex_state = 3}, - [1493] = {.lex_state = 563, .external_lex_state = 4}, - [1494] = {.lex_state = 488, .external_lex_state = 3}, - [1495] = {.lex_state = 563, .external_lex_state = 4}, - [1496] = {.lex_state = 447}, - [1497] = {.lex_state = 661}, - [1498] = {.lex_state = 574, .external_lex_state = 3}, - [1499] = {.lex_state = 447}, - [1500] = {.lex_state = 488}, - [1501] = {.lex_state = 447}, - [1502] = {.lex_state = 574, .external_lex_state = 3}, - [1503] = {.lex_state = 534}, - [1504] = {.lex_state = 447}, - [1505] = {.lex_state = 644}, - [1506] = {.lex_state = 488}, - [1507] = {.lex_state = 447}, - [1508] = {.lex_state = 488, .external_lex_state = 3}, - [1509] = {.lex_state = 488, .external_lex_state = 3}, - [1510] = {.lex_state = 556}, - [1511] = {.lex_state = 827, .external_lex_state = 3}, - [1512] = {.lex_state = 827, .external_lex_state = 3}, - [1513] = {.lex_state = 827, .external_lex_state = 3}, - [1514] = {.lex_state = 488, .external_lex_state = 3}, - [1515] = {.lex_state = 271, .external_lex_state = 4}, - [1516] = {.lex_state = 447}, - [1517] = {.lex_state = 488, .external_lex_state = 3}, - [1518] = {.lex_state = 628}, - [1519] = {.lex_state = 561}, + [1069] = {.lex_state = 541}, + [1070] = {.lex_state = 737, .external_lex_state = 3}, + [1071] = {.lex_state = 545}, + [1072] = {.lex_state = 737, .external_lex_state = 3}, + [1073] = {.lex_state = 553}, + [1074] = {.lex_state = 738, .external_lex_state = 3}, + [1075] = {.lex_state = 461}, + [1076] = {.lex_state = 453}, + [1077] = {.lex_state = 738, .external_lex_state = 3}, + [1078] = {.lex_state = 535}, + [1079] = {.lex_state = 560}, + [1080] = {.lex_state = 485}, + [1081] = {.lex_state = 274, .external_lex_state = 2}, + [1082] = {.lex_state = 485}, + [1083] = {.lex_state = 461}, + [1084] = {.lex_state = 493}, + [1085] = {.lex_state = 461}, + [1086] = {.lex_state = 485}, + [1087] = {.lex_state = 539}, + [1088] = {.lex_state = 541}, + [1089] = {.lex_state = 738, .external_lex_state = 3}, + [1090] = {.lex_state = 572}, + [1091] = {.lex_state = 495}, + [1092] = {.lex_state = 738, .external_lex_state = 3}, + [1093] = {.lex_state = 495}, + [1094] = {.lex_state = 553}, + [1095] = {.lex_state = 495, .external_lex_state = 3}, + [1096] = {.lex_state = 485}, + [1097] = {.lex_state = 721}, + [1098] = {.lex_state = 739}, + [1099] = {.lex_state = 644}, + [1100] = {.lex_state = 585}, + [1101] = {.lex_state = 572, .external_lex_state = 3}, + [1102] = {.lex_state = 461}, + [1103] = {.lex_state = 453}, + [1104] = {.lex_state = 572, .external_lex_state = 3}, + [1105] = {.lex_state = 535}, + [1106] = {.lex_state = 560}, + [1107] = {.lex_state = 485}, + [1108] = {.lex_state = 274, .external_lex_state = 2}, + [1109] = {.lex_state = 485}, + [1110] = {.lex_state = 461}, + [1111] = {.lex_state = 493}, + [1112] = {.lex_state = 461}, + [1113] = {.lex_state = 485}, + [1114] = {.lex_state = 539}, + [1115] = {.lex_state = 541}, + [1116] = {.lex_state = 572, .external_lex_state = 3}, + [1117] = {.lex_state = 495, .external_lex_state = 3}, + [1118] = {.lex_state = 572}, + [1119] = {.lex_state = 495}, + [1120] = {.lex_state = 572, .external_lex_state = 3}, + [1121] = {.lex_state = 495}, + [1122] = {.lex_state = 553}, + [1123] = {.lex_state = 553}, + [1124] = {.lex_state = 553}, + [1125] = {.lex_state = 553}, + [1126] = {.lex_state = 553}, + [1127] = {.lex_state = 554}, + [1128] = {.lex_state = 495}, + [1129] = {.lex_state = 485}, + [1130] = {.lex_state = 656}, + [1131] = {.lex_state = 461}, + [1132] = {.lex_state = 461}, + [1133] = {.lex_state = 641}, + [1134] = {.lex_state = 453, .external_lex_state = 4}, + [1135] = {.lex_state = 495, .external_lex_state = 3}, + [1136] = {.lex_state = 453, .external_lex_state = 4}, + [1137] = {.lex_state = 274, .external_lex_state = 4}, + [1138] = {.lex_state = 495, .external_lex_state = 3}, + [1139] = {.lex_state = 274, .external_lex_state = 4}, + [1140] = {.lex_state = 643}, + [1141] = {.lex_state = 453}, + [1142] = {.lex_state = 495}, + [1143] = {.lex_state = 741}, + [1144] = {.lex_state = 553}, + [1145] = {.lex_state = 632}, + [1146] = {.lex_state = 541}, + [1147] = {.lex_state = 633}, + [1148] = {.lex_state = 634}, + [1149] = {.lex_state = 741}, + [1150] = {.lex_state = 743}, + [1151] = {.lex_state = 644}, + [1152] = {.lex_state = 741}, + [1153] = {.lex_state = 485}, + [1154] = {.lex_state = 745}, + [1155] = {.lex_state = 461}, + [1156] = {.lex_state = 745}, + [1157] = {.lex_state = 538}, + [1158] = {.lex_state = 461}, + [1159] = {.lex_state = 461}, + [1160] = {.lex_state = 485}, + [1161] = {.lex_state = 493}, + [1162] = {.lex_state = 485}, + [1163] = {.lex_state = 539}, + [1164] = {.lex_state = 745}, + [1165] = {.lex_state = 747}, + [1166] = {.lex_state = 644}, + [1167] = {.lex_state = 274}, + [1168] = {.lex_state = 495, .external_lex_state = 3}, + [1169] = {.lex_state = 274}, + [1170] = {.lex_state = 543}, + [1171] = {.lex_state = 453}, + [1172] = {.lex_state = 568}, + [1173] = {.lex_state = 585}, + [1174] = {.lex_state = 582}, + [1175] = {.lex_state = 461}, + [1176] = {.lex_state = 538}, + [1177] = {.lex_state = 493}, + [1178] = {.lex_state = 485}, + [1179] = {.lex_state = 539}, + [1180] = {.lex_state = 643}, + [1181] = {.lex_state = 541}, + [1182] = {.lex_state = 461}, + [1183] = {.lex_state = 556}, + [1184] = {.lex_state = 461}, + [1185] = {.lex_state = 538}, + [1186] = {.lex_state = 493}, + [1187] = {.lex_state = 539}, + [1188] = {.lex_state = 461}, + [1189] = {.lex_state = 553, .external_lex_state = 4}, + [1190] = {.lex_state = 461}, + [1191] = {.lex_state = 644}, + [1192] = {.lex_state = 585}, + [1193] = {.lex_state = 553}, + [1194] = {.lex_state = 553}, + [1195] = {.lex_state = 553}, + [1196] = {.lex_state = 553}, + [1197] = {.lex_state = 568}, + [1198] = {.lex_state = 495}, + [1199] = {.lex_state = 485}, + [1200] = {.lex_state = 543}, + [1201] = {.lex_state = 656}, + [1202] = {.lex_state = 634}, + [1203] = {.lex_state = 561}, + [1204] = {.lex_state = 640}, + [1205] = {.lex_state = 461}, + [1206] = {.lex_state = 485}, + [1207] = {.lex_state = 749}, + [1208] = {.lex_state = 651}, + [1209] = {.lex_state = 274}, + [1210] = {.lex_state = 495, .external_lex_state = 3}, + [1211] = {.lex_state = 274}, + [1212] = {.lex_state = 495}, + [1213] = {.lex_state = 598}, + [1214] = {.lex_state = 543}, + [1215] = {.lex_state = 598}, + [1216] = {.lex_state = 751}, + [1217] = {.lex_state = 651}, + [1218] = {.lex_state = 485}, + [1219] = {.lex_state = 461}, + [1220] = {.lex_state = 561}, + [1221] = {.lex_state = 461}, + [1222] = {.lex_state = 495}, + [1223] = {.lex_state = 495}, + [1224] = {.lex_state = 495}, + [1225] = {.lex_state = 495}, + [1226] = {.lex_state = 653}, + [1227] = {.lex_state = 453}, + [1228] = {.lex_state = 485}, + [1229] = {.lex_state = 568}, + [1230] = {.lex_state = 582}, + [1231] = {.lex_state = 543}, + [1232] = {.lex_state = 453}, + [1233] = {.lex_state = 585}, + [1234] = {.lex_state = 653}, + [1235] = {.lex_state = 541}, + [1236] = {.lex_state = 653}, + [1237] = {.lex_state = 553}, + [1238] = {.lex_state = 495, .external_lex_state = 3}, + [1239] = {.lex_state = 274, .external_lex_state = 4}, + [1240] = {.lex_state = 461}, + [1241] = {.lex_state = 495, .external_lex_state = 3}, + [1242] = {.lex_state = 556}, + [1243] = {.lex_state = 541}, + [1244] = {.lex_state = 543}, + [1245] = {.lex_state = 655}, + [1246] = {.lex_state = 453}, + [1247] = {.lex_state = 495}, + [1248] = {.lex_state = 753}, + [1249] = {.lex_state = 553}, + [1250] = {.lex_state = 632}, + [1251] = {.lex_state = 541}, + [1252] = {.lex_state = 633}, + [1253] = {.lex_state = 634}, + [1254] = {.lex_state = 753}, + [1255] = {.lex_state = 753}, + [1256] = {.lex_state = 585}, + [1257] = {.lex_state = 753}, + [1258] = {.lex_state = 485}, + [1259] = {.lex_state = 755}, + [1260] = {.lex_state = 461}, + [1261] = {.lex_state = 755}, + [1262] = {.lex_state = 538}, + [1263] = {.lex_state = 461}, + [1264] = {.lex_state = 461}, + [1265] = {.lex_state = 485}, + [1266] = {.lex_state = 493}, + [1267] = {.lex_state = 485}, + [1268] = {.lex_state = 539}, + [1269] = {.lex_state = 755}, + [1270] = {.lex_state = 755}, + [1271] = {.lex_state = 585}, + [1272] = {.lex_state = 274}, + [1273] = {.lex_state = 495, .external_lex_state = 3}, + [1274] = {.lex_state = 274}, + [1275] = {.lex_state = 543}, + [1276] = {.lex_state = 453}, + [1277] = {.lex_state = 568}, + [1278] = {.lex_state = 585}, + [1279] = {.lex_state = 582}, + [1280] = {.lex_state = 461}, + [1281] = {.lex_state = 538}, + [1282] = {.lex_state = 493}, + [1283] = {.lex_state = 485}, + [1284] = {.lex_state = 539}, + [1285] = {.lex_state = 655}, + [1286] = {.lex_state = 541}, + [1287] = {.lex_state = 461}, + [1288] = {.lex_state = 461}, + [1289] = {.lex_state = 538}, + [1290] = {.lex_state = 493}, + [1291] = {.lex_state = 539}, + [1292] = {.lex_state = 461}, + [1293] = {.lex_state = 644}, + [1294] = {.lex_state = 651}, + [1295] = {.lex_state = 585}, + [1296] = {.lex_state = 656}, + [1297] = {.lex_state = 495}, + [1298] = {.lex_state = 757}, + [1299] = {.lex_state = 656}, + [1300] = {.lex_state = 485}, + [1301] = {.lex_state = 759}, + [1302] = {.lex_state = 656}, + [1303] = {.lex_state = 274}, + [1304] = {.lex_state = 495, .external_lex_state = 3}, + [1305] = {.lex_state = 274}, + [1306] = {.lex_state = 485}, + [1307] = {.lex_state = 461}, + [1308] = {.lex_state = 556}, + [1309] = {.lex_state = 461}, + [1310] = {.lex_state = 561}, + [1311] = {.lex_state = 495}, + [1312] = {.lex_state = 495}, + [1313] = {.lex_state = 495}, + [1314] = {.lex_state = 495}, + [1315] = {.lex_state = 485}, + [1316] = {.lex_state = 561}, + [1317] = {.lex_state = 658}, + [1318] = {.lex_state = 453}, + [1319] = {.lex_state = 485}, + [1320] = {.lex_state = 568}, + [1321] = {.lex_state = 543}, + [1322] = {.lex_state = 453}, + [1323] = {.lex_state = 582}, + [1324] = {.lex_state = 585}, + [1325] = {.lex_state = 658}, + [1326] = {.lex_state = 541}, + [1327] = {.lex_state = 573, .external_lex_state = 3}, + [1328] = {.lex_state = 573, .external_lex_state = 3}, + [1329] = {.lex_state = 541}, + [1330] = {.lex_state = 543}, + [1331] = {.lex_state = 573, .external_lex_state = 3}, + [1332] = {.lex_state = 495, .external_lex_state = 3}, + [1333] = {.lex_state = 461}, + [1334] = {.lex_state = 495}, + [1335] = {.lex_state = 575, .external_lex_state = 3}, + [1336] = {.lex_state = 659, .external_lex_state = 3}, + [1337] = {.lex_state = 453}, + [1338] = {.lex_state = 485}, + [1339] = {.lex_state = 568}, + [1340] = {.lex_state = 582}, + [1341] = {.lex_state = 543}, + [1342] = {.lex_state = 453}, + [1343] = {.lex_state = 585}, + [1344] = {.lex_state = 659, .external_lex_state = 3}, + [1345] = {.lex_state = 541}, + [1346] = {.lex_state = 659, .external_lex_state = 3}, + [1347] = {.lex_state = 553}, + [1348] = {.lex_state = 495, .external_lex_state = 3}, + [1349] = {.lex_state = 274, .external_lex_state = 4}, + [1350] = {.lex_state = 461}, + [1351] = {.lex_state = 495, .external_lex_state = 3}, + [1352] = {.lex_state = 575, .external_lex_state = 3}, + [1353] = {.lex_state = 541}, + [1354] = {.lex_state = 461}, + [1355] = {.lex_state = 640}, + [1356] = {.lex_state = 495}, + [1357] = {.lex_state = 461}, + [1358] = {.lex_state = 495, .external_lex_state = 3}, + [1359] = {.lex_state = 495, .external_lex_state = 3}, + [1360] = {.lex_state = 554}, + [1361] = {.lex_state = 761, .external_lex_state = 3}, + [1362] = {.lex_state = 761, .external_lex_state = 3}, + [1363] = {.lex_state = 761, .external_lex_state = 3}, + [1364] = {.lex_state = 461}, + [1365] = {.lex_state = 661, .external_lex_state = 3}, + [1366] = {.lex_state = 554}, + [1367] = {.lex_state = 763, .external_lex_state = 3}, + [1368] = {.lex_state = 461}, + [1369] = {.lex_state = 763, .external_lex_state = 3}, + [1370] = {.lex_state = 538}, + [1371] = {.lex_state = 543}, + [1372] = {.lex_state = 461}, + [1373] = {.lex_state = 485}, + [1374] = {.lex_state = 461}, + [1375] = {.lex_state = 493}, + [1376] = {.lex_state = 485}, + [1377] = {.lex_state = 539}, + [1378] = {.lex_state = 688, .external_lex_state = 3}, + [1379] = {.lex_state = 763, .external_lex_state = 3}, + [1380] = {.lex_state = 763, .external_lex_state = 3}, + [1381] = {.lex_state = 688, .external_lex_state = 3}, + [1382] = {.lex_state = 763, .external_lex_state = 3}, + [1383] = {.lex_state = 644}, + [1384] = {.lex_state = 585}, + [1385] = {.lex_state = 553}, + [1386] = {.lex_state = 553}, + [1387] = {.lex_state = 553}, + [1388] = {.lex_state = 553}, + [1389] = {.lex_state = 663, .external_lex_state = 3}, + [1390] = {.lex_state = 495}, + [1391] = {.lex_state = 485}, + [1392] = {.lex_state = 656}, + [1393] = {.lex_state = 640}, + [1394] = {.lex_state = 461}, + [1395] = {.lex_state = 453}, + [1396] = {.lex_state = 575, .external_lex_state = 3}, + [1397] = {.lex_state = 765, .external_lex_state = 3}, + [1398] = {.lex_state = 461}, + [1399] = {.lex_state = 765, .external_lex_state = 3}, + [1400] = {.lex_state = 560}, + [1401] = {.lex_state = 485}, + [1402] = {.lex_state = 461}, + [1403] = {.lex_state = 493}, + [1404] = {.lex_state = 461}, + [1405] = {.lex_state = 485}, + [1406] = {.lex_state = 539}, + [1407] = {.lex_state = 765, .external_lex_state = 3}, + [1408] = {.lex_state = 572}, + [1409] = {.lex_state = 495}, + [1410] = {.lex_state = 765, .external_lex_state = 3}, + [1411] = {.lex_state = 495}, + [1412] = {.lex_state = 461}, + [1413] = {.lex_state = 495}, + [1414] = {.lex_state = 543}, + [1415] = {.lex_state = 495}, + [1416] = {.lex_state = 495, .external_lex_state = 3}, + [1417] = {.lex_state = 666, .external_lex_state = 3}, + [1418] = {.lex_state = 453}, + [1419] = {.lex_state = 485}, + [1420] = {.lex_state = 568}, + [1421] = {.lex_state = 543}, + [1422] = {.lex_state = 453}, + [1423] = {.lex_state = 582}, + [1424] = {.lex_state = 585}, + [1425] = {.lex_state = 666, .external_lex_state = 3}, + [1426] = {.lex_state = 541}, + [1427] = {.lex_state = 766, .external_lex_state = 3}, + [1428] = {.lex_state = 461}, + [1429] = {.lex_state = 453}, + [1430] = {.lex_state = 766, .external_lex_state = 3}, + [1431] = {.lex_state = 535}, + [1432] = {.lex_state = 560}, + [1433] = {.lex_state = 485}, + [1434] = {.lex_state = 274, .external_lex_state = 2}, + [1435] = {.lex_state = 485}, + [1436] = {.lex_state = 461}, + [1437] = {.lex_state = 493}, + [1438] = {.lex_state = 461}, + [1439] = {.lex_state = 485}, + [1440] = {.lex_state = 539}, + [1441] = {.lex_state = 541}, + [1442] = {.lex_state = 766, .external_lex_state = 3}, + [1443] = {.lex_state = 572}, + [1444] = {.lex_state = 495}, + [1445] = {.lex_state = 766, .external_lex_state = 3}, + [1446] = {.lex_state = 495}, + [1447] = {.lex_state = 553}, + [1448] = {.lex_state = 767, .external_lex_state = 3}, + [1449] = {.lex_state = 453}, + [1450] = {.lex_state = 767, .external_lex_state = 3}, + [1451] = {.lex_state = 535}, + [1452] = {.lex_state = 461}, + [1453] = {.lex_state = 538}, + [1454] = {.lex_state = 461}, + [1455] = {.lex_state = 485}, + [1456] = {.lex_state = 274, .external_lex_state = 2}, + [1457] = {.lex_state = 485}, + [1458] = {.lex_state = 461}, + [1459] = {.lex_state = 493}, + [1460] = {.lex_state = 485}, + [1461] = {.lex_state = 539}, + [1462] = {.lex_state = 541}, + [1463] = {.lex_state = 767, .external_lex_state = 3}, + [1464] = {.lex_state = 545}, + [1465] = {.lex_state = 767, .external_lex_state = 3}, + [1466] = {.lex_state = 553}, + [1467] = {.lex_state = 768, .external_lex_state = 3}, + [1468] = {.lex_state = 461}, + [1469] = {.lex_state = 453}, + [1470] = {.lex_state = 768, .external_lex_state = 3}, + [1471] = {.lex_state = 535}, + [1472] = {.lex_state = 560}, + [1473] = {.lex_state = 485}, + [1474] = {.lex_state = 274, .external_lex_state = 2}, + [1475] = {.lex_state = 485}, + [1476] = {.lex_state = 461}, + [1477] = {.lex_state = 493}, + [1478] = {.lex_state = 461}, + [1479] = {.lex_state = 485}, + [1480] = {.lex_state = 539}, + [1481] = {.lex_state = 541}, + [1482] = {.lex_state = 768, .external_lex_state = 3}, + [1483] = {.lex_state = 572}, + [1484] = {.lex_state = 495}, + [1485] = {.lex_state = 768, .external_lex_state = 3}, + [1486] = {.lex_state = 495}, + [1487] = {.lex_state = 553}, + [1488] = {.lex_state = 769, .external_lex_state = 3}, + [1489] = {.lex_state = 453}, + [1490] = {.lex_state = 769, .external_lex_state = 3}, + [1491] = {.lex_state = 535}, + [1492] = {.lex_state = 461}, + [1493] = {.lex_state = 538}, + [1494] = {.lex_state = 461}, + [1495] = {.lex_state = 485}, + [1496] = {.lex_state = 274, .external_lex_state = 2}, + [1497] = {.lex_state = 485}, + [1498] = {.lex_state = 461}, + [1499] = {.lex_state = 493}, + [1500] = {.lex_state = 485}, + [1501] = {.lex_state = 539}, + [1502] = {.lex_state = 541}, + [1503] = {.lex_state = 769, .external_lex_state = 3}, + [1504] = {.lex_state = 545}, + [1505] = {.lex_state = 769, .external_lex_state = 3}, + [1506] = {.lex_state = 553}, + [1507] = {.lex_state = 770, .external_lex_state = 3}, + [1508] = {.lex_state = 461}, + [1509] = {.lex_state = 453}, + [1510] = {.lex_state = 770, .external_lex_state = 3}, + [1511] = {.lex_state = 535}, + [1512] = {.lex_state = 560}, + [1513] = {.lex_state = 485}, + [1514] = {.lex_state = 274, .external_lex_state = 2}, + [1515] = {.lex_state = 485}, + [1516] = {.lex_state = 461}, + [1517] = {.lex_state = 493}, + [1518] = {.lex_state = 461}, + [1519] = {.lex_state = 485}, [1520] = {.lex_state = 539}, - [1521] = {.lex_state = 539}, - [1522] = {.lex_state = 539}, - [1523] = {.lex_state = 539}, - [1524] = {.lex_state = 663, .external_lex_state = 3}, - [1525] = {.lex_state = 478}, - [1526] = {.lex_state = 488}, - [1527] = {.lex_state = 637}, - [1528] = {.lex_state = 644}, - [1529] = {.lex_state = 447}, - [1530] = {.lex_state = 666, .external_lex_state = 3}, - [1531] = {.lex_state = 556}, - [1532] = {.lex_state = 829, .external_lex_state = 3}, - [1533] = {.lex_state = 447}, - [1534] = {.lex_state = 829, .external_lex_state = 3}, - [1535] = {.lex_state = 531}, - [1536] = {.lex_state = 536}, - [1537] = {.lex_state = 478}, - [1538] = {.lex_state = 486}, - [1539] = {.lex_state = 478}, - [1540] = {.lex_state = 447}, - [1541] = {.lex_state = 532}, - [1542] = {.lex_state = 447}, - [1543] = {.lex_state = 829, .external_lex_state = 3}, - [1544] = {.lex_state = 675, .external_lex_state = 3}, - [1545] = {.lex_state = 675, .external_lex_state = 3}, - [1546] = {.lex_state = 829, .external_lex_state = 3}, - [1547] = {.lex_state = 829, .external_lex_state = 3}, - [1548] = {.lex_state = 451}, - [1549] = {.lex_state = 574, .external_lex_state = 3}, - [1550] = {.lex_state = 831, .external_lex_state = 3}, - [1551] = {.lex_state = 447}, - [1552] = {.lex_state = 831, .external_lex_state = 3}, - [1553] = {.lex_state = 544}, - [1554] = {.lex_state = 478}, - [1555] = {.lex_state = 486}, - [1556] = {.lex_state = 478}, - [1557] = {.lex_state = 447}, - [1558] = {.lex_state = 532}, - [1559] = {.lex_state = 447}, - [1560] = {.lex_state = 488}, - [1561] = {.lex_state = 831, .external_lex_state = 3}, - [1562] = {.lex_state = 555}, - [1563] = {.lex_state = 831, .external_lex_state = 3}, - [1564] = {.lex_state = 488}, - [1565] = {.lex_state = 668, .external_lex_state = 3}, - [1566] = {.lex_state = 451}, - [1567] = {.lex_state = 478}, - [1568] = {.lex_state = 536}, - [1569] = {.lex_state = 451}, - [1570] = {.lex_state = 561}, - [1571] = {.lex_state = 617}, - [1572] = {.lex_state = 668, .external_lex_state = 3}, - [1573] = {.lex_state = 534}, - [1574] = {.lex_state = 545}, - [1575] = {.lex_state = 668, .external_lex_state = 3}, - [1576] = {.lex_state = 539}, - [1577] = {.lex_state = 447}, - [1578] = {.lex_state = 488}, - [1579] = {.lex_state = 536}, - [1580] = {.lex_state = 488}, - [1581] = {.lex_state = 488, .external_lex_state = 3}, - [1582] = {.lex_state = 832, .external_lex_state = 3}, - [1583] = {.lex_state = 271, .external_lex_state = 2}, - [1584] = {.lex_state = 523}, - [1585] = {.lex_state = 832, .external_lex_state = 3}, - [1586] = {.lex_state = 451}, - [1587] = {.lex_state = 447}, - [1588] = {.lex_state = 531}, - [1589] = {.lex_state = 478}, - [1590] = {.lex_state = 486}, - [1591] = {.lex_state = 478}, - [1592] = {.lex_state = 447}, - [1593] = {.lex_state = 532}, - [1594] = {.lex_state = 478}, - [1595] = {.lex_state = 534}, - [1596] = {.lex_state = 447}, - [1597] = {.lex_state = 539}, - [1598] = {.lex_state = 832, .external_lex_state = 3}, - [1599] = {.lex_state = 538}, - [1600] = {.lex_state = 832, .external_lex_state = 3}, - [1601] = {.lex_state = 833, .external_lex_state = 3}, - [1602] = {.lex_state = 447}, - [1603] = {.lex_state = 271, .external_lex_state = 2}, - [1604] = {.lex_state = 523}, - [1605] = {.lex_state = 833, .external_lex_state = 3}, - [1606] = {.lex_state = 544}, - [1607] = {.lex_state = 451}, - [1608] = {.lex_state = 478}, - [1609] = {.lex_state = 486}, - [1610] = {.lex_state = 478}, - [1611] = {.lex_state = 447}, - [1612] = {.lex_state = 532}, - [1613] = {.lex_state = 478}, - [1614] = {.lex_state = 534}, - [1615] = {.lex_state = 447}, - [1616] = {.lex_state = 488}, - [1617] = {.lex_state = 539}, - [1618] = {.lex_state = 833, .external_lex_state = 3}, - [1619] = {.lex_state = 555}, - [1620] = {.lex_state = 833, .external_lex_state = 3}, - [1621] = {.lex_state = 488}, - [1622] = {.lex_state = 670, .external_lex_state = 3}, - [1623] = {.lex_state = 451}, - [1624] = {.lex_state = 478}, - [1625] = {.lex_state = 536}, - [1626] = {.lex_state = 451}, - [1627] = {.lex_state = 561}, - [1628] = {.lex_state = 617}, - [1629] = {.lex_state = 670, .external_lex_state = 3}, - [1630] = {.lex_state = 534}, - [1631] = {.lex_state = 545}, - [1632] = {.lex_state = 834, .external_lex_state = 3}, - [1633] = {.lex_state = 447}, - [1634] = {.lex_state = 271, .external_lex_state = 2}, - [1635] = {.lex_state = 523}, - [1636] = {.lex_state = 834, .external_lex_state = 3}, - [1637] = {.lex_state = 544}, - [1638] = {.lex_state = 451}, - [1639] = {.lex_state = 478}, - [1640] = {.lex_state = 486}, - [1641] = {.lex_state = 478}, - [1642] = {.lex_state = 447}, - [1643] = {.lex_state = 532}, - [1644] = {.lex_state = 478}, - [1645] = {.lex_state = 534}, - [1646] = {.lex_state = 447}, - [1647] = {.lex_state = 488}, - [1648] = {.lex_state = 539}, - [1649] = {.lex_state = 834, .external_lex_state = 3}, - [1650] = {.lex_state = 555}, - [1651] = {.lex_state = 834, .external_lex_state = 3}, - [1652] = {.lex_state = 488}, - [1653] = {.lex_state = 835, .external_lex_state = 3}, - [1654] = {.lex_state = 271, .external_lex_state = 2}, - [1655] = {.lex_state = 523}, - [1656] = {.lex_state = 835, .external_lex_state = 3}, - [1657] = {.lex_state = 451}, - [1658] = {.lex_state = 447}, - [1659] = {.lex_state = 531}, - [1660] = {.lex_state = 478}, - [1661] = {.lex_state = 486}, - [1662] = {.lex_state = 478}, - [1663] = {.lex_state = 447}, - [1664] = {.lex_state = 532}, - [1665] = {.lex_state = 478}, - [1666] = {.lex_state = 534}, - [1667] = {.lex_state = 447}, - [1668] = {.lex_state = 539}, - [1669] = {.lex_state = 835, .external_lex_state = 3}, - [1670] = {.lex_state = 538}, - [1671] = {.lex_state = 835, .external_lex_state = 3}, - [1672] = {.lex_state = 836, .external_lex_state = 3}, - [1673] = {.lex_state = 447}, - [1674] = {.lex_state = 271, .external_lex_state = 2}, - [1675] = {.lex_state = 523}, - [1676] = {.lex_state = 836, .external_lex_state = 3}, - [1677] = {.lex_state = 544}, - [1678] = {.lex_state = 451}, - [1679] = {.lex_state = 478}, - [1680] = {.lex_state = 486}, - [1681] = {.lex_state = 478}, - [1682] = {.lex_state = 447}, - [1683] = {.lex_state = 532}, - [1684] = {.lex_state = 478}, - [1685] = {.lex_state = 534}, - [1686] = {.lex_state = 447}, - [1687] = {.lex_state = 488}, - [1688] = {.lex_state = 539}, - [1689] = {.lex_state = 836, .external_lex_state = 3}, - [1690] = {.lex_state = 555}, - [1691] = {.lex_state = 836, .external_lex_state = 3}, - [1692] = {.lex_state = 488}, - [1693] = {.lex_state = 671}, - [1694] = {.lex_state = 451}, - [1695] = {.lex_state = 478}, - [1696] = {.lex_state = 536}, - [1697] = {.lex_state = 451}, - [1698] = {.lex_state = 561}, - [1699] = {.lex_state = 617}, - [1700] = {.lex_state = 671}, - [1701] = {.lex_state = 534}, - [1702] = {.lex_state = 545}, - [1703] = {.lex_state = 539}, - [1704] = {.lex_state = 447}, - [1705] = {.lex_state = 577, .external_lex_state = 3}, - [1706] = {.lex_state = 672}, - [1707] = {.lex_state = 451}, - [1708] = {.lex_state = 478}, - [1709] = {.lex_state = 536}, - [1710] = {.lex_state = 451}, - [1711] = {.lex_state = 561}, - [1712] = {.lex_state = 617}, - [1713] = {.lex_state = 672}, - [1714] = {.lex_state = 534}, - [1715] = {.lex_state = 545}, - [1716] = {.lex_state = 447}, - [1717] = {.lex_state = 637}, - [1718] = {.lex_state = 628}, - [1719] = {.lex_state = 488}, - [1720] = {.lex_state = 561}, - [1721] = {.lex_state = 271}, - [1722] = {.lex_state = 488, .external_lex_state = 3}, - [1723] = {.lex_state = 271}, - [1724] = {.lex_state = 728}, - [1725] = {.lex_state = 488}, - [1726] = {.lex_state = 488}, - [1727] = {.lex_state = 478}, - [1728] = {.lex_state = 732}, - [1729] = {.lex_state = 488}, - [1730] = {.lex_state = 447}, - [1731] = {.lex_state = 577, .external_lex_state = 3}, - [1732] = {.lex_state = 447}, - [1733] = {.lex_state = 271}, - [1734] = {.lex_state = 488, .external_lex_state = 3}, - [1735] = {.lex_state = 271}, - [1736] = {.lex_state = 837}, - [1737] = {.lex_state = 539}, - [1738] = {.lex_state = 583}, - [1739] = {.lex_state = 534}, - [1740] = {.lex_state = 584}, - [1741] = {.lex_state = 585}, - [1742] = {.lex_state = 837}, - [1743] = {.lex_state = 837}, - [1744] = {.lex_state = 637}, - [1745] = {.lex_state = 837}, - [1746] = {.lex_state = 488}, - [1747] = {.lex_state = 673}, - [1748] = {.lex_state = 451}, - [1749] = {.lex_state = 478}, - [1750] = {.lex_state = 271, .external_lex_state = 2}, - [1751] = {.lex_state = 523}, - [1752] = {.lex_state = 451}, - [1753] = {.lex_state = 478}, - [1754] = {.lex_state = 478}, - [1755] = {.lex_state = 534}, - [1756] = {.lex_state = 488}, - [1757] = {.lex_state = 536}, - [1758] = {.lex_state = 539}, - [1759] = {.lex_state = 555}, - [1760] = {.lex_state = 488}, - [1761] = {.lex_state = 536}, - [1762] = {.lex_state = 451}, - [1763] = {.lex_state = 561}, - [1764] = {.lex_state = 617}, - [1765] = {.lex_state = 673}, - [1766] = {.lex_state = 534}, - [1767] = {.lex_state = 478}, - [1768] = {.lex_state = 748}, - [1769] = {.lex_state = 637}, - [1770] = {.lex_state = 839}, - [1771] = {.lex_state = 447}, - [1772] = {.lex_state = 545}, - [1773] = {.lex_state = 585}, - [1774] = {.lex_state = 447}, - [1775] = {.lex_state = 674}, - [1776] = {.lex_state = 674}, - [1777] = {.lex_state = 271, .external_lex_state = 2}, - [1778] = {.lex_state = 523}, - [1779] = {.lex_state = 674}, - [1780] = {.lex_state = 451}, - [1781] = {.lex_state = 447}, - [1782] = {.lex_state = 531}, - [1783] = {.lex_state = 478}, - [1784] = {.lex_state = 486}, - [1785] = {.lex_state = 478}, - [1786] = {.lex_state = 447}, - [1787] = {.lex_state = 532}, - [1788] = {.lex_state = 478}, - [1789] = {.lex_state = 534}, - [1790] = {.lex_state = 447}, - [1791] = {.lex_state = 674}, - [1792] = {.lex_state = 674}, - [1793] = {.lex_state = 674}, - [1794] = {.lex_state = 536}, - [1795] = {.lex_state = 488, .external_lex_state = 3}, - [1796] = {.lex_state = 447}, - [1797] = {.lex_state = 674, .external_lex_state = 3}, - [1798] = {.lex_state = 674, .external_lex_state = 3}, - [1799] = {.lex_state = 447}, - [1800] = {.lex_state = 531}, - [1801] = {.lex_state = 447}, - [1802] = {.lex_state = 478}, - [1803] = {.lex_state = 486}, - [1804] = {.lex_state = 478}, - [1805] = {.lex_state = 447}, - [1806] = {.lex_state = 532}, - [1807] = {.lex_state = 447}, - [1808] = {.lex_state = 674, .external_lex_state = 3}, - [1809] = {.lex_state = 674}, - [1810] = {.lex_state = 674}, - [1811] = {.lex_state = 585, .external_lex_state = 4}, - [1812] = {.lex_state = 674, .external_lex_state = 3}, - [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 0, .external_lex_state = 3}, - [1815] = {.lex_state = 637}, - [1816] = {.lex_state = 675, .external_lex_state = 3}, - [1817] = {.lex_state = 675, .external_lex_state = 3}, - [1818] = {.lex_state = 651, .external_lex_state = 3}, - [1819] = {.lex_state = 539}, - [1820] = {.lex_state = 539}, - [1821] = {.lex_state = 536}, - [1822] = {.lex_state = 584}, - [1823] = {.lex_state = 539}, - [1824] = {.lex_state = 488}, - [1825] = {.lex_state = 556}, - [1826] = {.lex_state = 651, .external_lex_state = 3}, - [1827] = {.lex_state = 451}, - [1828] = {.lex_state = 478}, - [1829] = {.lex_state = 651, .external_lex_state = 3}, - [1830] = {.lex_state = 651, .external_lex_state = 3}, - [1831] = {.lex_state = 843}, - [1832] = {.lex_state = 536}, - [1833] = {.lex_state = 451}, - [1834] = {.lex_state = 843}, - [1835] = {.lex_state = 561}, - [1836] = {.lex_state = 617}, - [1837] = {.lex_state = 651, .external_lex_state = 3}, - [1838] = {.lex_state = 534}, - [1839] = {.lex_state = 545}, - [1840] = {.lex_state = 675, .external_lex_state = 3}, - [1841] = {.lex_state = 651, .external_lex_state = 3}, - [1842] = {.lex_state = 555}, - [1843] = {.lex_state = 488, .external_lex_state = 3}, - [1844] = {.lex_state = 271, .external_lex_state = 4}, - [1845] = {.lex_state = 447}, - [1846] = {.lex_state = 488, .external_lex_state = 3}, - [1847] = {.lex_state = 637}, - [1848] = {.lex_state = 644}, - [1849] = {.lex_state = 447}, - [1850] = {.lex_state = 447}, - [1851] = {.lex_state = 555}, - [1852] = {.lex_state = 534}, - [1853] = {.lex_state = 536}, - [1854] = {.lex_state = 555}, - [1855] = {.lex_state = 704}, - [1856] = {.lex_state = 451}, - [1857] = {.lex_state = 478}, - [1858] = {.lex_state = 536}, - [1859] = {.lex_state = 451}, - [1860] = {.lex_state = 561}, - [1861] = {.lex_state = 617}, - [1862] = {.lex_state = 704}, - [1863] = {.lex_state = 534}, - [1864] = {.lex_state = 545}, - [1865] = {.lex_state = 706}, + [1521] = {.lex_state = 541}, + [1522] = {.lex_state = 770, .external_lex_state = 3}, + [1523] = {.lex_state = 572}, + [1524] = {.lex_state = 495}, + [1525] = {.lex_state = 770, .external_lex_state = 3}, + [1526] = {.lex_state = 495}, + [1527] = {.lex_state = 553}, + [1528] = {.lex_state = 578}, + [1529] = {.lex_state = 578}, + [1530] = {.lex_state = 541}, + [1531] = {.lex_state = 543}, + [1532] = {.lex_state = 578}, + [1533] = {.lex_state = 541}, + [1534] = {.lex_state = 461}, + [1535] = {.lex_state = 543}, + [1536] = {.lex_state = 543}, + [1537] = {.lex_state = 771}, + [1538] = {.lex_state = 461}, + [1539] = {.lex_state = 771}, + [1540] = {.lex_state = 538}, + [1541] = {.lex_state = 461}, + [1542] = {.lex_state = 453}, + [1543] = {.lex_state = 485}, + [1544] = {.lex_state = 453}, + [1545] = {.lex_state = 461}, + [1546] = {.lex_state = 493}, + [1547] = {.lex_state = 485}, + [1548] = {.lex_state = 539}, + [1549] = {.lex_state = 773}, + [1550] = {.lex_state = 775}, + [1551] = {.lex_state = 771}, + [1552] = {.lex_state = 669}, + [1553] = {.lex_state = 775}, + [1554] = {.lex_state = 465, .external_lex_state = 3}, + [1555] = {.lex_state = 777, .external_lex_state = 3}, + [1556] = {.lex_state = 461}, + [1557] = {.lex_state = 777, .external_lex_state = 3}, + [1558] = {.lex_state = 560}, + [1559] = {.lex_state = 485}, + [1560] = {.lex_state = 461}, + [1561] = {.lex_state = 493}, + [1562] = {.lex_state = 461}, + [1563] = {.lex_state = 485}, + [1564] = {.lex_state = 539}, + [1565] = {.lex_state = 777, .external_lex_state = 3}, + [1566] = {.lex_state = 495, .external_lex_state = 3}, + [1567] = {.lex_state = 572}, + [1568] = {.lex_state = 495}, + [1569] = {.lex_state = 777, .external_lex_state = 3}, + [1570] = {.lex_state = 495}, + [1571] = {.lex_state = 644}, + [1572] = {.lex_state = 585}, + [1573] = {.lex_state = 553}, + [1574] = {.lex_state = 553}, + [1575] = {.lex_state = 553}, + [1576] = {.lex_state = 553}, + [1577] = {.lex_state = 578}, + [1578] = {.lex_state = 495}, + [1579] = {.lex_state = 485}, + [1580] = {.lex_state = 778}, + [1581] = {.lex_state = 541}, + [1582] = {.lex_state = 543}, + [1583] = {.lex_state = 656}, + [1584] = {.lex_state = 779, .external_lex_state = 4}, + [1585] = {.lex_state = 495, .external_lex_state = 3}, + [1586] = {.lex_state = 461}, + [1587] = {.lex_state = 495, .external_lex_state = 5}, + [1588] = {.lex_state = 578}, + [1589] = {.lex_state = 580}, + [1590] = {.lex_state = 461}, + [1591] = {.lex_state = 644}, + [1592] = {.lex_state = 585}, + [1593] = {.lex_state = 553}, + [1594] = {.lex_state = 553}, + [1595] = {.lex_state = 553}, + [1596] = {.lex_state = 553}, + [1597] = {.lex_state = 671}, + [1598] = {.lex_state = 495}, + [1599] = {.lex_state = 485}, + [1600] = {.lex_state = 656}, + [1601] = {.lex_state = 640}, + [1602] = {.lex_state = 461}, + [1603] = {.lex_state = 673}, + [1604] = {.lex_state = 453}, + [1605] = {.lex_state = 485}, + [1606] = {.lex_state = 568}, + [1607] = {.lex_state = 582}, + [1608] = {.lex_state = 543}, + [1609] = {.lex_state = 453}, + [1610] = {.lex_state = 585}, + [1611] = {.lex_state = 673}, + [1612] = {.lex_state = 541}, + [1613] = {.lex_state = 673}, + [1614] = {.lex_state = 553}, + [1615] = {.lex_state = 495, .external_lex_state = 3}, + [1616] = {.lex_state = 274, .external_lex_state = 4}, + [1617] = {.lex_state = 461}, + [1618] = {.lex_state = 495, .external_lex_state = 3}, + [1619] = {.lex_state = 580}, + [1620] = {.lex_state = 541}, + [1621] = {.lex_state = 543}, + [1622] = {.lex_state = 580}, + [1623] = {.lex_state = 675}, + [1624] = {.lex_state = 453}, + [1625] = {.lex_state = 485}, + [1626] = {.lex_state = 568}, + [1627] = {.lex_state = 543}, + [1628] = {.lex_state = 453}, + [1629] = {.lex_state = 582}, + [1630] = {.lex_state = 585}, + [1631] = {.lex_state = 675}, + [1632] = {.lex_state = 541}, + [1633] = {.lex_state = 584}, + [1634] = {.lex_state = 461}, + [1635] = {.lex_state = 644}, + [1636] = {.lex_state = 585}, + [1637] = {.lex_state = 553}, + [1638] = {.lex_state = 553}, + [1639] = {.lex_state = 553}, + [1640] = {.lex_state = 553}, + [1641] = {.lex_state = 676}, + [1642] = {.lex_state = 495}, + [1643] = {.lex_state = 485}, + [1644] = {.lex_state = 656}, + [1645] = {.lex_state = 640}, + [1646] = {.lex_state = 461}, + [1647] = {.lex_state = 678}, + [1648] = {.lex_state = 453}, + [1649] = {.lex_state = 485}, + [1650] = {.lex_state = 568}, + [1651] = {.lex_state = 582}, + [1652] = {.lex_state = 543}, + [1653] = {.lex_state = 453}, + [1654] = {.lex_state = 585}, + [1655] = {.lex_state = 678}, + [1656] = {.lex_state = 541}, + [1657] = {.lex_state = 678}, + [1658] = {.lex_state = 553}, + [1659] = {.lex_state = 495, .external_lex_state = 3}, + [1660] = {.lex_state = 274, .external_lex_state = 4}, + [1661] = {.lex_state = 461}, + [1662] = {.lex_state = 495, .external_lex_state = 3}, + [1663] = {.lex_state = 584}, + [1664] = {.lex_state = 541}, + [1665] = {.lex_state = 543}, + [1666] = {.lex_state = 584}, + [1667] = {.lex_state = 680}, + [1668] = {.lex_state = 453}, + [1669] = {.lex_state = 485}, + [1670] = {.lex_state = 568}, + [1671] = {.lex_state = 543}, + [1672] = {.lex_state = 453}, + [1673] = {.lex_state = 582}, + [1674] = {.lex_state = 585}, + [1675] = {.lex_state = 680}, + [1676] = {.lex_state = 541}, + [1677] = {.lex_state = 453}, + [1678] = {.lex_state = 836}, + [1679] = {.lex_state = 656}, + [1680] = {.lex_state = 453}, + [1681] = {.lex_state = 644}, + [1682] = {.lex_state = 585}, + [1683] = {.lex_state = 453}, + [1684] = {.lex_state = 554}, + [1685] = {.lex_state = 453, .external_lex_state = 3}, + [1686] = {.lex_state = 453}, + [1687] = {.lex_state = 838}, + [1688] = {.lex_state = 453}, + [1689] = {.lex_state = 495}, + [1690] = {.lex_state = 453}, + [1691] = {.lex_state = 840}, + [1692] = {.lex_state = 840}, + [1693] = {.lex_state = 453}, + [1694] = {.lex_state = 453}, + [1695] = {.lex_state = 453}, + [1696] = {.lex_state = 684}, + [1697] = {.lex_state = 842}, + [1698] = {.lex_state = 0, .external_lex_state = 3}, + [1699] = {.lex_state = 684}, + [1700] = {.lex_state = 587, .external_lex_state = 4}, + [1701] = {.lex_state = 495, .external_lex_state = 3}, + [1702] = {.lex_state = 587, .external_lex_state = 4}, + [1703] = {.lex_state = 461}, + [1704] = {.lex_state = 495}, + [1705] = {.lex_state = 844, .external_lex_state = 3}, + [1706] = {.lex_state = 553}, + [1707] = {.lex_state = 632}, + [1708] = {.lex_state = 541}, + [1709] = {.lex_state = 633}, + [1710] = {.lex_state = 634}, + [1711] = {.lex_state = 844, .external_lex_state = 3}, + [1712] = {.lex_state = 844, .external_lex_state = 3}, + [1713] = {.lex_state = 495, .external_lex_state = 3}, + [1714] = {.lex_state = 844, .external_lex_state = 3}, + [1715] = {.lex_state = 686, .external_lex_state = 3}, + [1716] = {.lex_state = 453}, + [1717] = {.lex_state = 485}, + [1718] = {.lex_state = 568}, + [1719] = {.lex_state = 846, .external_lex_state = 3}, + [1720] = {.lex_state = 461}, + [1721] = {.lex_state = 846, .external_lex_state = 3}, + [1722] = {.lex_state = 538}, + [1723] = {.lex_state = 461}, + [1724] = {.lex_state = 461}, + [1725] = {.lex_state = 485}, + [1726] = {.lex_state = 493}, + [1727] = {.lex_state = 485}, + [1728] = {.lex_state = 539}, + [1729] = {.lex_state = 846, .external_lex_state = 3}, + [1730] = {.lex_state = 846, .external_lex_state = 3}, + [1731] = {.lex_state = 495, .external_lex_state = 3}, + [1732] = {.lex_state = 274}, + [1733] = {.lex_state = 495, .external_lex_state = 3}, + [1734] = {.lex_state = 274}, + [1735] = {.lex_state = 543}, + [1736] = {.lex_state = 453}, + [1737] = {.lex_state = 582}, + [1738] = {.lex_state = 585}, + [1739] = {.lex_state = 686, .external_lex_state = 3}, + [1740] = {.lex_state = 541}, + [1741] = {.lex_state = 461}, + [1742] = {.lex_state = 553, .external_lex_state = 4}, + [1743] = {.lex_state = 495, .external_lex_state = 3}, + [1744] = {.lex_state = 553, .external_lex_state = 4}, + [1745] = {.lex_state = 0, .external_lex_state = 2}, + [1746] = {.lex_state = 688, .external_lex_state = 3}, + [1747] = {.lex_state = 688, .external_lex_state = 3}, + [1748] = {.lex_state = 669, .external_lex_state = 3}, + [1749] = {.lex_state = 553}, + [1750] = {.lex_state = 553}, + [1751] = {.lex_state = 543}, + [1752] = {.lex_state = 633}, + [1753] = {.lex_state = 553}, + [1754] = {.lex_state = 495}, + [1755] = {.lex_state = 554}, + [1756] = {.lex_state = 669, .external_lex_state = 3}, + [1757] = {.lex_state = 453}, + [1758] = {.lex_state = 485}, + [1759] = {.lex_state = 669, .external_lex_state = 3}, + [1760] = {.lex_state = 669, .external_lex_state = 3}, + [1761] = {.lex_state = 568}, + [1762] = {.lex_state = 848}, + [1763] = {.lex_state = 543}, + [1764] = {.lex_state = 453}, + [1765] = {.lex_state = 848}, + [1766] = {.lex_state = 582}, + [1767] = {.lex_state = 585}, + [1768] = {.lex_state = 669, .external_lex_state = 3}, + [1769] = {.lex_state = 541}, + [1770] = {.lex_state = 669, .external_lex_state = 3}, + [1771] = {.lex_state = 688, .external_lex_state = 3}, + [1772] = {.lex_state = 715}, + [1773] = {.lex_state = 453}, + [1774] = {.lex_state = 485}, + [1775] = {.lex_state = 568}, + [1776] = {.lex_state = 543}, + [1777] = {.lex_state = 453}, + [1778] = {.lex_state = 582}, + [1779] = {.lex_state = 585}, + [1780] = {.lex_state = 715}, + [1781] = {.lex_state = 541}, + [1782] = {.lex_state = 553}, + [1783] = {.lex_state = 461}, + [1784] = {.lex_state = 627, .external_lex_state = 3}, + [1785] = {.lex_state = 716}, + [1786] = {.lex_state = 453}, + [1787] = {.lex_state = 485}, + [1788] = {.lex_state = 568}, + [1789] = {.lex_state = 543}, + [1790] = {.lex_state = 453}, + [1791] = {.lex_state = 582}, + [1792] = {.lex_state = 585}, + [1793] = {.lex_state = 716}, + [1794] = {.lex_state = 541}, + [1795] = {.lex_state = 461}, + [1796] = {.lex_state = 656}, + [1797] = {.lex_state = 644}, + [1798] = {.lex_state = 495}, + [1799] = {.lex_state = 585}, + [1800] = {.lex_state = 495}, + [1801] = {.lex_state = 741}, + [1802] = {.lex_state = 495}, + [1803] = {.lex_state = 485}, + [1804] = {.lex_state = 745}, + [1805] = {.lex_state = 495}, + [1806] = {.lex_state = 274}, + [1807] = {.lex_state = 495, .external_lex_state = 3}, + [1808] = {.lex_state = 274}, + [1809] = {.lex_state = 461}, + [1810] = {.lex_state = 461}, + [1811] = {.lex_state = 627, .external_lex_state = 3}, + [1812] = {.lex_state = 495}, + [1813] = {.lex_state = 850}, + [1814] = {.lex_state = 553}, + [1815] = {.lex_state = 632}, + [1816] = {.lex_state = 541}, + [1817] = {.lex_state = 633}, + [1818] = {.lex_state = 634}, + [1819] = {.lex_state = 850}, + [1820] = {.lex_state = 850}, + [1821] = {.lex_state = 656}, + [1822] = {.lex_state = 850}, + [1823] = {.lex_state = 852}, + [1824] = {.lex_state = 717}, + [1825] = {.lex_state = 453}, + [1826] = {.lex_state = 485}, + [1827] = {.lex_state = 568}, + [1828] = {.lex_state = 453}, + [1829] = {.lex_state = 535}, + [1830] = {.lex_state = 485}, + [1831] = {.lex_state = 274, .external_lex_state = 2}, + [1832] = {.lex_state = 485}, + [1833] = {.lex_state = 541}, + [1834] = {.lex_state = 543}, + [1835] = {.lex_state = 572}, + [1836] = {.lex_state = 495}, + [1837] = {.lex_state = 495}, + [1838] = {.lex_state = 553}, + [1839] = {.lex_state = 485}, + [1840] = {.lex_state = 759}, + [1841] = {.lex_state = 656}, + [1842] = {.lex_state = 274}, + [1843] = {.lex_state = 495, .external_lex_state = 3}, + [1844] = {.lex_state = 274}, + [1845] = {.lex_state = 543}, + [1846] = {.lex_state = 453}, + [1847] = {.lex_state = 585}, + [1848] = {.lex_state = 582}, + [1849] = {.lex_state = 717}, + [1850] = {.lex_state = 541}, + [1851] = {.lex_state = 461}, + [1852] = {.lex_state = 718}, + [1853] = {.lex_state = 453}, + [1854] = {.lex_state = 718}, + [1855] = {.lex_state = 535}, + [1856] = {.lex_state = 461}, + [1857] = {.lex_state = 538}, + [1858] = {.lex_state = 461}, + [1859] = {.lex_state = 485}, + [1860] = {.lex_state = 274, .external_lex_state = 2}, + [1861] = {.lex_state = 485}, + [1862] = {.lex_state = 461}, + [1863] = {.lex_state = 493}, + [1864] = {.lex_state = 461}, + [1865] = {.lex_state = 485}, [1866] = {.lex_state = 539}, - [1867] = {.lex_state = 538}, - [1868] = {.lex_state = 451}, - [1869] = {.lex_state = 478}, - [1870] = {.lex_state = 536}, - [1871] = {.lex_state = 451}, - [1872] = {.lex_state = 561}, - [1873] = {.lex_state = 617}, - [1874] = {.lex_state = 538}, - [1875] = {.lex_state = 534}, - [1876] = {.lex_state = 545}, - [1877] = {.lex_state = 488, .external_lex_state = 3}, - [1878] = {.lex_state = 271, .external_lex_state = 4}, - [1879] = {.lex_state = 447}, - [1880] = {.lex_state = 488, .external_lex_state = 3}, - [1881] = {.lex_state = 447}, - [1882] = {.lex_state = 447}, - [1883] = {.lex_state = 710}, - [1884] = {.lex_state = 539}, - [1885] = {.lex_state = 760}, - [1886] = {.lex_state = 447}, - [1887] = {.lex_state = 271, .external_lex_state = 2}, - [1888] = {.lex_state = 523}, - [1889] = {.lex_state = 760}, - [1890] = {.lex_state = 544}, - [1891] = {.lex_state = 451}, - [1892] = {.lex_state = 478}, - [1893] = {.lex_state = 486}, - [1894] = {.lex_state = 478}, - [1895] = {.lex_state = 447}, - [1896] = {.lex_state = 532}, - [1897] = {.lex_state = 478}, - [1898] = {.lex_state = 534}, - [1899] = {.lex_state = 447}, - [1900] = {.lex_state = 488}, - [1901] = {.lex_state = 488}, - [1902] = {.lex_state = 539}, - [1903] = {.lex_state = 760}, - [1904] = {.lex_state = 555}, - [1905] = {.lex_state = 760}, - [1906] = {.lex_state = 488}, - [1907] = {.lex_state = 488, .external_lex_state = 3}, - [1908] = {.lex_state = 447}, - [1909] = {.lex_state = 488, .external_lex_state = 5}, - [1910] = {.lex_state = 536}, - [1911] = {.lex_state = 615}, - [1912] = {.lex_state = 488, .external_lex_state = 3}, - [1913] = {.lex_state = 271, .external_lex_state = 4}, - [1914] = {.lex_state = 447}, - [1915] = {.lex_state = 488, .external_lex_state = 3}, - [1916] = {.lex_state = 628}, - [1917] = {.lex_state = 561}, - [1918] = {.lex_state = 539}, - [1919] = {.lex_state = 539}, - [1920] = {.lex_state = 539}, - [1921] = {.lex_state = 539}, - [1922] = {.lex_state = 617}, - [1923] = {.lex_state = 478}, - [1924] = {.lex_state = 488}, - [1925] = {.lex_state = 637}, - [1926] = {.lex_state = 644}, - [1927] = {.lex_state = 447}, - [1928] = {.lex_state = 447}, - [1929] = {.lex_state = 615}, - [1930] = {.lex_state = 534}, - [1931] = {.lex_state = 536}, - [1932] = {.lex_state = 615}, - [1933] = {.lex_state = 715}, - [1934] = {.lex_state = 451}, - [1935] = {.lex_state = 478}, - [1936] = {.lex_state = 536}, - [1937] = {.lex_state = 451}, - [1938] = {.lex_state = 561}, - [1939] = {.lex_state = 617}, - [1940] = {.lex_state = 715}, - [1941] = {.lex_state = 534}, - [1942] = {.lex_state = 545}, - [1943] = {.lex_state = 715}, - [1944] = {.lex_state = 539}, - [1945] = {.lex_state = 717}, - [1946] = {.lex_state = 451}, - [1947] = {.lex_state = 478}, - [1948] = {.lex_state = 536}, - [1949] = {.lex_state = 451}, - [1950] = {.lex_state = 561}, - [1951] = {.lex_state = 617}, - [1952] = {.lex_state = 717}, - [1953] = {.lex_state = 534}, - [1954] = {.lex_state = 545}, - [1955] = {.lex_state = 488, .external_lex_state = 3}, - [1956] = {.lex_state = 271, .external_lex_state = 4}, - [1957] = {.lex_state = 447}, - [1958] = {.lex_state = 488, .external_lex_state = 3}, - [1959] = {.lex_state = 447}, - [1960] = {.lex_state = 447}, - [1961] = {.lex_state = 720}, - [1962] = {.lex_state = 539}, - [1963] = {.lex_state = 447}, - [1964] = {.lex_state = 620}, - [1965] = {.lex_state = 447}, - [1966] = {.lex_state = 637}, - [1967] = {.lex_state = 628}, - [1968] = {.lex_state = 488}, - [1969] = {.lex_state = 561}, - [1970] = {.lex_state = 620}, - [1971] = {.lex_state = 447}, - [1972] = {.lex_state = 447}, - [1973] = {.lex_state = 722, .external_lex_state = 3}, - [1974] = {.lex_state = 451}, - [1975] = {.lex_state = 478}, - [1976] = {.lex_state = 536}, - [1977] = {.lex_state = 451}, - [1978] = {.lex_state = 561}, - [1979] = {.lex_state = 447}, - [1980] = {.lex_state = 531}, - [1981] = {.lex_state = 486}, - [1982] = {.lex_state = 478}, - [1983] = {.lex_state = 532}, - [1984] = {.lex_state = 617}, - [1985] = {.lex_state = 722, .external_lex_state = 3}, - [1986] = {.lex_state = 534}, - [1987] = {.lex_state = 545}, - [1988] = {.lex_state = 447}, - [1989] = {.lex_state = 447}, - [1990] = {.lex_state = 531}, - [1991] = {.lex_state = 486}, - [1992] = {.lex_state = 532}, - [1993] = {.lex_state = 622, .external_lex_state = 3}, - [1994] = {.lex_state = 622, .external_lex_state = 3}, - [1995] = {.lex_state = 534}, - [1996] = {.lex_state = 536}, - [1997] = {.lex_state = 622, .external_lex_state = 3}, - [1998] = {.lex_state = 488, .external_lex_state = 3}, - [1999] = {.lex_state = 447}, - [2000] = {.lex_state = 628}, - [2001] = {.lex_state = 561}, - [2002] = {.lex_state = 651, .external_lex_state = 3}, - [2003] = {.lex_state = 675, .external_lex_state = 3}, - [2004] = {.lex_state = 539}, - [2005] = {.lex_state = 539}, - [2006] = {.lex_state = 539}, - [2007] = {.lex_state = 539}, - [2008] = {.lex_state = 624}, - [2009] = {.lex_state = 478}, - [2010] = {.lex_state = 488}, - [2011] = {.lex_state = 637}, - [2012] = {.lex_state = 488, .external_lex_state = 3}, - [2013] = {.lex_state = 488, .external_lex_state = 5}, - [2014] = {.lex_state = 624}, - [2015] = {.lex_state = 628}, - [2016] = {.lex_state = 561}, - [2017] = {.lex_state = 539}, - [2018] = {.lex_state = 539}, - [2019] = {.lex_state = 539}, - [2020] = {.lex_state = 539}, - [2021] = {.lex_state = 523}, - [2022] = {.lex_state = 478}, - [2023] = {.lex_state = 488}, - [2024] = {.lex_state = 637}, - [2025] = {.lex_state = 523}, - [2026] = {.lex_state = 271}, - [2027] = {.lex_state = 488, .external_lex_state = 3}, - [2028] = {.lex_state = 271}, - [2029] = {.lex_state = 845, .external_lex_state = 3}, - [2030] = {.lex_state = 539}, - [2031] = {.lex_state = 583}, - [2032] = {.lex_state = 534}, - [2033] = {.lex_state = 584}, - [2034] = {.lex_state = 585}, - [2035] = {.lex_state = 845, .external_lex_state = 3}, - [2036] = {.lex_state = 845, .external_lex_state = 3}, - [2037] = {.lex_state = 488, .external_lex_state = 3}, - [2038] = {.lex_state = 845, .external_lex_state = 3}, - [2039] = {.lex_state = 488}, - [2040] = {.lex_state = 723, .external_lex_state = 3}, - [2041] = {.lex_state = 451}, - [2042] = {.lex_state = 478}, - [2043] = {.lex_state = 536}, - [2044] = {.lex_state = 451}, - [2045] = {.lex_state = 561}, - [2046] = {.lex_state = 617}, - [2047] = {.lex_state = 723, .external_lex_state = 3}, - [2048] = {.lex_state = 534}, - [2049] = {.lex_state = 847, .external_lex_state = 3}, - [2050] = {.lex_state = 447}, - [2051] = {.lex_state = 847, .external_lex_state = 3}, - [2052] = {.lex_state = 531}, - [2053] = {.lex_state = 478}, - [2054] = {.lex_state = 486}, - [2055] = {.lex_state = 478}, - [2056] = {.lex_state = 447}, - [2057] = {.lex_state = 532}, - [2058] = {.lex_state = 447}, - [2059] = {.lex_state = 847, .external_lex_state = 3}, - [2060] = {.lex_state = 847, .external_lex_state = 3}, - [2061] = {.lex_state = 488, .external_lex_state = 3}, - [2062] = {.lex_state = 447}, - [2063] = {.lex_state = 545}, - [2064] = {.lex_state = 724, .external_lex_state = 3}, - [2065] = {.lex_state = 451}, - [2066] = {.lex_state = 271}, - [2067] = {.lex_state = 488, .external_lex_state = 3}, - [2068] = {.lex_state = 271}, - [2069] = {.lex_state = 849, .external_lex_state = 3}, - [2070] = {.lex_state = 539}, - [2071] = {.lex_state = 583}, - [2072] = {.lex_state = 534}, - [2073] = {.lex_state = 584}, - [2074] = {.lex_state = 585}, - [2075] = {.lex_state = 849, .external_lex_state = 3}, - [2076] = {.lex_state = 849, .external_lex_state = 3}, - [2077] = {.lex_state = 488, .external_lex_state = 3}, - [2078] = {.lex_state = 849, .external_lex_state = 3}, - [2079] = {.lex_state = 478}, - [2080] = {.lex_state = 488}, - [2081] = {.lex_state = 536}, - [2082] = {.lex_state = 451}, - [2083] = {.lex_state = 561}, - [2084] = {.lex_state = 447}, - [2085] = {.lex_state = 531}, - [2086] = {.lex_state = 486}, - [2087] = {.lex_state = 478}, - [2088] = {.lex_state = 532}, - [2089] = {.lex_state = 617}, - [2090] = {.lex_state = 724, .external_lex_state = 3}, - [2091] = {.lex_state = 534}, - [2092] = {.lex_state = 851, .external_lex_state = 3}, - [2093] = {.lex_state = 447}, - [2094] = {.lex_state = 851, .external_lex_state = 3}, - [2095] = {.lex_state = 531}, - [2096] = {.lex_state = 478}, - [2097] = {.lex_state = 486}, - [2098] = {.lex_state = 478}, - [2099] = {.lex_state = 447}, - [2100] = {.lex_state = 532}, - [2101] = {.lex_state = 447}, - [2102] = {.lex_state = 851, .external_lex_state = 3}, - [2103] = {.lex_state = 851, .external_lex_state = 3}, - [2104] = {.lex_state = 488, .external_lex_state = 3}, - [2105] = {.lex_state = 447}, - [2106] = {.lex_state = 545}, - [2107] = {.lex_state = 447}, - [2108] = {.lex_state = 853, .external_lex_state = 3}, - [2109] = {.lex_state = 853, .external_lex_state = 3}, - [2110] = {.lex_state = 447}, - [2111] = {.lex_state = 531}, - [2112] = {.lex_state = 478}, - [2113] = {.lex_state = 486}, - [2114] = {.lex_state = 478}, - [2115] = {.lex_state = 447}, - [2116] = {.lex_state = 532}, - [2117] = {.lex_state = 447}, - [2118] = {.lex_state = 853, .external_lex_state = 3}, - [2119] = {.lex_state = 538}, - [2120] = {.lex_state = 853, .external_lex_state = 3}, - [2121] = {.lex_state = 447}, - [2122] = {.lex_state = 531}, - [2123] = {.lex_state = 486}, - [2124] = {.lex_state = 532}, - [2125] = {.lex_state = 626, .external_lex_state = 3}, - [2126] = {.lex_state = 626, .external_lex_state = 3}, - [2127] = {.lex_state = 534}, - [2128] = {.lex_state = 536}, - [2129] = {.lex_state = 626, .external_lex_state = 3}, - [2130] = {.lex_state = 725, .external_lex_state = 3}, - [2131] = {.lex_state = 451}, - [2132] = {.lex_state = 271}, - [2133] = {.lex_state = 488, .external_lex_state = 3}, - [2134] = {.lex_state = 271}, - [2135] = {.lex_state = 854, .external_lex_state = 3}, - [2136] = {.lex_state = 539}, - [2137] = {.lex_state = 583}, - [2138] = {.lex_state = 534}, - [2139] = {.lex_state = 584}, - [2140] = {.lex_state = 585}, - [2141] = {.lex_state = 854, .external_lex_state = 3}, - [2142] = {.lex_state = 854, .external_lex_state = 3}, - [2143] = {.lex_state = 488, .external_lex_state = 3}, - [2144] = {.lex_state = 854, .external_lex_state = 3}, - [2145] = {.lex_state = 478}, - [2146] = {.lex_state = 488}, - [2147] = {.lex_state = 536}, - [2148] = {.lex_state = 451}, - [2149] = {.lex_state = 561}, - [2150] = {.lex_state = 447}, - [2151] = {.lex_state = 531}, - [2152] = {.lex_state = 486}, - [2153] = {.lex_state = 478}, - [2154] = {.lex_state = 532}, - [2155] = {.lex_state = 617}, - [2156] = {.lex_state = 725, .external_lex_state = 3}, - [2157] = {.lex_state = 534}, - [2158] = {.lex_state = 856, .external_lex_state = 3}, - [2159] = {.lex_state = 447}, - [2160] = {.lex_state = 856, .external_lex_state = 3}, - [2161] = {.lex_state = 531}, - [2162] = {.lex_state = 478}, - [2163] = {.lex_state = 486}, - [2164] = {.lex_state = 478}, - [2165] = {.lex_state = 447}, - [2166] = {.lex_state = 532}, - [2167] = {.lex_state = 447}, - [2168] = {.lex_state = 856, .external_lex_state = 3}, - [2169] = {.lex_state = 856, .external_lex_state = 3}, - [2170] = {.lex_state = 488, .external_lex_state = 3}, - [2171] = {.lex_state = 447}, - [2172] = {.lex_state = 545}, - [2173] = {.lex_state = 447}, - [2174] = {.lex_state = 858, .external_lex_state = 3}, - [2175] = {.lex_state = 858, .external_lex_state = 3}, - [2176] = {.lex_state = 447}, - [2177] = {.lex_state = 531}, - [2178] = {.lex_state = 478}, - [2179] = {.lex_state = 486}, - [2180] = {.lex_state = 478}, - [2181] = {.lex_state = 447}, - [2182] = {.lex_state = 532}, - [2183] = {.lex_state = 447}, - [2184] = {.lex_state = 858, .external_lex_state = 3}, - [2185] = {.lex_state = 538}, - [2186] = {.lex_state = 858, .external_lex_state = 3}, - [2187] = {.lex_state = 447}, - [2188] = {.lex_state = 531}, - [2189] = {.lex_state = 486}, - [2190] = {.lex_state = 532}, - [2191] = {.lex_state = 0, .external_lex_state = 2}, - [2192] = {.lex_state = 704}, - [2193] = {.lex_state = 271}, - [2194] = {.lex_state = 488, .external_lex_state = 3}, - [2195] = {.lex_state = 271}, - [2196] = {.lex_state = 859, .external_lex_state = 3}, - [2197] = {.lex_state = 539}, - [2198] = {.lex_state = 583}, - [2199] = {.lex_state = 534}, - [2200] = {.lex_state = 584}, - [2201] = {.lex_state = 585}, - [2202] = {.lex_state = 859, .external_lex_state = 3}, - [2203] = {.lex_state = 859, .external_lex_state = 3}, - [2204] = {.lex_state = 488, .external_lex_state = 3}, - [2205] = {.lex_state = 859, .external_lex_state = 3}, - [2206] = {.lex_state = 488}, - [2207] = {.lex_state = 726, .external_lex_state = 3}, - [2208] = {.lex_state = 451}, - [2209] = {.lex_state = 478}, - [2210] = {.lex_state = 536}, - [2211] = {.lex_state = 451}, - [2212] = {.lex_state = 561}, - [2213] = {.lex_state = 617}, - [2214] = {.lex_state = 726, .external_lex_state = 3}, - [2215] = {.lex_state = 534}, - [2216] = {.lex_state = 861, .external_lex_state = 3}, - [2217] = {.lex_state = 447}, - [2218] = {.lex_state = 861, .external_lex_state = 3}, - [2219] = {.lex_state = 531}, - [2220] = {.lex_state = 478}, - [2221] = {.lex_state = 486}, - [2222] = {.lex_state = 478}, - [2223] = {.lex_state = 447}, - [2224] = {.lex_state = 532}, - [2225] = {.lex_state = 447}, - [2226] = {.lex_state = 861, .external_lex_state = 3}, - [2227] = {.lex_state = 861, .external_lex_state = 3}, - [2228] = {.lex_state = 488, .external_lex_state = 3}, - [2229] = {.lex_state = 447}, - [2230] = {.lex_state = 545}, - [2231] = {.lex_state = 727, .external_lex_state = 3}, - [2232] = {.lex_state = 451}, - [2233] = {.lex_state = 271}, - [2234] = {.lex_state = 488, .external_lex_state = 3}, - [2235] = {.lex_state = 271}, - [2236] = {.lex_state = 863, .external_lex_state = 3}, - [2237] = {.lex_state = 539}, - [2238] = {.lex_state = 583}, - [2239] = {.lex_state = 534}, - [2240] = {.lex_state = 584}, - [2241] = {.lex_state = 585}, - [2242] = {.lex_state = 863, .external_lex_state = 3}, - [2243] = {.lex_state = 863, .external_lex_state = 3}, - [2244] = {.lex_state = 488, .external_lex_state = 3}, - [2245] = {.lex_state = 863, .external_lex_state = 3}, - [2246] = {.lex_state = 478}, - [2247] = {.lex_state = 488}, - [2248] = {.lex_state = 536}, - [2249] = {.lex_state = 451}, - [2250] = {.lex_state = 561}, - [2251] = {.lex_state = 447}, - [2252] = {.lex_state = 531}, - [2253] = {.lex_state = 486}, - [2254] = {.lex_state = 478}, - [2255] = {.lex_state = 532}, - [2256] = {.lex_state = 617}, - [2257] = {.lex_state = 727, .external_lex_state = 3}, - [2258] = {.lex_state = 534}, - [2259] = {.lex_state = 865, .external_lex_state = 3}, - [2260] = {.lex_state = 447}, - [2261] = {.lex_state = 865, .external_lex_state = 3}, - [2262] = {.lex_state = 531}, - [2263] = {.lex_state = 478}, - [2264] = {.lex_state = 486}, - [2265] = {.lex_state = 478}, - [2266] = {.lex_state = 447}, - [2267] = {.lex_state = 532}, - [2268] = {.lex_state = 447}, - [2269] = {.lex_state = 865, .external_lex_state = 3}, - [2270] = {.lex_state = 865, .external_lex_state = 3}, - [2271] = {.lex_state = 488, .external_lex_state = 3}, - [2272] = {.lex_state = 447}, - [2273] = {.lex_state = 545}, - [2274] = {.lex_state = 447}, - [2275] = {.lex_state = 867, .external_lex_state = 3}, - [2276] = {.lex_state = 867, .external_lex_state = 3}, - [2277] = {.lex_state = 447}, - [2278] = {.lex_state = 531}, - [2279] = {.lex_state = 478}, - [2280] = {.lex_state = 486}, - [2281] = {.lex_state = 478}, - [2282] = {.lex_state = 447}, - [2283] = {.lex_state = 532}, - [2284] = {.lex_state = 447}, - [2285] = {.lex_state = 867, .external_lex_state = 3}, - [2286] = {.lex_state = 538}, - [2287] = {.lex_state = 867, .external_lex_state = 3}, - [2288] = {.lex_state = 447}, - [2289] = {.lex_state = 531}, - [2290] = {.lex_state = 486}, - [2291] = {.lex_state = 532}, - [2292] = {.lex_state = 627}, - [2293] = {.lex_state = 488, .external_lex_state = 3}, - [2294] = {.lex_state = 271, .external_lex_state = 4}, - [2295] = {.lex_state = 447}, - [2296] = {.lex_state = 488, .external_lex_state = 3}, - [2297] = {.lex_state = 628}, - [2298] = {.lex_state = 561}, - [2299] = {.lex_state = 539}, - [2300] = {.lex_state = 539}, - [2301] = {.lex_state = 539}, - [2302] = {.lex_state = 539}, - [2303] = {.lex_state = 728}, - [2304] = {.lex_state = 478}, - [2305] = {.lex_state = 488}, - [2306] = {.lex_state = 637}, - [2307] = {.lex_state = 644}, - [2308] = {.lex_state = 447}, - [2309] = {.lex_state = 447}, - [2310] = {.lex_state = 627}, - [2311] = {.lex_state = 534}, - [2312] = {.lex_state = 536}, - [2313] = {.lex_state = 627}, - [2314] = {.lex_state = 732}, - [2315] = {.lex_state = 451}, - [2316] = {.lex_state = 478}, - [2317] = {.lex_state = 536}, - [2318] = {.lex_state = 451}, - [2319] = {.lex_state = 561}, - [2320] = {.lex_state = 617}, - [2321] = {.lex_state = 732}, - [2322] = {.lex_state = 534}, - [2323] = {.lex_state = 545}, - [2324] = {.lex_state = 734}, - [2325] = {.lex_state = 539}, - [2326] = {.lex_state = 488}, - [2327] = {.lex_state = 539}, - [2328] = {.lex_state = 488}, - [2329] = {.lex_state = 451}, - [2330] = {.lex_state = 447}, - [2331] = {.lex_state = 549}, - [2332] = {.lex_state = 488, .external_lex_state = 3}, - [2333] = {.lex_state = 549}, - [2334] = {.lex_state = 447}, - [2335] = {.lex_state = 630}, - [2336] = {.lex_state = 447}, - [2337] = {.lex_state = 637}, - [2338] = {.lex_state = 628}, - [2339] = {.lex_state = 488}, - [2340] = {.lex_state = 561}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 447}, - [2343] = {.lex_state = 549}, - [2344] = {.lex_state = 447}, - [2345] = {.lex_state = 585, .external_lex_state = 4}, - [2346] = {.lex_state = 637}, - [2347] = {.lex_state = 447}, - [2348] = {.lex_state = 488, .external_lex_state = 3}, - [2349] = {.lex_state = 271, .external_lex_state = 4}, - [2350] = {.lex_state = 447}, - [2351] = {.lex_state = 488, .external_lex_state = 3}, - [2352] = {.lex_state = 447}, - [2353] = {.lex_state = 586}, - [2354] = {.lex_state = 536}, - [2355] = {.lex_state = 478}, - [2356] = {.lex_state = 868}, - [2357] = {.lex_state = 868}, - [2358] = {.lex_state = 870}, - [2359] = {.lex_state = 870}, - [2360] = {.lex_state = 740}, - [2361] = {.lex_state = 539}, - [2362] = {.lex_state = 488}, - [2363] = {.lex_state = 539}, - [2364] = {.lex_state = 488}, - [2365] = {.lex_state = 478}, - [2366] = {.lex_state = 549}, - [2367] = {.lex_state = 447}, - [2368] = {.lex_state = 447}, - [2369] = {.lex_state = 447}, - [2370] = {.lex_state = 447}, - [2371] = {.lex_state = 549}, - [2372] = {.lex_state = 540}, - [2373] = {.lex_state = 488}, - [2374] = {.lex_state = 534}, - [2375] = {.lex_state = 636}, - [2376] = {.lex_state = 488, .external_lex_state = 3}, - [2377] = {.lex_state = 271, .external_lex_state = 4}, - [2378] = {.lex_state = 447}, - [2379] = {.lex_state = 488, .external_lex_state = 3}, - [2380] = {.lex_state = 628}, - [2381] = {.lex_state = 561}, - [2382] = {.lex_state = 539}, - [2383] = {.lex_state = 539}, - [2384] = {.lex_state = 539}, - [2385] = {.lex_state = 539}, - [2386] = {.lex_state = 742}, - [2387] = {.lex_state = 478}, - [2388] = {.lex_state = 488}, - [2389] = {.lex_state = 637}, - [2390] = {.lex_state = 644}, - [2391] = {.lex_state = 447}, - [2392] = {.lex_state = 447}, - [2393] = {.lex_state = 636}, - [2394] = {.lex_state = 534}, - [2395] = {.lex_state = 536}, - [2396] = {.lex_state = 636}, - [2397] = {.lex_state = 744}, - [2398] = {.lex_state = 451}, - [2399] = {.lex_state = 478}, - [2400] = {.lex_state = 536}, - [2401] = {.lex_state = 451}, - [2402] = {.lex_state = 561}, - [2403] = {.lex_state = 617}, - [2404] = {.lex_state = 744}, - [2405] = {.lex_state = 534}, - [2406] = {.lex_state = 545}, - [2407] = {.lex_state = 744}, - [2408] = {.lex_state = 539}, - [2409] = {.lex_state = 488}, - [2410] = {.lex_state = 539}, - [2411] = {.lex_state = 488}, - [2412] = {.lex_state = 561}, - [2413] = {.lex_state = 488, .external_lex_state = 3}, - [2414] = {.lex_state = 271, .external_lex_state = 4}, - [2415] = {.lex_state = 447}, - [2416] = {.lex_state = 488, .external_lex_state = 3}, - [2417] = {.lex_state = 447}, - [2418] = {.lex_state = 447}, - [2419] = {.lex_state = 748}, - [2420] = {.lex_state = 539}, - [2421] = {.lex_state = 488}, - [2422] = {.lex_state = 539}, - [2423] = {.lex_state = 488}, - [2424] = {.lex_state = 534}, - [2425] = {.lex_state = 639}, - [2426] = {.lex_state = 639}, - [2427] = {.lex_state = 534}, - [2428] = {.lex_state = 536}, - [2429] = {.lex_state = 639}, - [2430] = {.lex_state = 643}, - [2431] = {.lex_state = 643}, - [2432] = {.lex_state = 534}, - [2433] = {.lex_state = 536}, - [2434] = {.lex_state = 643}, - [2435] = {.lex_state = 447}, - [2436] = {.lex_state = 556}, - [2437] = {.lex_state = 447}, - [2438] = {.lex_state = 555, .external_lex_state = 3}, - [2439] = {.lex_state = 451}, - [2440] = {.lex_state = 271}, - [2441] = {.lex_state = 488, .external_lex_state = 3}, - [2442] = {.lex_state = 271}, - [2443] = {.lex_state = 620, .external_lex_state = 3}, - [2444] = {.lex_state = 539}, - [2445] = {.lex_state = 583}, - [2446] = {.lex_state = 534}, - [2447] = {.lex_state = 584}, - [2448] = {.lex_state = 585}, - [2449] = {.lex_state = 620, .external_lex_state = 3}, - [2450] = {.lex_state = 620, .external_lex_state = 3}, - [2451] = {.lex_state = 488, .external_lex_state = 3}, - [2452] = {.lex_state = 620, .external_lex_state = 3}, - [2453] = {.lex_state = 478}, - [2454] = {.lex_state = 488}, - [2455] = {.lex_state = 536}, - [2456] = {.lex_state = 451}, - [2457] = {.lex_state = 561}, - [2458] = {.lex_state = 447}, - [2459] = {.lex_state = 531}, - [2460] = {.lex_state = 486}, - [2461] = {.lex_state = 478}, - [2462] = {.lex_state = 532}, - [2463] = {.lex_state = 617}, - [2464] = {.lex_state = 555, .external_lex_state = 3}, - [2465] = {.lex_state = 534}, - [2466] = {.lex_state = 704, .external_lex_state = 3}, - [2467] = {.lex_state = 447}, - [2468] = {.lex_state = 704, .external_lex_state = 3}, - [2469] = {.lex_state = 531}, - [2470] = {.lex_state = 478}, - [2471] = {.lex_state = 486}, - [2472] = {.lex_state = 478}, - [2473] = {.lex_state = 447}, - [2474] = {.lex_state = 532}, - [2475] = {.lex_state = 447}, - [2476] = {.lex_state = 704, .external_lex_state = 3}, - [2477] = {.lex_state = 704, .external_lex_state = 3}, - [2478] = {.lex_state = 488, .external_lex_state = 3}, - [2479] = {.lex_state = 447}, - [2480] = {.lex_state = 545}, - [2481] = {.lex_state = 447}, - [2482] = {.lex_state = 538, .external_lex_state = 3}, - [2483] = {.lex_state = 538, .external_lex_state = 3}, - [2484] = {.lex_state = 447}, - [2485] = {.lex_state = 531}, - [2486] = {.lex_state = 478}, - [2487] = {.lex_state = 486}, - [2488] = {.lex_state = 478}, - [2489] = {.lex_state = 447}, - [2490] = {.lex_state = 532}, - [2491] = {.lex_state = 447}, - [2492] = {.lex_state = 538, .external_lex_state = 3}, - [2493] = {.lex_state = 538}, - [2494] = {.lex_state = 538, .external_lex_state = 3}, - [2495] = {.lex_state = 447}, - [2496] = {.lex_state = 531}, - [2497] = {.lex_state = 486}, - [2498] = {.lex_state = 532}, - [2499] = {.lex_state = 637}, - [2500] = {.lex_state = 628}, - [2501] = {.lex_state = 488}, - [2502] = {.lex_state = 561}, - [2503] = {.lex_state = 556}, - [2504] = {.lex_state = 447}, - [2505] = {.lex_state = 447}, - [2506] = {.lex_state = 488, .external_lex_state = 3}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 488, .external_lex_state = 3}, - [2509] = {.lex_state = 271, .external_lex_state = 4}, - [2510] = {.lex_state = 447}, - [2511] = {.lex_state = 488, .external_lex_state = 3}, - [2512] = {.lex_state = 628}, - [2513] = {.lex_state = 561}, - [2514] = {.lex_state = 539}, - [2515] = {.lex_state = 539}, - [2516] = {.lex_state = 539}, - [2517] = {.lex_state = 539}, - [2518] = {.lex_state = 750, .external_lex_state = 3}, - [2519] = {.lex_state = 478}, - [2520] = {.lex_state = 488}, - [2521] = {.lex_state = 637}, - [2522] = {.lex_state = 644}, - [2523] = {.lex_state = 447}, - [2524] = {.lex_state = 447}, - [2525] = {.lex_state = 647, .external_lex_state = 3}, - [2526] = {.lex_state = 647, .external_lex_state = 3}, - [2527] = {.lex_state = 534}, - [2528] = {.lex_state = 536}, - [2529] = {.lex_state = 647, .external_lex_state = 3}, - [2530] = {.lex_state = 752, .external_lex_state = 3}, - [2531] = {.lex_state = 451}, - [2532] = {.lex_state = 478}, - [2533] = {.lex_state = 536}, - [2534] = {.lex_state = 451}, - [2535] = {.lex_state = 561}, - [2536] = {.lex_state = 617}, - [2537] = {.lex_state = 752, .external_lex_state = 3}, - [2538] = {.lex_state = 534}, - [2539] = {.lex_state = 545}, - [2540] = {.lex_state = 752, .external_lex_state = 3}, - [2541] = {.lex_state = 539}, - [2542] = {.lex_state = 0, .external_lex_state = 3}, - [2543] = {.lex_state = 558}, - [2544] = {.lex_state = 534}, - [2545] = {.lex_state = 558}, - [2546] = {.lex_state = 536}, - [2547] = {.lex_state = 536}, - [2548] = {.lex_state = 536}, - [2549] = {.lex_state = 754}, - [2550] = {.lex_state = 451}, - [2551] = {.lex_state = 478}, - [2552] = {.lex_state = 843}, - [2553] = {.lex_state = 536}, - [2554] = {.lex_state = 451}, - [2555] = {.lex_state = 843}, - [2556] = {.lex_state = 561}, - [2557] = {.lex_state = 617}, - [2558] = {.lex_state = 754}, - [2559] = {.lex_state = 534}, - [2560] = {.lex_state = 545}, - [2561] = {.lex_state = 758}, - [2562] = {.lex_state = 758}, - [2563] = {.lex_state = 651}, - [2564] = {.lex_state = 760, .external_lex_state = 3}, - [2565] = {.lex_state = 451}, - [2566] = {.lex_state = 478}, - [2567] = {.lex_state = 536}, - [2568] = {.lex_state = 451}, - [2569] = {.lex_state = 561}, - [2570] = {.lex_state = 447}, - [2571] = {.lex_state = 531}, - [2572] = {.lex_state = 486}, - [2573] = {.lex_state = 478}, - [2574] = {.lex_state = 532}, - [2575] = {.lex_state = 617}, - [2576] = {.lex_state = 760, .external_lex_state = 3}, - [2577] = {.lex_state = 534}, - [2578] = {.lex_state = 545}, - [2579] = {.lex_state = 447}, - [2580] = {.lex_state = 488, .external_lex_state = 5}, - [2581] = {.lex_state = 447}, - [2582] = {.lex_state = 531}, - [2583] = {.lex_state = 486}, - [2584] = {.lex_state = 532}, - [2585] = {.lex_state = 447}, - [2586] = {.lex_state = 558}, - [2587] = {.lex_state = 447}, - [2588] = {.lex_state = 637}, - [2589] = {.lex_state = 628}, - [2590] = {.lex_state = 488}, - [2591] = {.lex_state = 561}, - [2592] = {.lex_state = 558}, - [2593] = {.lex_state = 447}, - [2594] = {.lex_state = 458, .external_lex_state = 3}, - [2595] = {.lex_state = 536}, - [2596] = {.lex_state = 536}, - [2597] = {.lex_state = 447}, - [2598] = {.lex_state = 0, .external_lex_state = 3}, - [2599] = {.lex_state = 0, .external_lex_state = 3}, - [2600] = {.lex_state = 0, .external_lex_state = 2}, - [2601] = {.lex_state = 488, .external_lex_state = 3}, - [2602] = {.lex_state = 451}, - [2603] = {.lex_state = 271, .external_lex_state = 4}, - [2604] = {.lex_state = 0, .external_lex_state = 3}, - [2605] = {.lex_state = 762, .external_lex_state = 4}, - [2606] = {.lex_state = 488, .external_lex_state = 3}, - [2607] = {.lex_state = 488, .external_lex_state = 3}, - [2608] = {.lex_state = 447}, - [2609] = {.lex_state = 488, .external_lex_state = 3}, - [2610] = {.lex_state = 447}, - [2611] = {.lex_state = 653}, - [2612] = {.lex_state = 447}, - [2613] = {.lex_state = 637}, - [2614] = {.lex_state = 628}, - [2615] = {.lex_state = 488}, - [2616] = {.lex_state = 561}, - [2617] = {.lex_state = 653}, - [2618] = {.lex_state = 447}, - [2619] = {.lex_state = 447}, - [2620] = {.lex_state = 637}, - [2621] = {.lex_state = 560}, - [2622] = {.lex_state = 534}, - [2623] = {.lex_state = 655}, - [2624] = {.lex_state = 655}, - [2625] = {.lex_state = 534}, - [2626] = {.lex_state = 536}, - [2627] = {.lex_state = 655}, - [2628] = {.lex_state = 657}, - [2629] = {.lex_state = 657}, - [2630] = {.lex_state = 534}, - [2631] = {.lex_state = 536}, - [2632] = {.lex_state = 657}, - [2633] = {.lex_state = 488}, - [2634] = {.lex_state = 556}, - [2635] = {.lex_state = 658}, - [2636] = {.lex_state = 488}, - [2637] = {.lex_state = 658}, - [2638] = {.lex_state = 658}, - [2639] = {.lex_state = 451, .external_lex_state = 3}, - [2640] = {.lex_state = 821}, - [2641] = {.lex_state = 661}, - [2642] = {.lex_state = 451}, - [2643] = {.lex_state = 447}, - [2644] = {.lex_state = 823}, - [2645] = {.lex_state = 823}, - [2646] = {.lex_state = 825}, - [2647] = {.lex_state = 451}, - [2648] = {.lex_state = 823}, - [2649] = {.lex_state = 825}, - [2650] = {.lex_state = 0, .external_lex_state = 3}, - [2651] = {.lex_state = 872, .external_lex_state = 3}, - [2652] = {.lex_state = 447}, - [2653] = {.lex_state = 271, .external_lex_state = 2}, - [2654] = {.lex_state = 523}, - [2655] = {.lex_state = 872, .external_lex_state = 3}, - [2656] = {.lex_state = 544}, - [2657] = {.lex_state = 451}, - [2658] = {.lex_state = 478}, - [2659] = {.lex_state = 486}, - [2660] = {.lex_state = 478}, - [2661] = {.lex_state = 447}, - [2662] = {.lex_state = 532}, - [2663] = {.lex_state = 478}, - [2664] = {.lex_state = 534}, - [2665] = {.lex_state = 447}, - [2666] = {.lex_state = 488}, - [2667] = {.lex_state = 539}, - [2668] = {.lex_state = 872, .external_lex_state = 3}, - [2669] = {.lex_state = 555}, - [2670] = {.lex_state = 872, .external_lex_state = 3}, - [2671] = {.lex_state = 488}, - [2672] = {.lex_state = 447}, - [2673] = {.lex_state = 574, .external_lex_state = 3}, - [2674] = {.lex_state = 873, .external_lex_state = 3}, - [2675] = {.lex_state = 447}, - [2676] = {.lex_state = 271, .external_lex_state = 2}, - [2677] = {.lex_state = 523}, - [2678] = {.lex_state = 873, .external_lex_state = 3}, - [2679] = {.lex_state = 544}, - [2680] = {.lex_state = 451}, - [2681] = {.lex_state = 478}, - [2682] = {.lex_state = 486}, - [2683] = {.lex_state = 478}, - [2684] = {.lex_state = 447}, - [2685] = {.lex_state = 532}, - [2686] = {.lex_state = 478}, - [2687] = {.lex_state = 534}, - [2688] = {.lex_state = 447}, - [2689] = {.lex_state = 488}, - [2690] = {.lex_state = 539}, - [2691] = {.lex_state = 873, .external_lex_state = 3}, - [2692] = {.lex_state = 555}, - [2693] = {.lex_state = 873, .external_lex_state = 3}, - [2694] = {.lex_state = 488}, - [2695] = {.lex_state = 534}, - [2696] = {.lex_state = 447}, - [2697] = {.lex_state = 488, .external_lex_state = 3}, - [2698] = {.lex_state = 447}, - [2699] = {.lex_state = 451}, - [2700] = {.lex_state = 827, .external_lex_state = 3}, - [2701] = {.lex_state = 447}, - [2702] = {.lex_state = 488, .external_lex_state = 3}, - [2703] = {.lex_state = 447}, - [2704] = {.lex_state = 663, .external_lex_state = 3}, - [2705] = {.lex_state = 447}, - [2706] = {.lex_state = 637}, - [2707] = {.lex_state = 628}, - [2708] = {.lex_state = 488}, - [2709] = {.lex_state = 561}, - [2710] = {.lex_state = 663, .external_lex_state = 3}, - [2711] = {.lex_state = 447}, - [2712] = {.lex_state = 447}, - [2713] = {.lex_state = 637}, - [2714] = {.lex_state = 675, .external_lex_state = 3}, - [2715] = {.lex_state = 675, .external_lex_state = 3}, - [2716] = {.lex_state = 829, .external_lex_state = 3}, - [2717] = {.lex_state = 536}, - [2718] = {.lex_state = 488}, - [2719] = {.lex_state = 829, .external_lex_state = 3}, - [2720] = {.lex_state = 451}, - [2721] = {.lex_state = 478}, - [2722] = {.lex_state = 829, .external_lex_state = 3}, - [2723] = {.lex_state = 829, .external_lex_state = 3}, - [2724] = {.lex_state = 536}, - [2725] = {.lex_state = 451}, - [2726] = {.lex_state = 561}, - [2727] = {.lex_state = 617}, - [2728] = {.lex_state = 829, .external_lex_state = 3}, - [2729] = {.lex_state = 534}, - [2730] = {.lex_state = 545}, - [2731] = {.lex_state = 675, .external_lex_state = 3}, - [2732] = {.lex_state = 829, .external_lex_state = 3}, - [2733] = {.lex_state = 536}, - [2734] = {.lex_state = 831, .external_lex_state = 3}, - [2735] = {.lex_state = 451}, - [2736] = {.lex_state = 478}, - [2737] = {.lex_state = 536}, - [2738] = {.lex_state = 451}, - [2739] = {.lex_state = 561}, - [2740] = {.lex_state = 447}, - [2741] = {.lex_state = 531}, - [2742] = {.lex_state = 486}, - [2743] = {.lex_state = 478}, - [2744] = {.lex_state = 532}, - [2745] = {.lex_state = 617}, - [2746] = {.lex_state = 831, .external_lex_state = 3}, - [2747] = {.lex_state = 534}, - [2748] = {.lex_state = 545}, - [2749] = {.lex_state = 447}, - [2750] = {.lex_state = 447}, - [2751] = {.lex_state = 531}, - [2752] = {.lex_state = 486}, - [2753] = {.lex_state = 532}, - [2754] = {.lex_state = 668, .external_lex_state = 3}, - [2755] = {.lex_state = 668, .external_lex_state = 3}, - [2756] = {.lex_state = 534}, - [2757] = {.lex_state = 536}, - [2758] = {.lex_state = 668, .external_lex_state = 3}, - [2759] = {.lex_state = 447}, - [2760] = {.lex_state = 829, .external_lex_state = 3}, - [2761] = {.lex_state = 675, .external_lex_state = 3}, - [2762] = {.lex_state = 271}, - [2763] = {.lex_state = 488, .external_lex_state = 3}, - [2764] = {.lex_state = 271}, - [2765] = {.lex_state = 874, .external_lex_state = 3}, - [2766] = {.lex_state = 539}, - [2767] = {.lex_state = 583}, - [2768] = {.lex_state = 534}, - [2769] = {.lex_state = 584}, - [2770] = {.lex_state = 585}, - [2771] = {.lex_state = 874, .external_lex_state = 3}, - [2772] = {.lex_state = 874, .external_lex_state = 3}, - [2773] = {.lex_state = 488, .external_lex_state = 3}, - [2774] = {.lex_state = 874, .external_lex_state = 3}, - [2775] = {.lex_state = 488}, - [2776] = {.lex_state = 832, .external_lex_state = 3}, - [2777] = {.lex_state = 451}, - [2778] = {.lex_state = 478}, - [2779] = {.lex_state = 536}, - [2780] = {.lex_state = 451}, - [2781] = {.lex_state = 561}, - [2782] = {.lex_state = 617}, - [2783] = {.lex_state = 832, .external_lex_state = 3}, - [2784] = {.lex_state = 534}, - [2785] = {.lex_state = 876, .external_lex_state = 3}, - [2786] = {.lex_state = 447}, - [2787] = {.lex_state = 876, .external_lex_state = 3}, - [2788] = {.lex_state = 531}, - [2789] = {.lex_state = 478}, - [2790] = {.lex_state = 486}, - [2791] = {.lex_state = 478}, - [2792] = {.lex_state = 447}, - [2793] = {.lex_state = 532}, - [2794] = {.lex_state = 447}, - [2795] = {.lex_state = 876, .external_lex_state = 3}, - [2796] = {.lex_state = 876, .external_lex_state = 3}, - [2797] = {.lex_state = 488, .external_lex_state = 3}, - [2798] = {.lex_state = 447}, - [2799] = {.lex_state = 545}, - [2800] = {.lex_state = 833, .external_lex_state = 3}, - [2801] = {.lex_state = 451}, - [2802] = {.lex_state = 271}, - [2803] = {.lex_state = 488, .external_lex_state = 3}, - [2804] = {.lex_state = 271}, - [2805] = {.lex_state = 878, .external_lex_state = 3}, - [2806] = {.lex_state = 539}, - [2807] = {.lex_state = 583}, - [2808] = {.lex_state = 534}, - [2809] = {.lex_state = 584}, - [2810] = {.lex_state = 585}, - [2811] = {.lex_state = 878, .external_lex_state = 3}, - [2812] = {.lex_state = 878, .external_lex_state = 3}, - [2813] = {.lex_state = 488, .external_lex_state = 3}, - [2814] = {.lex_state = 878, .external_lex_state = 3}, - [2815] = {.lex_state = 478}, - [2816] = {.lex_state = 488}, - [2817] = {.lex_state = 536}, - [2818] = {.lex_state = 451}, - [2819] = {.lex_state = 561}, - [2820] = {.lex_state = 447}, - [2821] = {.lex_state = 531}, - [2822] = {.lex_state = 486}, - [2823] = {.lex_state = 478}, - [2824] = {.lex_state = 532}, - [2825] = {.lex_state = 617}, - [2826] = {.lex_state = 833, .external_lex_state = 3}, - [2827] = {.lex_state = 534}, - [2828] = {.lex_state = 880, .external_lex_state = 3}, - [2829] = {.lex_state = 447}, - [2830] = {.lex_state = 880, .external_lex_state = 3}, - [2831] = {.lex_state = 531}, - [2832] = {.lex_state = 478}, - [2833] = {.lex_state = 486}, - [2834] = {.lex_state = 478}, - [2835] = {.lex_state = 447}, - [2836] = {.lex_state = 532}, - [2837] = {.lex_state = 447}, - [2838] = {.lex_state = 880, .external_lex_state = 3}, - [2839] = {.lex_state = 880, .external_lex_state = 3}, - [2840] = {.lex_state = 488, .external_lex_state = 3}, - [2841] = {.lex_state = 447}, - [2842] = {.lex_state = 545}, - [2843] = {.lex_state = 447}, - [2844] = {.lex_state = 882, .external_lex_state = 3}, - [2845] = {.lex_state = 882, .external_lex_state = 3}, - [2846] = {.lex_state = 447}, - [2847] = {.lex_state = 531}, - [2848] = {.lex_state = 478}, - [2849] = {.lex_state = 486}, - [2850] = {.lex_state = 478}, - [2851] = {.lex_state = 447}, - [2852] = {.lex_state = 532}, - [2853] = {.lex_state = 447}, - [2854] = {.lex_state = 882, .external_lex_state = 3}, - [2855] = {.lex_state = 538}, - [2856] = {.lex_state = 882, .external_lex_state = 3}, - [2857] = {.lex_state = 447}, - [2858] = {.lex_state = 531}, - [2859] = {.lex_state = 486}, - [2860] = {.lex_state = 532}, - [2861] = {.lex_state = 670, .external_lex_state = 3}, - [2862] = {.lex_state = 670, .external_lex_state = 3}, - [2863] = {.lex_state = 534}, - [2864] = {.lex_state = 536}, - [2865] = {.lex_state = 670, .external_lex_state = 3}, - [2866] = {.lex_state = 834, .external_lex_state = 3}, - [2867] = {.lex_state = 451}, - [2868] = {.lex_state = 271}, - [2869] = {.lex_state = 488, .external_lex_state = 3}, - [2870] = {.lex_state = 271}, - [2871] = {.lex_state = 883, .external_lex_state = 3}, - [2872] = {.lex_state = 539}, - [2873] = {.lex_state = 583}, - [2874] = {.lex_state = 534}, - [2875] = {.lex_state = 584}, - [2876] = {.lex_state = 585}, - [2877] = {.lex_state = 883, .external_lex_state = 3}, - [2878] = {.lex_state = 883, .external_lex_state = 3}, - [2879] = {.lex_state = 488, .external_lex_state = 3}, - [2880] = {.lex_state = 883, .external_lex_state = 3}, - [2881] = {.lex_state = 478}, - [2882] = {.lex_state = 488}, - [2883] = {.lex_state = 536}, - [2884] = {.lex_state = 451}, - [2885] = {.lex_state = 561}, - [2886] = {.lex_state = 447}, - [2887] = {.lex_state = 531}, - [2888] = {.lex_state = 486}, - [2889] = {.lex_state = 478}, - [2890] = {.lex_state = 532}, - [2891] = {.lex_state = 617}, - [2892] = {.lex_state = 834, .external_lex_state = 3}, - [2893] = {.lex_state = 534}, - [2894] = {.lex_state = 885, .external_lex_state = 3}, - [2895] = {.lex_state = 447}, - [2896] = {.lex_state = 885, .external_lex_state = 3}, - [2897] = {.lex_state = 531}, - [2898] = {.lex_state = 478}, - [2899] = {.lex_state = 486}, - [2900] = {.lex_state = 478}, - [2901] = {.lex_state = 447}, - [2902] = {.lex_state = 532}, - [2903] = {.lex_state = 447}, - [2904] = {.lex_state = 885, .external_lex_state = 3}, - [2905] = {.lex_state = 885, .external_lex_state = 3}, - [2906] = {.lex_state = 488, .external_lex_state = 3}, - [2907] = {.lex_state = 447}, - [2908] = {.lex_state = 545}, - [2909] = {.lex_state = 447}, - [2910] = {.lex_state = 887, .external_lex_state = 3}, - [2911] = {.lex_state = 887, .external_lex_state = 3}, - [2912] = {.lex_state = 447}, - [2913] = {.lex_state = 531}, - [2914] = {.lex_state = 478}, - [2915] = {.lex_state = 486}, - [2916] = {.lex_state = 478}, - [2917] = {.lex_state = 447}, - [2918] = {.lex_state = 532}, - [2919] = {.lex_state = 447}, - [2920] = {.lex_state = 887, .external_lex_state = 3}, - [2921] = {.lex_state = 538}, - [2922] = {.lex_state = 887, .external_lex_state = 3}, - [2923] = {.lex_state = 447}, - [2924] = {.lex_state = 531}, - [2925] = {.lex_state = 486}, - [2926] = {.lex_state = 532}, - [2927] = {.lex_state = 271}, - [2928] = {.lex_state = 488, .external_lex_state = 3}, - [2929] = {.lex_state = 271}, - [2930] = {.lex_state = 888, .external_lex_state = 3}, - [2931] = {.lex_state = 539}, - [2932] = {.lex_state = 583}, - [2933] = {.lex_state = 534}, - [2934] = {.lex_state = 584}, - [2935] = {.lex_state = 585}, - [2936] = {.lex_state = 888, .external_lex_state = 3}, - [2937] = {.lex_state = 888, .external_lex_state = 3}, - [2938] = {.lex_state = 488, .external_lex_state = 3}, - [2939] = {.lex_state = 888, .external_lex_state = 3}, - [2940] = {.lex_state = 488}, - [2941] = {.lex_state = 835, .external_lex_state = 3}, - [2942] = {.lex_state = 451}, - [2943] = {.lex_state = 478}, - [2944] = {.lex_state = 536}, - [2945] = {.lex_state = 451}, - [2946] = {.lex_state = 561}, - [2947] = {.lex_state = 617}, - [2948] = {.lex_state = 835, .external_lex_state = 3}, - [2949] = {.lex_state = 534}, - [2950] = {.lex_state = 890, .external_lex_state = 3}, - [2951] = {.lex_state = 447}, - [2952] = {.lex_state = 890, .external_lex_state = 3}, - [2953] = {.lex_state = 531}, - [2954] = {.lex_state = 478}, - [2955] = {.lex_state = 486}, - [2956] = {.lex_state = 478}, - [2957] = {.lex_state = 447}, - [2958] = {.lex_state = 532}, - [2959] = {.lex_state = 447}, - [2960] = {.lex_state = 890, .external_lex_state = 3}, - [2961] = {.lex_state = 890, .external_lex_state = 3}, - [2962] = {.lex_state = 488, .external_lex_state = 3}, - [2963] = {.lex_state = 447}, - [2964] = {.lex_state = 545}, - [2965] = {.lex_state = 836, .external_lex_state = 3}, - [2966] = {.lex_state = 451}, - [2967] = {.lex_state = 271}, - [2968] = {.lex_state = 488, .external_lex_state = 3}, - [2969] = {.lex_state = 271}, - [2970] = {.lex_state = 892, .external_lex_state = 3}, - [2971] = {.lex_state = 539}, - [2972] = {.lex_state = 583}, - [2973] = {.lex_state = 534}, - [2974] = {.lex_state = 584}, - [2975] = {.lex_state = 585}, - [2976] = {.lex_state = 892, .external_lex_state = 3}, - [2977] = {.lex_state = 892, .external_lex_state = 3}, - [2978] = {.lex_state = 488, .external_lex_state = 3}, - [2979] = {.lex_state = 892, .external_lex_state = 3}, - [2980] = {.lex_state = 478}, - [2981] = {.lex_state = 488}, - [2982] = {.lex_state = 536}, - [2983] = {.lex_state = 451}, - [2984] = {.lex_state = 561}, - [2985] = {.lex_state = 447}, - [2986] = {.lex_state = 531}, - [2987] = {.lex_state = 486}, - [2988] = {.lex_state = 478}, - [2989] = {.lex_state = 532}, - [2990] = {.lex_state = 617}, - [2991] = {.lex_state = 836, .external_lex_state = 3}, - [2992] = {.lex_state = 534}, - [2993] = {.lex_state = 894, .external_lex_state = 3}, - [2994] = {.lex_state = 447}, - [2995] = {.lex_state = 894, .external_lex_state = 3}, - [2996] = {.lex_state = 531}, - [2997] = {.lex_state = 478}, - [2998] = {.lex_state = 486}, - [2999] = {.lex_state = 478}, - [3000] = {.lex_state = 447}, - [3001] = {.lex_state = 532}, - [3002] = {.lex_state = 447}, - [3003] = {.lex_state = 894, .external_lex_state = 3}, - [3004] = {.lex_state = 894, .external_lex_state = 3}, - [3005] = {.lex_state = 488, .external_lex_state = 3}, - [3006] = {.lex_state = 447}, - [3007] = {.lex_state = 545}, - [3008] = {.lex_state = 447}, - [3009] = {.lex_state = 896, .external_lex_state = 3}, - [3010] = {.lex_state = 896, .external_lex_state = 3}, - [3011] = {.lex_state = 447}, - [3012] = {.lex_state = 531}, - [3013] = {.lex_state = 478}, - [3014] = {.lex_state = 486}, - [3015] = {.lex_state = 478}, - [3016] = {.lex_state = 447}, - [3017] = {.lex_state = 532}, - [3018] = {.lex_state = 447}, - [3019] = {.lex_state = 896, .external_lex_state = 3}, - [3020] = {.lex_state = 538}, - [3021] = {.lex_state = 896, .external_lex_state = 3}, - [3022] = {.lex_state = 447}, - [3023] = {.lex_state = 531}, - [3024] = {.lex_state = 486}, - [3025] = {.lex_state = 532}, - [3026] = {.lex_state = 671}, - [3027] = {.lex_state = 671}, - [3028] = {.lex_state = 534}, - [3029] = {.lex_state = 536}, - [3030] = {.lex_state = 671}, - [3031] = {.lex_state = 539}, - [3032] = {.lex_state = 447}, - [3033] = {.lex_state = 539}, - [3034] = {.lex_state = 531}, - [3035] = {.lex_state = 478}, - [3036] = {.lex_state = 486}, - [3037] = {.lex_state = 478}, - [3038] = {.lex_state = 447}, - [3039] = {.lex_state = 532}, - [3040] = {.lex_state = 447}, - [3041] = {.lex_state = 539}, - [3042] = {.lex_state = 451}, - [3043] = {.lex_state = 672}, - [3044] = {.lex_state = 672}, - [3045] = {.lex_state = 534}, - [3046] = {.lex_state = 536}, - [3047] = {.lex_state = 672}, - [3048] = {.lex_state = 561}, - [3049] = {.lex_state = 447}, - [3050] = {.lex_state = 577, .external_lex_state = 3}, - [3051] = {.lex_state = 447}, - [3052] = {.lex_state = 447}, - [3053] = {.lex_state = 447}, - [3054] = {.lex_state = 488, .external_lex_state = 3}, - [3055] = {.lex_state = 271, .external_lex_state = 4}, - [3056] = {.lex_state = 447}, - [3057] = {.lex_state = 488, .external_lex_state = 3}, - [3058] = {.lex_state = 447}, - [3059] = {.lex_state = 447}, - [3060] = {.lex_state = 732}, - [3061] = {.lex_state = 539}, - [3062] = {.lex_state = 478}, - [3063] = {.lex_state = 488}, - [3064] = {.lex_state = 539}, - [3065] = {.lex_state = 555}, - [3066] = {.lex_state = 488}, - [3067] = {.lex_state = 478}, - [3068] = {.lex_state = 488, .external_lex_state = 3}, - [3069] = {.lex_state = 271, .external_lex_state = 4}, - [3070] = {.lex_state = 447}, - [3071] = {.lex_state = 488, .external_lex_state = 3}, - [3072] = {.lex_state = 628}, - [3073] = {.lex_state = 561}, - [3074] = {.lex_state = 539}, - [3075] = {.lex_state = 539}, - [3076] = {.lex_state = 539}, - [3077] = {.lex_state = 539}, - [3078] = {.lex_state = 837}, - [3079] = {.lex_state = 478}, - [3080] = {.lex_state = 488}, - [3081] = {.lex_state = 637}, - [3082] = {.lex_state = 644}, - [3083] = {.lex_state = 447}, - [3084] = {.lex_state = 447}, - [3085] = {.lex_state = 673}, - [3086] = {.lex_state = 271}, - [3087] = {.lex_state = 488, .external_lex_state = 3}, - [3088] = {.lex_state = 271}, - [3089] = {.lex_state = 897}, - [3090] = {.lex_state = 539}, - [3091] = {.lex_state = 583}, - [3092] = {.lex_state = 534}, - [3093] = {.lex_state = 584}, - [3094] = {.lex_state = 585}, - [3095] = {.lex_state = 897}, - [3096] = {.lex_state = 897}, - [3097] = {.lex_state = 637}, - [3098] = {.lex_state = 897}, - [3099] = {.lex_state = 488}, - [3100] = {.lex_state = 478}, - [3101] = {.lex_state = 478}, - [3102] = {.lex_state = 720}, - [3103] = {.lex_state = 637}, - [3104] = {.lex_state = 447}, - [3105] = {.lex_state = 447}, - [3106] = {.lex_state = 478}, - [3107] = {.lex_state = 538}, - [3108] = {.lex_state = 673}, - [3109] = {.lex_state = 534}, - [3110] = {.lex_state = 536}, - [3111] = {.lex_state = 673}, - [3112] = {.lex_state = 748}, - [3113] = {.lex_state = 539}, - [3114] = {.lex_state = 674}, - [3115] = {.lex_state = 478}, - [3116] = {.lex_state = 488}, - [3117] = {.lex_state = 539}, - [3118] = {.lex_state = 555}, - [3119] = {.lex_state = 488}, - [3120] = {.lex_state = 478}, - [3121] = {.lex_state = 674}, - [3122] = {.lex_state = 674}, - [3123] = {.lex_state = 536}, - [3124] = {.lex_state = 536}, - [3125] = {.lex_state = 536}, - [3126] = {.lex_state = 478}, - [3127] = {.lex_state = 271}, - [3128] = {.lex_state = 488, .external_lex_state = 3}, - [3129] = {.lex_state = 271}, - [3130] = {.lex_state = 897}, - [3131] = {.lex_state = 634}, - [3132] = {.lex_state = 488}, - [3133] = {.lex_state = 674}, - [3134] = {.lex_state = 451}, - [3135] = {.lex_state = 478}, - [3136] = {.lex_state = 536}, - [3137] = {.lex_state = 451}, - [3138] = {.lex_state = 561}, - [3139] = {.lex_state = 617}, - [3140] = {.lex_state = 674}, - [3141] = {.lex_state = 534}, - [3142] = {.lex_state = 478}, - [3143] = {.lex_state = 710}, - [3144] = {.lex_state = 634}, - [3145] = {.lex_state = 447}, - [3146] = {.lex_state = 545}, - [3147] = {.lex_state = 447}, - [3148] = {.lex_state = 534}, - [3149] = {.lex_state = 674, .external_lex_state = 3}, - [3150] = {.lex_state = 451}, - [3151] = {.lex_state = 478}, - [3152] = {.lex_state = 0, .external_lex_state = 3}, - [3153] = {.lex_state = 536}, - [3154] = {.lex_state = 451}, - [3155] = {.lex_state = 561}, - [3156] = {.lex_state = 617}, - [3157] = {.lex_state = 674, .external_lex_state = 3}, - [3158] = {.lex_state = 534}, - [3159] = {.lex_state = 545}, - [3160] = {.lex_state = 447}, - [3161] = {.lex_state = 674}, - [3162] = {.lex_state = 0, .external_lex_state = 3}, - [3163] = {.lex_state = 488, .external_lex_state = 3}, - [3164] = {.lex_state = 585, .external_lex_state = 4}, - [3165] = {.lex_state = 585, .external_lex_state = 4}, - [3166] = {.lex_state = 675, .external_lex_state = 3}, - [3167] = {.lex_state = 675, .external_lex_state = 3}, - [3168] = {.lex_state = 675, .external_lex_state = 3}, - [3169] = {.lex_state = 536}, - [3170] = {.lex_state = 556}, - [3171] = {.lex_state = 651, .external_lex_state = 3}, - [3172] = {.lex_state = 451}, - [3173] = {.lex_state = 675, .external_lex_state = 3}, - [3174] = {.lex_state = 451}, - [3175] = {.lex_state = 478}, - [3176] = {.lex_state = 651, .external_lex_state = 3}, - [3177] = {.lex_state = 534}, - [3178] = {.lex_state = 536}, - [3179] = {.lex_state = 451}, - [3180] = {.lex_state = 478}, - [3181] = {.lex_state = 478}, - [3182] = {.lex_state = 651, .external_lex_state = 3}, - [3183] = {.lex_state = 447}, - [3184] = {.lex_state = 488, .external_lex_state = 3}, - [3185] = {.lex_state = 555}, - [3186] = {.lex_state = 534}, - [3187] = {.lex_state = 704}, - [3188] = {.lex_state = 704}, - [3189] = {.lex_state = 534}, - [3190] = {.lex_state = 536}, - [3191] = {.lex_state = 704}, - [3192] = {.lex_state = 538}, - [3193] = {.lex_state = 538}, - [3194] = {.lex_state = 534}, - [3195] = {.lex_state = 536}, - [3196] = {.lex_state = 538}, - [3197] = {.lex_state = 447}, - [3198] = {.lex_state = 488, .external_lex_state = 3}, - [3199] = {.lex_state = 760}, - [3200] = {.lex_state = 451}, - [3201] = {.lex_state = 271}, - [3202] = {.lex_state = 488, .external_lex_state = 3}, - [3203] = {.lex_state = 271}, - [3204] = {.lex_state = 750}, - [3205] = {.lex_state = 539}, - [3206] = {.lex_state = 583}, - [3207] = {.lex_state = 534}, - [3208] = {.lex_state = 584}, - [3209] = {.lex_state = 585}, - [3210] = {.lex_state = 750}, - [3211] = {.lex_state = 750}, - [3212] = {.lex_state = 488}, - [3213] = {.lex_state = 750}, - [3214] = {.lex_state = 478}, - [3215] = {.lex_state = 488}, - [3216] = {.lex_state = 536}, - [3217] = {.lex_state = 451}, - [3218] = {.lex_state = 561}, - [3219] = {.lex_state = 447}, - [3220] = {.lex_state = 531}, - [3221] = {.lex_state = 486}, - [3222] = {.lex_state = 478}, - [3223] = {.lex_state = 532}, - [3224] = {.lex_state = 617}, - [3225] = {.lex_state = 760}, - [3226] = {.lex_state = 534}, - [3227] = {.lex_state = 752}, - [3228] = {.lex_state = 447}, - [3229] = {.lex_state = 752}, - [3230] = {.lex_state = 531}, - [3231] = {.lex_state = 478}, - [3232] = {.lex_state = 486}, - [3233] = {.lex_state = 478}, - [3234] = {.lex_state = 447}, - [3235] = {.lex_state = 532}, - [3236] = {.lex_state = 447}, - [3237] = {.lex_state = 752}, - [3238] = {.lex_state = 752}, - [3239] = {.lex_state = 488}, - [3240] = {.lex_state = 447}, - [3241] = {.lex_state = 545}, - [3242] = {.lex_state = 447}, - [3243] = {.lex_state = 488, .external_lex_state = 5}, - [3244] = {.lex_state = 647}, - [3245] = {.lex_state = 647}, - [3246] = {.lex_state = 447}, - [3247] = {.lex_state = 531}, - [3248] = {.lex_state = 478}, - [3249] = {.lex_state = 486}, - [3250] = {.lex_state = 478}, - [3251] = {.lex_state = 447}, - [3252] = {.lex_state = 532}, - [3253] = {.lex_state = 447}, - [3254] = {.lex_state = 647}, - [3255] = {.lex_state = 538}, - [3256] = {.lex_state = 647}, - [3257] = {.lex_state = 447}, - [3258] = {.lex_state = 531}, - [3259] = {.lex_state = 486}, - [3260] = {.lex_state = 532}, - [3261] = {.lex_state = 488}, - [3262] = {.lex_state = 488, .external_lex_state = 3}, - [3263] = {.lex_state = 447}, - [3264] = {.lex_state = 488, .external_lex_state = 3}, - [3265] = {.lex_state = 447}, - [3266] = {.lex_state = 617}, - [3267] = {.lex_state = 447}, - [3268] = {.lex_state = 637}, - [3269] = {.lex_state = 628}, - [3270] = {.lex_state = 488}, - [3271] = {.lex_state = 561}, - [3272] = {.lex_state = 617}, - [3273] = {.lex_state = 447}, - [3274] = {.lex_state = 447}, - [3275] = {.lex_state = 637}, - [3276] = {.lex_state = 615}, - [3277] = {.lex_state = 534}, - [3278] = {.lex_state = 715}, - [3279] = {.lex_state = 715}, - [3280] = {.lex_state = 534}, - [3281] = {.lex_state = 536}, - [3282] = {.lex_state = 715}, - [3283] = {.lex_state = 717}, - [3284] = {.lex_state = 717}, - [3285] = {.lex_state = 534}, - [3286] = {.lex_state = 536}, - [3287] = {.lex_state = 717}, - [3288] = {.lex_state = 447}, - [3289] = {.lex_state = 488, .external_lex_state = 3}, - [3290] = {.lex_state = 451}, - [3291] = {.lex_state = 561}, - [3292] = {.lex_state = 447}, - [3293] = {.lex_state = 620}, - [3294] = {.lex_state = 447}, - [3295] = {.lex_state = 447}, - [3296] = {.lex_state = 447}, - [3297] = {.lex_state = 478}, - [3298] = {.lex_state = 534}, - [3299] = {.lex_state = 722, .external_lex_state = 3}, - [3300] = {.lex_state = 722, .external_lex_state = 3}, - [3301] = {.lex_state = 534}, - [3302] = {.lex_state = 536}, - [3303] = {.lex_state = 722, .external_lex_state = 3}, - [3304] = {.lex_state = 488, .external_lex_state = 3}, - [3305] = {.lex_state = 622, .external_lex_state = 3}, - [3306] = {.lex_state = 534}, - [3307] = {.lex_state = 488, .external_lex_state = 3}, - [3308] = {.lex_state = 447}, - [3309] = {.lex_state = 624}, - [3310] = {.lex_state = 447}, - [3311] = {.lex_state = 447}, - [3312] = {.lex_state = 486}, - [3313] = {.lex_state = 675, .external_lex_state = 3}, - [3314] = {.lex_state = 675, .external_lex_state = 3}, - [3315] = {.lex_state = 637}, - [3316] = {.lex_state = 628}, - [3317] = {.lex_state = 488}, - [3318] = {.lex_state = 561}, - [3319] = {.lex_state = 624}, - [3320] = {.lex_state = 447}, - [3321] = {.lex_state = 447}, - [3322] = {.lex_state = 488, .external_lex_state = 3}, - [3323] = {.lex_state = 447}, - [3324] = {.lex_state = 523}, - [3325] = {.lex_state = 447}, - [3326] = {.lex_state = 637}, - [3327] = {.lex_state = 628}, - [3328] = {.lex_state = 488}, - [3329] = {.lex_state = 561}, - [3330] = {.lex_state = 523}, - [3331] = {.lex_state = 447}, - [3332] = {.lex_state = 447}, - [3333] = {.lex_state = 488, .external_lex_state = 3}, - [3334] = {.lex_state = 271, .external_lex_state = 4}, - [3335] = {.lex_state = 447}, - [3336] = {.lex_state = 488, .external_lex_state = 3}, - [3337] = {.lex_state = 628}, - [3338] = {.lex_state = 561}, - [3339] = {.lex_state = 539}, - [3340] = {.lex_state = 539}, - [3341] = {.lex_state = 539}, - [3342] = {.lex_state = 539}, - [3343] = {.lex_state = 845, .external_lex_state = 3}, - [3344] = {.lex_state = 478}, - [3345] = {.lex_state = 488}, - [3346] = {.lex_state = 637}, - [3347] = {.lex_state = 644}, - [3348] = {.lex_state = 447}, - [3349] = {.lex_state = 447}, - [3350] = {.lex_state = 723, .external_lex_state = 3}, - [3351] = {.lex_state = 723, .external_lex_state = 3}, - [3352] = {.lex_state = 534}, - [3353] = {.lex_state = 536}, - [3354] = {.lex_state = 723, .external_lex_state = 3}, - [3355] = {.lex_state = 847, .external_lex_state = 3}, - [3356] = {.lex_state = 451}, - [3357] = {.lex_state = 478}, - [3358] = {.lex_state = 536}, - [3359] = {.lex_state = 451}, - [3360] = {.lex_state = 561}, - [3361] = {.lex_state = 617}, - [3362] = {.lex_state = 847, .external_lex_state = 3}, - [3363] = {.lex_state = 534}, - [3364] = {.lex_state = 545}, - [3365] = {.lex_state = 847, .external_lex_state = 3}, - [3366] = {.lex_state = 539}, - [3367] = {.lex_state = 899, .external_lex_state = 3}, - [3368] = {.lex_state = 447}, - [3369] = {.lex_state = 899, .external_lex_state = 3}, - [3370] = {.lex_state = 544}, - [3371] = {.lex_state = 478}, - [3372] = {.lex_state = 486}, - [3373] = {.lex_state = 478}, - [3374] = {.lex_state = 447}, - [3375] = {.lex_state = 532}, - [3376] = {.lex_state = 447}, - [3377] = {.lex_state = 488}, - [3378] = {.lex_state = 899, .external_lex_state = 3}, - [3379] = {.lex_state = 555}, - [3380] = {.lex_state = 899, .external_lex_state = 3}, - [3381] = {.lex_state = 488}, - [3382] = {.lex_state = 724, .external_lex_state = 3}, - [3383] = {.lex_state = 488, .external_lex_state = 3}, - [3384] = {.lex_state = 271, .external_lex_state = 4}, - [3385] = {.lex_state = 447}, - [3386] = {.lex_state = 488, .external_lex_state = 3}, - [3387] = {.lex_state = 628}, - [3388] = {.lex_state = 561}, - [3389] = {.lex_state = 539}, - [3390] = {.lex_state = 539}, - [3391] = {.lex_state = 539}, - [3392] = {.lex_state = 539}, - [3393] = {.lex_state = 849, .external_lex_state = 3}, - [3394] = {.lex_state = 478}, - [3395] = {.lex_state = 488}, - [3396] = {.lex_state = 637}, - [3397] = {.lex_state = 644}, - [3398] = {.lex_state = 447}, - [3399] = {.lex_state = 447}, - [3400] = {.lex_state = 724, .external_lex_state = 3}, - [3401] = {.lex_state = 534}, - [3402] = {.lex_state = 536}, - [3403] = {.lex_state = 724, .external_lex_state = 3}, - [3404] = {.lex_state = 851, .external_lex_state = 3}, - [3405] = {.lex_state = 451}, - [3406] = {.lex_state = 478}, - [3407] = {.lex_state = 536}, - [3408] = {.lex_state = 451}, - [3409] = {.lex_state = 561}, - [3410] = {.lex_state = 617}, - [3411] = {.lex_state = 851, .external_lex_state = 3}, - [3412] = {.lex_state = 534}, - [3413] = {.lex_state = 545}, - [3414] = {.lex_state = 851, .external_lex_state = 3}, - [3415] = {.lex_state = 539}, - [3416] = {.lex_state = 853, .external_lex_state = 3}, - [3417] = {.lex_state = 451}, - [3418] = {.lex_state = 478}, - [3419] = {.lex_state = 536}, - [3420] = {.lex_state = 451}, - [3421] = {.lex_state = 561}, - [3422] = {.lex_state = 617}, - [3423] = {.lex_state = 853, .external_lex_state = 3}, - [3424] = {.lex_state = 534}, - [3425] = {.lex_state = 545}, - [3426] = {.lex_state = 626, .external_lex_state = 3}, - [3427] = {.lex_state = 534}, - [3428] = {.lex_state = 725, .external_lex_state = 3}, - [3429] = {.lex_state = 488, .external_lex_state = 3}, - [3430] = {.lex_state = 271, .external_lex_state = 4}, - [3431] = {.lex_state = 447}, - [3432] = {.lex_state = 488, .external_lex_state = 3}, - [3433] = {.lex_state = 628}, - [3434] = {.lex_state = 561}, - [3435] = {.lex_state = 539}, - [3436] = {.lex_state = 539}, - [3437] = {.lex_state = 539}, - [3438] = {.lex_state = 539}, - [3439] = {.lex_state = 854, .external_lex_state = 3}, - [3440] = {.lex_state = 478}, - [3441] = {.lex_state = 488}, - [3442] = {.lex_state = 637}, - [3443] = {.lex_state = 644}, - [3444] = {.lex_state = 447}, - [3445] = {.lex_state = 447}, - [3446] = {.lex_state = 725, .external_lex_state = 3}, - [3447] = {.lex_state = 534}, - [3448] = {.lex_state = 536}, - [3449] = {.lex_state = 725, .external_lex_state = 3}, - [3450] = {.lex_state = 856, .external_lex_state = 3}, - [3451] = {.lex_state = 451}, - [3452] = {.lex_state = 478}, - [3453] = {.lex_state = 536}, - [3454] = {.lex_state = 451}, - [3455] = {.lex_state = 561}, - [3456] = {.lex_state = 617}, - [3457] = {.lex_state = 856, .external_lex_state = 3}, - [3458] = {.lex_state = 534}, - [3459] = {.lex_state = 545}, - [3460] = {.lex_state = 856, .external_lex_state = 3}, - [3461] = {.lex_state = 539}, - [3462] = {.lex_state = 858, .external_lex_state = 3}, - [3463] = {.lex_state = 451}, - [3464] = {.lex_state = 478}, - [3465] = {.lex_state = 536}, - [3466] = {.lex_state = 451}, - [3467] = {.lex_state = 561}, - [3468] = {.lex_state = 617}, - [3469] = {.lex_state = 858, .external_lex_state = 3}, - [3470] = {.lex_state = 534}, - [3471] = {.lex_state = 545}, - [3472] = {.lex_state = 488, .external_lex_state = 3}, - [3473] = {.lex_state = 488, .external_lex_state = 3}, - [3474] = {.lex_state = 271, .external_lex_state = 4}, - [3475] = {.lex_state = 447}, - [3476] = {.lex_state = 488, .external_lex_state = 3}, - [3477] = {.lex_state = 628}, - [3478] = {.lex_state = 561}, - [3479] = {.lex_state = 539}, - [3480] = {.lex_state = 539}, - [3481] = {.lex_state = 539}, - [3482] = {.lex_state = 539}, - [3483] = {.lex_state = 859, .external_lex_state = 3}, - [3484] = {.lex_state = 478}, - [3485] = {.lex_state = 488}, - [3486] = {.lex_state = 637}, - [3487] = {.lex_state = 644}, - [3488] = {.lex_state = 447}, - [3489] = {.lex_state = 447}, - [3490] = {.lex_state = 726, .external_lex_state = 3}, - [3491] = {.lex_state = 726, .external_lex_state = 3}, - [3492] = {.lex_state = 534}, - [3493] = {.lex_state = 536}, - [3494] = {.lex_state = 726, .external_lex_state = 3}, - [3495] = {.lex_state = 861, .external_lex_state = 3}, - [3496] = {.lex_state = 451}, - [3497] = {.lex_state = 478}, - [3498] = {.lex_state = 536}, - [3499] = {.lex_state = 451}, - [3500] = {.lex_state = 561}, - [3501] = {.lex_state = 617}, - [3502] = {.lex_state = 861, .external_lex_state = 3}, - [3503] = {.lex_state = 534}, - [3504] = {.lex_state = 545}, - [3505] = {.lex_state = 861, .external_lex_state = 3}, - [3506] = {.lex_state = 539}, - [3507] = {.lex_state = 900, .external_lex_state = 3}, - [3508] = {.lex_state = 447}, - [3509] = {.lex_state = 900, .external_lex_state = 3}, - [3510] = {.lex_state = 544}, - [3511] = {.lex_state = 478}, - [3512] = {.lex_state = 486}, - [3513] = {.lex_state = 478}, - [3514] = {.lex_state = 447}, - [3515] = {.lex_state = 532}, - [3516] = {.lex_state = 447}, - [3517] = {.lex_state = 488}, - [3518] = {.lex_state = 900, .external_lex_state = 3}, - [3519] = {.lex_state = 555}, - [3520] = {.lex_state = 900, .external_lex_state = 3}, - [3521] = {.lex_state = 488}, - [3522] = {.lex_state = 727, .external_lex_state = 3}, - [3523] = {.lex_state = 488, .external_lex_state = 3}, - [3524] = {.lex_state = 271, .external_lex_state = 4}, - [3525] = {.lex_state = 447}, - [3526] = {.lex_state = 488, .external_lex_state = 3}, - [3527] = {.lex_state = 628}, - [3528] = {.lex_state = 561}, - [3529] = {.lex_state = 539}, - [3530] = {.lex_state = 539}, - [3531] = {.lex_state = 539}, - [3532] = {.lex_state = 539}, - [3533] = {.lex_state = 863, .external_lex_state = 3}, - [3534] = {.lex_state = 478}, - [3535] = {.lex_state = 488}, - [3536] = {.lex_state = 637}, - [3537] = {.lex_state = 644}, - [3538] = {.lex_state = 447}, - [3539] = {.lex_state = 447}, - [3540] = {.lex_state = 727, .external_lex_state = 3}, - [3541] = {.lex_state = 534}, - [3542] = {.lex_state = 536}, - [3543] = {.lex_state = 727, .external_lex_state = 3}, - [3544] = {.lex_state = 865, .external_lex_state = 3}, - [3545] = {.lex_state = 451}, - [3546] = {.lex_state = 478}, - [3547] = {.lex_state = 536}, - [3548] = {.lex_state = 451}, - [3549] = {.lex_state = 561}, - [3550] = {.lex_state = 617}, - [3551] = {.lex_state = 865, .external_lex_state = 3}, - [3552] = {.lex_state = 534}, - [3553] = {.lex_state = 545}, - [3554] = {.lex_state = 865, .external_lex_state = 3}, - [3555] = {.lex_state = 539}, - [3556] = {.lex_state = 867, .external_lex_state = 3}, - [3557] = {.lex_state = 451}, - [3558] = {.lex_state = 478}, - [3559] = {.lex_state = 536}, - [3560] = {.lex_state = 451}, - [3561] = {.lex_state = 561}, - [3562] = {.lex_state = 617}, - [3563] = {.lex_state = 867, .external_lex_state = 3}, - [3564] = {.lex_state = 534}, - [3565] = {.lex_state = 545}, - [3566] = {.lex_state = 447}, - [3567] = {.lex_state = 488, .external_lex_state = 3}, - [3568] = {.lex_state = 447}, - [3569] = {.lex_state = 728}, - [3570] = {.lex_state = 447}, - [3571] = {.lex_state = 637}, - [3572] = {.lex_state = 628}, - [3573] = {.lex_state = 488}, - [3574] = {.lex_state = 561}, - [3575] = {.lex_state = 728}, - [3576] = {.lex_state = 447}, - [3577] = {.lex_state = 447}, - [3578] = {.lex_state = 637}, - [3579] = {.lex_state = 627}, - [3580] = {.lex_state = 534}, - [3581] = {.lex_state = 732}, - [3582] = {.lex_state = 732}, - [3583] = {.lex_state = 534}, - [3584] = {.lex_state = 536}, - [3585] = {.lex_state = 732}, - [3586] = {.lex_state = 901}, - [3587] = {.lex_state = 901}, - [3588] = {.lex_state = 447}, - [3589] = {.lex_state = 531}, - [3590] = {.lex_state = 478}, - [3591] = {.lex_state = 486}, - [3592] = {.lex_state = 478}, - [3593] = {.lex_state = 447}, - [3594] = {.lex_state = 532}, - [3595] = {.lex_state = 447}, - [3596] = {.lex_state = 901}, - [3597] = {.lex_state = 538}, - [3598] = {.lex_state = 901}, - [3599] = {.lex_state = 447}, - [3600] = {.lex_state = 545}, - [3601] = {.lex_state = 549}, - [3602] = {.lex_state = 447}, - [3603] = {.lex_state = 451}, - [3604] = {.lex_state = 561}, - [3605] = {.lex_state = 447}, - [3606] = {.lex_state = 630}, - [3607] = {.lex_state = 447}, - [3608] = {.lex_state = 447}, - [3609] = {.lex_state = 447}, - [3610] = {.lex_state = 478}, - [3611] = {.lex_state = 534}, - [3612] = {.lex_state = 549}, - [3613] = {.lex_state = 447}, - [3614] = {.lex_state = 488, .external_lex_state = 3}, - [3615] = {.lex_state = 868}, - [3616] = {.lex_state = 868}, - [3617] = {.lex_state = 870}, - [3618] = {.lex_state = 870}, - [3619] = {.lex_state = 870}, - [3620] = {.lex_state = 868}, - [3621] = {.lex_state = 870}, - [3622] = {.lex_state = 478}, - [3623] = {.lex_state = 538}, - [3624] = {.lex_state = 447}, - [3625] = {.lex_state = 534}, - [3626] = {.lex_state = 451}, - [3627] = {.lex_state = 561}, - [3628] = {.lex_state = 478}, - [3629] = {.lex_state = 540}, - [3630] = {.lex_state = 447}, - [3631] = {.lex_state = 488, .external_lex_state = 3}, - [3632] = {.lex_state = 447}, - [3633] = {.lex_state = 742}, - [3634] = {.lex_state = 447}, - [3635] = {.lex_state = 637}, - [3636] = {.lex_state = 628}, - [3637] = {.lex_state = 488}, - [3638] = {.lex_state = 561}, - [3639] = {.lex_state = 742}, - [3640] = {.lex_state = 447}, - [3641] = {.lex_state = 447}, - [3642] = {.lex_state = 637}, - [3643] = {.lex_state = 636}, - [3644] = {.lex_state = 534}, - [3645] = {.lex_state = 744}, - [3646] = {.lex_state = 744}, - [3647] = {.lex_state = 534}, - [3648] = {.lex_state = 536}, - [3649] = {.lex_state = 744}, - [3650] = {.lex_state = 902}, - [3651] = {.lex_state = 902}, - [3652] = {.lex_state = 447}, - [3653] = {.lex_state = 531}, - [3654] = {.lex_state = 478}, - [3655] = {.lex_state = 486}, - [3656] = {.lex_state = 478}, - [3657] = {.lex_state = 447}, - [3658] = {.lex_state = 532}, - [3659] = {.lex_state = 447}, - [3660] = {.lex_state = 902}, - [3661] = {.lex_state = 538}, - [3662] = {.lex_state = 902}, - [3663] = {.lex_state = 447}, - [3664] = {.lex_state = 447}, - [3665] = {.lex_state = 488, .external_lex_state = 3}, - [3666] = {.lex_state = 478}, - [3667] = {.lex_state = 538}, - [3668] = {.lex_state = 447}, - [3669] = {.lex_state = 639}, - [3670] = {.lex_state = 534}, - [3671] = {.lex_state = 643}, - [3672] = {.lex_state = 534}, - [3673] = {.lex_state = 451}, - [3674] = {.lex_state = 561}, - [3675] = {.lex_state = 555, .external_lex_state = 3}, - [3676] = {.lex_state = 488, .external_lex_state = 3}, - [3677] = {.lex_state = 271, .external_lex_state = 4}, - [3678] = {.lex_state = 447}, - [3679] = {.lex_state = 488, .external_lex_state = 3}, - [3680] = {.lex_state = 628}, - [3681] = {.lex_state = 561}, - [3682] = {.lex_state = 539}, - [3683] = {.lex_state = 539}, - [3684] = {.lex_state = 539}, - [3685] = {.lex_state = 539}, - [3686] = {.lex_state = 620, .external_lex_state = 3}, - [3687] = {.lex_state = 478}, - [3688] = {.lex_state = 488}, - [3689] = {.lex_state = 637}, - [3690] = {.lex_state = 644}, - [3691] = {.lex_state = 447}, - [3692] = {.lex_state = 447}, - [3693] = {.lex_state = 555, .external_lex_state = 3}, - [3694] = {.lex_state = 534}, - [3695] = {.lex_state = 536}, - [3696] = {.lex_state = 555, .external_lex_state = 3}, - [3697] = {.lex_state = 704, .external_lex_state = 3}, - [3698] = {.lex_state = 451}, - [3699] = {.lex_state = 478}, - [3700] = {.lex_state = 536}, - [3701] = {.lex_state = 451}, - [3702] = {.lex_state = 561}, - [3703] = {.lex_state = 617}, - [3704] = {.lex_state = 704, .external_lex_state = 3}, - [3705] = {.lex_state = 534}, - [3706] = {.lex_state = 545}, - [3707] = {.lex_state = 704, .external_lex_state = 3}, - [3708] = {.lex_state = 539}, - [3709] = {.lex_state = 538, .external_lex_state = 3}, - [3710] = {.lex_state = 451}, - [3711] = {.lex_state = 478}, - [3712] = {.lex_state = 536}, - [3713] = {.lex_state = 451}, - [3714] = {.lex_state = 561}, - [3715] = {.lex_state = 617}, - [3716] = {.lex_state = 538, .external_lex_state = 3}, - [3717] = {.lex_state = 534}, - [3718] = {.lex_state = 545}, - [3719] = {.lex_state = 447}, - [3720] = {.lex_state = 556}, - [3721] = {.lex_state = 447}, - [3722] = {.lex_state = 447}, - [3723] = {.lex_state = 447}, - [3724] = {.lex_state = 478}, - [3725] = {.lex_state = 534}, - [3726] = {.lex_state = 447}, - [3727] = {.lex_state = 488, .external_lex_state = 3}, - [3728] = {.lex_state = 447}, - [3729] = {.lex_state = 750, .external_lex_state = 3}, - [3730] = {.lex_state = 447}, - [3731] = {.lex_state = 637}, - [3732] = {.lex_state = 628}, - [3733] = {.lex_state = 488}, - [3734] = {.lex_state = 561}, - [3735] = {.lex_state = 750, .external_lex_state = 3}, - [3736] = {.lex_state = 447}, - [3737] = {.lex_state = 447}, - [3738] = {.lex_state = 637}, - [3739] = {.lex_state = 647, .external_lex_state = 3}, - [3740] = {.lex_state = 534}, - [3741] = {.lex_state = 752, .external_lex_state = 3}, - [3742] = {.lex_state = 752, .external_lex_state = 3}, - [3743] = {.lex_state = 534}, - [3744] = {.lex_state = 536}, - [3745] = {.lex_state = 752, .external_lex_state = 3}, - [3746] = {.lex_state = 558}, - [3747] = {.lex_state = 754}, - [3748] = {.lex_state = 756}, - [3749] = {.lex_state = 478}, - [3750] = {.lex_state = 754}, - [3751] = {.lex_state = 534}, - [3752] = {.lex_state = 536}, - [3753] = {.lex_state = 478}, - [3754] = {.lex_state = 754}, - [3755] = {.lex_state = 760, .external_lex_state = 3}, - [3756] = {.lex_state = 760, .external_lex_state = 3}, - [3757] = {.lex_state = 534}, - [3758] = {.lex_state = 536}, - [3759] = {.lex_state = 760, .external_lex_state = 3}, - [3760] = {.lex_state = 488, .external_lex_state = 3}, - [3761] = {.lex_state = 451}, - [3762] = {.lex_state = 561}, - [3763] = {.lex_state = 447}, - [3764] = {.lex_state = 558}, - [3765] = {.lex_state = 447}, - [3766] = {.lex_state = 447}, - [3767] = {.lex_state = 447}, - [3768] = {.lex_state = 478}, - [3769] = {.lex_state = 536}, - [3770] = {.lex_state = 536}, - [3771] = {.lex_state = 534}, - [3772] = {.lex_state = 903}, - [3773] = {.lex_state = 0, .external_lex_state = 3}, - [3774] = {.lex_state = 488, .external_lex_state = 3}, - [3775] = {.lex_state = 762, .external_lex_state = 4}, - [3776] = {.lex_state = 271, .external_lex_state = 4}, - [3777] = {.lex_state = 762, .external_lex_state = 4}, - [3778] = {.lex_state = 488, .external_lex_state = 5}, - [3779] = {.lex_state = 447}, - [3780] = {.lex_state = 451}, - [3781] = {.lex_state = 561}, - [3782] = {.lex_state = 447}, - [3783] = {.lex_state = 653}, - [3784] = {.lex_state = 447}, - [3785] = {.lex_state = 447}, - [3786] = {.lex_state = 447}, - [3787] = {.lex_state = 478}, - [3788] = {.lex_state = 534}, - [3789] = {.lex_state = 560}, - [3790] = {.lex_state = 655}, - [3791] = {.lex_state = 534}, - [3792] = {.lex_state = 657}, - [3793] = {.lex_state = 534}, - [3794] = {.lex_state = 451}, - [3795] = {.lex_state = 534}, - [3796] = {.lex_state = 451}, - [3797] = {.lex_state = 451}, - [3798] = {.lex_state = 561}, - [3799] = {.lex_state = 451, .external_lex_state = 3}, - [3800] = {.lex_state = 0, .external_lex_state = 3}, - [3801] = {.lex_state = 661}, - [3802] = {.lex_state = 825}, - [3803] = {.lex_state = 451}, - [3804] = {.lex_state = 823}, - [3805] = {.lex_state = 872, .external_lex_state = 3}, - [3806] = {.lex_state = 451}, - [3807] = {.lex_state = 271}, - [3808] = {.lex_state = 488, .external_lex_state = 3}, - [3809] = {.lex_state = 271}, - [3810] = {.lex_state = 906, .external_lex_state = 3}, - [3811] = {.lex_state = 539}, - [3812] = {.lex_state = 583}, - [3813] = {.lex_state = 534}, - [3814] = {.lex_state = 584}, - [3815] = {.lex_state = 585}, - [3816] = {.lex_state = 906, .external_lex_state = 3}, - [3817] = {.lex_state = 906, .external_lex_state = 3}, - [3818] = {.lex_state = 488, .external_lex_state = 3}, - [3819] = {.lex_state = 906, .external_lex_state = 3}, - [3820] = {.lex_state = 478}, - [3821] = {.lex_state = 488}, - [3822] = {.lex_state = 536}, - [3823] = {.lex_state = 451}, - [3824] = {.lex_state = 561}, - [3825] = {.lex_state = 447}, - [3826] = {.lex_state = 531}, - [3827] = {.lex_state = 486}, - [3828] = {.lex_state = 478}, - [3829] = {.lex_state = 532}, - [3830] = {.lex_state = 617}, - [3831] = {.lex_state = 872, .external_lex_state = 3}, - [3832] = {.lex_state = 534}, - [3833] = {.lex_state = 908, .external_lex_state = 3}, - [3834] = {.lex_state = 447}, - [3835] = {.lex_state = 908, .external_lex_state = 3}, - [3836] = {.lex_state = 531}, - [3837] = {.lex_state = 478}, - [3838] = {.lex_state = 486}, - [3839] = {.lex_state = 478}, - [3840] = {.lex_state = 447}, - [3841] = {.lex_state = 532}, - [3842] = {.lex_state = 447}, - [3843] = {.lex_state = 908, .external_lex_state = 3}, - [3844] = {.lex_state = 908, .external_lex_state = 3}, - [3845] = {.lex_state = 488, .external_lex_state = 3}, - [3846] = {.lex_state = 447}, - [3847] = {.lex_state = 545}, - [3848] = {.lex_state = 447}, - [3849] = {.lex_state = 910, .external_lex_state = 3}, - [3850] = {.lex_state = 910, .external_lex_state = 3}, - [3851] = {.lex_state = 447}, - [3852] = {.lex_state = 531}, - [3853] = {.lex_state = 478}, - [3854] = {.lex_state = 486}, - [3855] = {.lex_state = 478}, - [3856] = {.lex_state = 447}, - [3857] = {.lex_state = 532}, - [3858] = {.lex_state = 447}, - [3859] = {.lex_state = 910, .external_lex_state = 3}, - [3860] = {.lex_state = 538}, - [3861] = {.lex_state = 910, .external_lex_state = 3}, - [3862] = {.lex_state = 447}, - [3863] = {.lex_state = 531}, - [3864] = {.lex_state = 486}, - [3865] = {.lex_state = 532}, - [3866] = {.lex_state = 873, .external_lex_state = 3}, - [3867] = {.lex_state = 451}, - [3868] = {.lex_state = 271}, - [3869] = {.lex_state = 488, .external_lex_state = 3}, - [3870] = {.lex_state = 271}, - [3871] = {.lex_state = 911, .external_lex_state = 3}, - [3872] = {.lex_state = 539}, - [3873] = {.lex_state = 583}, - [3874] = {.lex_state = 534}, - [3875] = {.lex_state = 584}, - [3876] = {.lex_state = 585}, - [3877] = {.lex_state = 911, .external_lex_state = 3}, - [3878] = {.lex_state = 911, .external_lex_state = 3}, - [3879] = {.lex_state = 488, .external_lex_state = 3}, - [3880] = {.lex_state = 911, .external_lex_state = 3}, - [3881] = {.lex_state = 478}, - [3882] = {.lex_state = 488}, - [3883] = {.lex_state = 536}, - [3884] = {.lex_state = 451}, - [3885] = {.lex_state = 561}, - [3886] = {.lex_state = 447}, - [3887] = {.lex_state = 531}, - [3888] = {.lex_state = 486}, - [3889] = {.lex_state = 478}, - [3890] = {.lex_state = 532}, - [3891] = {.lex_state = 617}, - [3892] = {.lex_state = 873, .external_lex_state = 3}, - [3893] = {.lex_state = 534}, - [3894] = {.lex_state = 913, .external_lex_state = 3}, - [3895] = {.lex_state = 447}, - [3896] = {.lex_state = 913, .external_lex_state = 3}, - [3897] = {.lex_state = 531}, - [3898] = {.lex_state = 478}, - [3899] = {.lex_state = 486}, - [3900] = {.lex_state = 478}, - [3901] = {.lex_state = 447}, - [3902] = {.lex_state = 532}, - [3903] = {.lex_state = 447}, - [3904] = {.lex_state = 913, .external_lex_state = 3}, - [3905] = {.lex_state = 913, .external_lex_state = 3}, - [3906] = {.lex_state = 488, .external_lex_state = 3}, - [3907] = {.lex_state = 447}, - [3908] = {.lex_state = 545}, - [3909] = {.lex_state = 447}, - [3910] = {.lex_state = 915, .external_lex_state = 3}, - [3911] = {.lex_state = 915, .external_lex_state = 3}, - [3912] = {.lex_state = 447}, - [3913] = {.lex_state = 531}, - [3914] = {.lex_state = 478}, - [3915] = {.lex_state = 486}, - [3916] = {.lex_state = 478}, - [3917] = {.lex_state = 447}, - [3918] = {.lex_state = 532}, - [3919] = {.lex_state = 447}, - [3920] = {.lex_state = 915, .external_lex_state = 3}, - [3921] = {.lex_state = 538}, - [3922] = {.lex_state = 915, .external_lex_state = 3}, - [3923] = {.lex_state = 447}, - [3924] = {.lex_state = 531}, - [3925] = {.lex_state = 486}, - [3926] = {.lex_state = 532}, - [3927] = {.lex_state = 574, .external_lex_state = 3}, - [3928] = {.lex_state = 488, .external_lex_state = 3}, - [3929] = {.lex_state = 827, .external_lex_state = 3}, - [3930] = {.lex_state = 447}, - [3931] = {.lex_state = 451}, - [3932] = {.lex_state = 561}, - [3933] = {.lex_state = 447}, - [3934] = {.lex_state = 663, .external_lex_state = 3}, - [3935] = {.lex_state = 447}, - [3936] = {.lex_state = 447}, - [3937] = {.lex_state = 447}, - [3938] = {.lex_state = 478}, - [3939] = {.lex_state = 534}, - [3940] = {.lex_state = 675, .external_lex_state = 3}, - [3941] = {.lex_state = 675, .external_lex_state = 3}, - [3942] = {.lex_state = 675, .external_lex_state = 3}, - [3943] = {.lex_state = 536}, - [3944] = {.lex_state = 829, .external_lex_state = 3}, - [3945] = {.lex_state = 829, .external_lex_state = 3}, - [3946] = {.lex_state = 534}, - [3947] = {.lex_state = 536}, - [3948] = {.lex_state = 829, .external_lex_state = 3}, - [3949] = {.lex_state = 831, .external_lex_state = 3}, - [3950] = {.lex_state = 831, .external_lex_state = 3}, - [3951] = {.lex_state = 534}, - [3952] = {.lex_state = 536}, - [3953] = {.lex_state = 831, .external_lex_state = 3}, - [3954] = {.lex_state = 668, .external_lex_state = 3}, - [3955] = {.lex_state = 534}, - [3956] = {.lex_state = 447}, - [3957] = {.lex_state = 486}, - [3958] = {.lex_state = 675, .external_lex_state = 3}, - [3959] = {.lex_state = 488, .external_lex_state = 3}, - [3960] = {.lex_state = 271, .external_lex_state = 4}, - [3961] = {.lex_state = 447}, - [3962] = {.lex_state = 488, .external_lex_state = 3}, - [3963] = {.lex_state = 628}, - [3964] = {.lex_state = 561}, - [3965] = {.lex_state = 539}, - [3966] = {.lex_state = 539}, - [3967] = {.lex_state = 539}, - [3968] = {.lex_state = 539}, - [3969] = {.lex_state = 874, .external_lex_state = 3}, - [3970] = {.lex_state = 478}, - [3971] = {.lex_state = 488}, - [3972] = {.lex_state = 637}, - [3973] = {.lex_state = 644}, - [3974] = {.lex_state = 447}, - [3975] = {.lex_state = 447}, - [3976] = {.lex_state = 832, .external_lex_state = 3}, - [3977] = {.lex_state = 832, .external_lex_state = 3}, - [3978] = {.lex_state = 534}, - [3979] = {.lex_state = 536}, - [3980] = {.lex_state = 832, .external_lex_state = 3}, - [3981] = {.lex_state = 876, .external_lex_state = 3}, - [3982] = {.lex_state = 451}, - [3983] = {.lex_state = 478}, - [3984] = {.lex_state = 536}, - [3985] = {.lex_state = 451}, - [3986] = {.lex_state = 561}, - [3987] = {.lex_state = 617}, - [3988] = {.lex_state = 876, .external_lex_state = 3}, - [3989] = {.lex_state = 534}, - [3990] = {.lex_state = 545}, - [3991] = {.lex_state = 876, .external_lex_state = 3}, - [3992] = {.lex_state = 539}, - [3993] = {.lex_state = 916, .external_lex_state = 3}, - [3994] = {.lex_state = 447}, - [3995] = {.lex_state = 916, .external_lex_state = 3}, - [3996] = {.lex_state = 544}, - [3997] = {.lex_state = 478}, - [3998] = {.lex_state = 486}, - [3999] = {.lex_state = 478}, - [4000] = {.lex_state = 447}, - [4001] = {.lex_state = 532}, - [4002] = {.lex_state = 447}, - [4003] = {.lex_state = 488}, - [4004] = {.lex_state = 916, .external_lex_state = 3}, - [4005] = {.lex_state = 555}, - [4006] = {.lex_state = 916, .external_lex_state = 3}, - [4007] = {.lex_state = 488}, - [4008] = {.lex_state = 833, .external_lex_state = 3}, - [4009] = {.lex_state = 488, .external_lex_state = 3}, - [4010] = {.lex_state = 271, .external_lex_state = 4}, - [4011] = {.lex_state = 447}, - [4012] = {.lex_state = 488, .external_lex_state = 3}, - [4013] = {.lex_state = 628}, - [4014] = {.lex_state = 561}, - [4015] = {.lex_state = 539}, - [4016] = {.lex_state = 539}, - [4017] = {.lex_state = 539}, - [4018] = {.lex_state = 539}, - [4019] = {.lex_state = 878, .external_lex_state = 3}, - [4020] = {.lex_state = 478}, - [4021] = {.lex_state = 488}, - [4022] = {.lex_state = 637}, - [4023] = {.lex_state = 644}, - [4024] = {.lex_state = 447}, - [4025] = {.lex_state = 447}, - [4026] = {.lex_state = 833, .external_lex_state = 3}, - [4027] = {.lex_state = 534}, - [4028] = {.lex_state = 536}, - [4029] = {.lex_state = 833, .external_lex_state = 3}, - [4030] = {.lex_state = 880, .external_lex_state = 3}, - [4031] = {.lex_state = 451}, - [4032] = {.lex_state = 478}, - [4033] = {.lex_state = 536}, - [4034] = {.lex_state = 451}, - [4035] = {.lex_state = 561}, - [4036] = {.lex_state = 617}, - [4037] = {.lex_state = 880, .external_lex_state = 3}, - [4038] = {.lex_state = 534}, - [4039] = {.lex_state = 545}, - [4040] = {.lex_state = 880, .external_lex_state = 3}, - [4041] = {.lex_state = 539}, - [4042] = {.lex_state = 882, .external_lex_state = 3}, - [4043] = {.lex_state = 451}, - [4044] = {.lex_state = 478}, - [4045] = {.lex_state = 536}, - [4046] = {.lex_state = 451}, - [4047] = {.lex_state = 561}, - [4048] = {.lex_state = 617}, - [4049] = {.lex_state = 882, .external_lex_state = 3}, - [4050] = {.lex_state = 534}, - [4051] = {.lex_state = 545}, - [4052] = {.lex_state = 670, .external_lex_state = 3}, - [4053] = {.lex_state = 534}, - [4054] = {.lex_state = 834, .external_lex_state = 3}, - [4055] = {.lex_state = 488, .external_lex_state = 3}, - [4056] = {.lex_state = 271, .external_lex_state = 4}, - [4057] = {.lex_state = 447}, - [4058] = {.lex_state = 488, .external_lex_state = 3}, - [4059] = {.lex_state = 628}, - [4060] = {.lex_state = 561}, - [4061] = {.lex_state = 539}, - [4062] = {.lex_state = 539}, - [4063] = {.lex_state = 539}, - [4064] = {.lex_state = 539}, - [4065] = {.lex_state = 883, .external_lex_state = 3}, - [4066] = {.lex_state = 478}, - [4067] = {.lex_state = 488}, - [4068] = {.lex_state = 637}, - [4069] = {.lex_state = 644}, - [4070] = {.lex_state = 447}, - [4071] = {.lex_state = 447}, - [4072] = {.lex_state = 834, .external_lex_state = 3}, - [4073] = {.lex_state = 534}, - [4074] = {.lex_state = 536}, - [4075] = {.lex_state = 834, .external_lex_state = 3}, - [4076] = {.lex_state = 885, .external_lex_state = 3}, - [4077] = {.lex_state = 451}, - [4078] = {.lex_state = 478}, - [4079] = {.lex_state = 536}, - [4080] = {.lex_state = 451}, - [4081] = {.lex_state = 561}, - [4082] = {.lex_state = 617}, - [4083] = {.lex_state = 885, .external_lex_state = 3}, - [4084] = {.lex_state = 534}, - [4085] = {.lex_state = 545}, - [4086] = {.lex_state = 885, .external_lex_state = 3}, - [4087] = {.lex_state = 539}, - [4088] = {.lex_state = 887, .external_lex_state = 3}, - [4089] = {.lex_state = 451}, - [4090] = {.lex_state = 478}, - [4091] = {.lex_state = 536}, - [4092] = {.lex_state = 451}, - [4093] = {.lex_state = 561}, - [4094] = {.lex_state = 617}, - [4095] = {.lex_state = 887, .external_lex_state = 3}, - [4096] = {.lex_state = 534}, - [4097] = {.lex_state = 545}, - [4098] = {.lex_state = 488, .external_lex_state = 3}, - [4099] = {.lex_state = 271, .external_lex_state = 4}, - [4100] = {.lex_state = 447}, - [4101] = {.lex_state = 488, .external_lex_state = 3}, - [4102] = {.lex_state = 628}, - [4103] = {.lex_state = 561}, - [4104] = {.lex_state = 539}, - [4105] = {.lex_state = 539}, - [4106] = {.lex_state = 539}, - [4107] = {.lex_state = 539}, - [4108] = {.lex_state = 888, .external_lex_state = 3}, - [4109] = {.lex_state = 478}, - [4110] = {.lex_state = 488}, - [4111] = {.lex_state = 637}, - [4112] = {.lex_state = 644}, - [4113] = {.lex_state = 447}, - [4114] = {.lex_state = 447}, - [4115] = {.lex_state = 835, .external_lex_state = 3}, - [4116] = {.lex_state = 835, .external_lex_state = 3}, - [4117] = {.lex_state = 534}, - [4118] = {.lex_state = 536}, - [4119] = {.lex_state = 835, .external_lex_state = 3}, - [4120] = {.lex_state = 890, .external_lex_state = 3}, - [4121] = {.lex_state = 451}, - [4122] = {.lex_state = 478}, - [4123] = {.lex_state = 536}, - [4124] = {.lex_state = 451}, - [4125] = {.lex_state = 561}, - [4126] = {.lex_state = 617}, - [4127] = {.lex_state = 890, .external_lex_state = 3}, - [4128] = {.lex_state = 534}, - [4129] = {.lex_state = 545}, - [4130] = {.lex_state = 890, .external_lex_state = 3}, - [4131] = {.lex_state = 539}, - [4132] = {.lex_state = 917, .external_lex_state = 3}, - [4133] = {.lex_state = 447}, - [4134] = {.lex_state = 917, .external_lex_state = 3}, - [4135] = {.lex_state = 544}, - [4136] = {.lex_state = 478}, - [4137] = {.lex_state = 486}, - [4138] = {.lex_state = 478}, - [4139] = {.lex_state = 447}, - [4140] = {.lex_state = 532}, - [4141] = {.lex_state = 447}, - [4142] = {.lex_state = 488}, - [4143] = {.lex_state = 917, .external_lex_state = 3}, - [4144] = {.lex_state = 555}, - [4145] = {.lex_state = 917, .external_lex_state = 3}, - [4146] = {.lex_state = 488}, - [4147] = {.lex_state = 836, .external_lex_state = 3}, - [4148] = {.lex_state = 488, .external_lex_state = 3}, - [4149] = {.lex_state = 271, .external_lex_state = 4}, - [4150] = {.lex_state = 447}, - [4151] = {.lex_state = 488, .external_lex_state = 3}, - [4152] = {.lex_state = 628}, - [4153] = {.lex_state = 561}, - [4154] = {.lex_state = 539}, - [4155] = {.lex_state = 539}, - [4156] = {.lex_state = 539}, - [4157] = {.lex_state = 539}, - [4158] = {.lex_state = 892, .external_lex_state = 3}, - [4159] = {.lex_state = 478}, - [4160] = {.lex_state = 488}, - [4161] = {.lex_state = 637}, - [4162] = {.lex_state = 644}, - [4163] = {.lex_state = 447}, - [4164] = {.lex_state = 447}, - [4165] = {.lex_state = 836, .external_lex_state = 3}, - [4166] = {.lex_state = 534}, - [4167] = {.lex_state = 536}, - [4168] = {.lex_state = 836, .external_lex_state = 3}, - [4169] = {.lex_state = 894, .external_lex_state = 3}, - [4170] = {.lex_state = 451}, - [4171] = {.lex_state = 478}, - [4172] = {.lex_state = 536}, - [4173] = {.lex_state = 451}, - [4174] = {.lex_state = 561}, - [4175] = {.lex_state = 617}, - [4176] = {.lex_state = 894, .external_lex_state = 3}, - [4177] = {.lex_state = 534}, - [4178] = {.lex_state = 545}, - [4179] = {.lex_state = 894, .external_lex_state = 3}, - [4180] = {.lex_state = 539}, - [4181] = {.lex_state = 896, .external_lex_state = 3}, - [4182] = {.lex_state = 451}, - [4183] = {.lex_state = 478}, - [4184] = {.lex_state = 536}, - [4185] = {.lex_state = 451}, - [4186] = {.lex_state = 561}, - [4187] = {.lex_state = 617}, - [4188] = {.lex_state = 896, .external_lex_state = 3}, - [4189] = {.lex_state = 534}, - [4190] = {.lex_state = 545}, - [4191] = {.lex_state = 671}, - [4192] = {.lex_state = 534}, - [4193] = {.lex_state = 539}, - [4194] = {.lex_state = 451}, - [4195] = {.lex_state = 478}, - [4196] = {.lex_state = 536}, - [4197] = {.lex_state = 451}, - [4198] = {.lex_state = 561}, - [4199] = {.lex_state = 617}, - [4200] = {.lex_state = 539}, - [4201] = {.lex_state = 534}, - [4202] = {.lex_state = 545}, - [4203] = {.lex_state = 577, .external_lex_state = 3}, - [4204] = {.lex_state = 672}, - [4205] = {.lex_state = 534}, - [4206] = {.lex_state = 534}, - [4207] = {.lex_state = 451}, - [4208] = {.lex_state = 478}, - [4209] = {.lex_state = 561}, - [4210] = {.lex_state = 447}, - [4211] = {.lex_state = 488, .external_lex_state = 3}, - [4212] = {.lex_state = 478}, - [4213] = {.lex_state = 538}, - [4214] = {.lex_state = 478}, - [4215] = {.lex_state = 447}, - [4216] = {.lex_state = 447}, - [4217] = {.lex_state = 488, .external_lex_state = 3}, - [4218] = {.lex_state = 447}, - [4219] = {.lex_state = 837}, - [4220] = {.lex_state = 447}, - [4221] = {.lex_state = 637}, - [4222] = {.lex_state = 628}, - [4223] = {.lex_state = 488}, - [4224] = {.lex_state = 561}, - [4225] = {.lex_state = 837}, - [4226] = {.lex_state = 447}, - [4227] = {.lex_state = 447}, - [4228] = {.lex_state = 637}, - [4229] = {.lex_state = 488, .external_lex_state = 3}, - [4230] = {.lex_state = 271, .external_lex_state = 4}, - [4231] = {.lex_state = 447}, - [4232] = {.lex_state = 488, .external_lex_state = 3}, - [4233] = {.lex_state = 628}, - [4234] = {.lex_state = 561}, - [4235] = {.lex_state = 539}, - [4236] = {.lex_state = 539}, - [4237] = {.lex_state = 539}, - [4238] = {.lex_state = 539}, - [4239] = {.lex_state = 897}, - [4240] = {.lex_state = 478}, - [4241] = {.lex_state = 488}, - [4242] = {.lex_state = 637}, - [4243] = {.lex_state = 644}, - [4244] = {.lex_state = 447}, - [4245] = {.lex_state = 447}, - [4246] = {.lex_state = 720}, - [4247] = {.lex_state = 539}, - [4248] = {.lex_state = 673}, - [4249] = {.lex_state = 534}, - [4250] = {.lex_state = 478}, - [4251] = {.lex_state = 538}, - [4252] = {.lex_state = 478}, - [4253] = {.lex_state = 447}, - [4254] = {.lex_state = 674}, - [4255] = {.lex_state = 488, .external_lex_state = 3}, - [4256] = {.lex_state = 271, .external_lex_state = 4}, - [4257] = {.lex_state = 447}, - [4258] = {.lex_state = 488, .external_lex_state = 3}, - [4259] = {.lex_state = 447}, - [4260] = {.lex_state = 447}, - [4261] = {.lex_state = 674}, - [4262] = {.lex_state = 674}, - [4263] = {.lex_state = 534}, - [4264] = {.lex_state = 536}, - [4265] = {.lex_state = 674}, - [4266] = {.lex_state = 710}, - [4267] = {.lex_state = 539}, - [4268] = {.lex_state = 478}, - [4269] = {.lex_state = 488}, - [4270] = {.lex_state = 539}, - [4271] = {.lex_state = 555}, - [4272] = {.lex_state = 488}, - [4273] = {.lex_state = 536}, - [4274] = {.lex_state = 674, .external_lex_state = 3}, - [4275] = {.lex_state = 674, .external_lex_state = 3}, - [4276] = {.lex_state = 534}, - [4277] = {.lex_state = 536}, - [4278] = {.lex_state = 674, .external_lex_state = 3}, - [4279] = {.lex_state = 0, .external_lex_state = 3}, - [4280] = {.lex_state = 447}, - [4281] = {.lex_state = 675, .external_lex_state = 3}, - [4282] = {.lex_state = 675, .external_lex_state = 3}, - [4283] = {.lex_state = 675, .external_lex_state = 3}, - [4284] = {.lex_state = 451}, - [4285] = {.lex_state = 451}, - [4286] = {.lex_state = 675, .external_lex_state = 3}, - [4287] = {.lex_state = 843}, - [4288] = {.lex_state = 478}, - [4289] = {.lex_state = 651, .external_lex_state = 3}, - [4290] = {.lex_state = 534}, - [4291] = {.lex_state = 478}, - [4292] = {.lex_state = 843}, - [4293] = {.lex_state = 478}, - [4294] = {.lex_state = 447}, - [4295] = {.lex_state = 555}, - [4296] = {.lex_state = 704}, - [4297] = {.lex_state = 534}, - [4298] = {.lex_state = 538}, - [4299] = {.lex_state = 534}, - [4300] = {.lex_state = 447}, - [4301] = {.lex_state = 760}, - [4302] = {.lex_state = 488, .external_lex_state = 3}, - [4303] = {.lex_state = 271, .external_lex_state = 4}, - [4304] = {.lex_state = 447}, - [4305] = {.lex_state = 488, .external_lex_state = 3}, - [4306] = {.lex_state = 628}, - [4307] = {.lex_state = 561}, - [4308] = {.lex_state = 539}, - [4309] = {.lex_state = 539}, - [4310] = {.lex_state = 539}, - [4311] = {.lex_state = 539}, - [4312] = {.lex_state = 750}, - [4313] = {.lex_state = 478}, - [4314] = {.lex_state = 488}, - [4315] = {.lex_state = 637}, - [4316] = {.lex_state = 644}, - [4317] = {.lex_state = 447}, - [4318] = {.lex_state = 447}, - [4319] = {.lex_state = 760}, - [4320] = {.lex_state = 534}, - [4321] = {.lex_state = 536}, - [4322] = {.lex_state = 760}, - [4323] = {.lex_state = 752}, - [4324] = {.lex_state = 451}, - [4325] = {.lex_state = 478}, - [4326] = {.lex_state = 536}, - [4327] = {.lex_state = 451}, - [4328] = {.lex_state = 561}, - [4329] = {.lex_state = 617}, - [4330] = {.lex_state = 752}, - [4331] = {.lex_state = 534}, - [4332] = {.lex_state = 545}, - [4333] = {.lex_state = 752}, - [4334] = {.lex_state = 539}, - [4335] = {.lex_state = 488, .external_lex_state = 3}, - [4336] = {.lex_state = 647}, - [4337] = {.lex_state = 451}, - [4338] = {.lex_state = 478}, - [4339] = {.lex_state = 536}, - [4340] = {.lex_state = 451}, - [4341] = {.lex_state = 561}, - [4342] = {.lex_state = 617}, - [4343] = {.lex_state = 647}, - [4344] = {.lex_state = 534}, - [4345] = {.lex_state = 545}, - [4346] = {.lex_state = 488, .external_lex_state = 5}, - [4347] = {.lex_state = 447}, - [4348] = {.lex_state = 451}, - [4349] = {.lex_state = 561}, - [4350] = {.lex_state = 447}, - [4351] = {.lex_state = 617}, - [4352] = {.lex_state = 447}, - [4353] = {.lex_state = 447}, - [4354] = {.lex_state = 447}, - [4355] = {.lex_state = 478}, - [4356] = {.lex_state = 534}, - [4357] = {.lex_state = 615}, - [4358] = {.lex_state = 715}, - [4359] = {.lex_state = 534}, - [4360] = {.lex_state = 717}, - [4361] = {.lex_state = 534}, - [4362] = {.lex_state = 447}, - [4363] = {.lex_state = 620}, - [4364] = {.lex_state = 534}, - [4365] = {.lex_state = 451}, - [4366] = {.lex_state = 478}, - [4367] = {.lex_state = 561}, - [4368] = {.lex_state = 722, .external_lex_state = 3}, - [4369] = {.lex_state = 534}, - [4370] = {.lex_state = 622, .external_lex_state = 3}, - [4371] = {.lex_state = 451}, - [4372] = {.lex_state = 561}, - [4373] = {.lex_state = 918}, - [4374] = {.lex_state = 560}, - [4375] = {.lex_state = 447}, - [4376] = {.lex_state = 624}, - [4377] = {.lex_state = 447}, - [4378] = {.lex_state = 447}, - [4379] = {.lex_state = 447}, - [4380] = {.lex_state = 478}, - [4381] = {.lex_state = 534}, - [4382] = {.lex_state = 451}, - [4383] = {.lex_state = 561}, - [4384] = {.lex_state = 447}, - [4385] = {.lex_state = 523}, - [4386] = {.lex_state = 447}, - [4387] = {.lex_state = 447}, - [4388] = {.lex_state = 447}, - [4389] = {.lex_state = 478}, - [4390] = {.lex_state = 534}, - [4391] = {.lex_state = 447}, - [4392] = {.lex_state = 488, .external_lex_state = 3}, - [4393] = {.lex_state = 447}, - [4394] = {.lex_state = 845, .external_lex_state = 3}, - [4395] = {.lex_state = 447}, - [4396] = {.lex_state = 637}, - [4397] = {.lex_state = 628}, - [4398] = {.lex_state = 488}, - [4399] = {.lex_state = 561}, - [4400] = {.lex_state = 845, .external_lex_state = 3}, - [4401] = {.lex_state = 447}, - [4402] = {.lex_state = 447}, - [4403] = {.lex_state = 637}, - [4404] = {.lex_state = 723, .external_lex_state = 3}, - [4405] = {.lex_state = 534}, - [4406] = {.lex_state = 847, .external_lex_state = 3}, - [4407] = {.lex_state = 847, .external_lex_state = 3}, - [4408] = {.lex_state = 534}, - [4409] = {.lex_state = 536}, - [4410] = {.lex_state = 847, .external_lex_state = 3}, - [4411] = {.lex_state = 899, .external_lex_state = 3}, - [4412] = {.lex_state = 451}, - [4413] = {.lex_state = 478}, - [4414] = {.lex_state = 536}, - [4415] = {.lex_state = 451}, - [4416] = {.lex_state = 561}, - [4417] = {.lex_state = 447}, - [4418] = {.lex_state = 531}, - [4419] = {.lex_state = 486}, - [4420] = {.lex_state = 478}, - [4421] = {.lex_state = 532}, - [4422] = {.lex_state = 617}, - [4423] = {.lex_state = 899, .external_lex_state = 3}, - [4424] = {.lex_state = 534}, - [4425] = {.lex_state = 545}, - [4426] = {.lex_state = 447}, - [4427] = {.lex_state = 447}, - [4428] = {.lex_state = 531}, - [4429] = {.lex_state = 486}, - [4430] = {.lex_state = 532}, - [4431] = {.lex_state = 447}, - [4432] = {.lex_state = 488, .external_lex_state = 3}, - [4433] = {.lex_state = 447}, - [4434] = {.lex_state = 849, .external_lex_state = 3}, - [4435] = {.lex_state = 447}, - [4436] = {.lex_state = 637}, - [4437] = {.lex_state = 628}, - [4438] = {.lex_state = 488}, - [4439] = {.lex_state = 561}, - [4440] = {.lex_state = 849, .external_lex_state = 3}, - [4441] = {.lex_state = 447}, - [4442] = {.lex_state = 447}, - [4443] = {.lex_state = 637}, - [4444] = {.lex_state = 724, .external_lex_state = 3}, - [4445] = {.lex_state = 534}, - [4446] = {.lex_state = 851, .external_lex_state = 3}, - [4447] = {.lex_state = 851, .external_lex_state = 3}, - [4448] = {.lex_state = 534}, - [4449] = {.lex_state = 536}, - [4450] = {.lex_state = 851, .external_lex_state = 3}, - [4451] = {.lex_state = 853, .external_lex_state = 3}, - [4452] = {.lex_state = 853, .external_lex_state = 3}, - [4453] = {.lex_state = 534}, - [4454] = {.lex_state = 536}, - [4455] = {.lex_state = 853, .external_lex_state = 3}, - [4456] = {.lex_state = 626, .external_lex_state = 3}, - [4457] = {.lex_state = 447}, - [4458] = {.lex_state = 488, .external_lex_state = 3}, - [4459] = {.lex_state = 447}, - [4460] = {.lex_state = 854, .external_lex_state = 3}, - [4461] = {.lex_state = 447}, - [4462] = {.lex_state = 637}, - [4463] = {.lex_state = 628}, - [4464] = {.lex_state = 488}, - [4465] = {.lex_state = 561}, - [4466] = {.lex_state = 854, .external_lex_state = 3}, - [4467] = {.lex_state = 447}, - [4468] = {.lex_state = 447}, - [4469] = {.lex_state = 637}, - [4470] = {.lex_state = 725, .external_lex_state = 3}, - [4471] = {.lex_state = 534}, - [4472] = {.lex_state = 856, .external_lex_state = 3}, - [4473] = {.lex_state = 856, .external_lex_state = 3}, - [4474] = {.lex_state = 534}, - [4475] = {.lex_state = 536}, - [4476] = {.lex_state = 856, .external_lex_state = 3}, - [4477] = {.lex_state = 858, .external_lex_state = 3}, - [4478] = {.lex_state = 858, .external_lex_state = 3}, - [4479] = {.lex_state = 534}, - [4480] = {.lex_state = 536}, - [4481] = {.lex_state = 858, .external_lex_state = 3}, - [4482] = {.lex_state = 447}, - [4483] = {.lex_state = 488, .external_lex_state = 3}, - [4484] = {.lex_state = 447}, - [4485] = {.lex_state = 859, .external_lex_state = 3}, - [4486] = {.lex_state = 447}, - [4487] = {.lex_state = 637}, - [4488] = {.lex_state = 628}, - [4489] = {.lex_state = 488}, - [4490] = {.lex_state = 561}, - [4491] = {.lex_state = 859, .external_lex_state = 3}, - [4492] = {.lex_state = 447}, - [4493] = {.lex_state = 447}, - [4494] = {.lex_state = 637}, - [4495] = {.lex_state = 726, .external_lex_state = 3}, - [4496] = {.lex_state = 534}, - [4497] = {.lex_state = 861, .external_lex_state = 3}, - [4498] = {.lex_state = 861, .external_lex_state = 3}, - [4499] = {.lex_state = 534}, - [4500] = {.lex_state = 536}, - [4501] = {.lex_state = 861, .external_lex_state = 3}, - [4502] = {.lex_state = 900, .external_lex_state = 3}, - [4503] = {.lex_state = 451}, - [4504] = {.lex_state = 478}, - [4505] = {.lex_state = 536}, - [4506] = {.lex_state = 451}, - [4507] = {.lex_state = 561}, - [4508] = {.lex_state = 447}, - [4509] = {.lex_state = 531}, - [4510] = {.lex_state = 486}, - [4511] = {.lex_state = 478}, - [4512] = {.lex_state = 532}, - [4513] = {.lex_state = 617}, - [4514] = {.lex_state = 900, .external_lex_state = 3}, - [4515] = {.lex_state = 534}, - [4516] = {.lex_state = 545}, - [4517] = {.lex_state = 447}, - [4518] = {.lex_state = 447}, - [4519] = {.lex_state = 531}, - [4520] = {.lex_state = 486}, - [4521] = {.lex_state = 532}, - [4522] = {.lex_state = 447}, - [4523] = {.lex_state = 488, .external_lex_state = 3}, - [4524] = {.lex_state = 447}, - [4525] = {.lex_state = 863, .external_lex_state = 3}, - [4526] = {.lex_state = 447}, - [4527] = {.lex_state = 637}, - [4528] = {.lex_state = 628}, - [4529] = {.lex_state = 488}, - [4530] = {.lex_state = 561}, - [4531] = {.lex_state = 863, .external_lex_state = 3}, - [4532] = {.lex_state = 447}, - [4533] = {.lex_state = 447}, - [4534] = {.lex_state = 637}, - [4535] = {.lex_state = 727, .external_lex_state = 3}, - [4536] = {.lex_state = 534}, - [4537] = {.lex_state = 865, .external_lex_state = 3}, - [4538] = {.lex_state = 865, .external_lex_state = 3}, - [4539] = {.lex_state = 534}, - [4540] = {.lex_state = 536}, - [4541] = {.lex_state = 865, .external_lex_state = 3}, - [4542] = {.lex_state = 867, .external_lex_state = 3}, - [4543] = {.lex_state = 867, .external_lex_state = 3}, - [4544] = {.lex_state = 534}, - [4545] = {.lex_state = 536}, - [4546] = {.lex_state = 867, .external_lex_state = 3}, - [4547] = {.lex_state = 447}, - [4548] = {.lex_state = 451}, - [4549] = {.lex_state = 561}, - [4550] = {.lex_state = 447}, - [4551] = {.lex_state = 728}, - [4552] = {.lex_state = 447}, - [4553] = {.lex_state = 447}, - [4554] = {.lex_state = 447}, - [4555] = {.lex_state = 478}, - [4556] = {.lex_state = 534}, - [4557] = {.lex_state = 627}, - [4558] = {.lex_state = 732}, - [4559] = {.lex_state = 534}, - [4560] = {.lex_state = 901}, - [4561] = {.lex_state = 451}, - [4562] = {.lex_state = 478}, - [4563] = {.lex_state = 536}, - [4564] = {.lex_state = 451}, - [4565] = {.lex_state = 561}, - [4566] = {.lex_state = 617}, - [4567] = {.lex_state = 901}, - [4568] = {.lex_state = 534}, - [4569] = {.lex_state = 545}, - [4570] = {.lex_state = 549}, - [4571] = {.lex_state = 630}, - [4572] = {.lex_state = 534}, - [4573] = {.lex_state = 451}, - [4574] = {.lex_state = 478}, - [4575] = {.lex_state = 561}, - [4576] = {.lex_state = 447}, - [4577] = {.lex_state = 868}, - [4578] = {.lex_state = 868}, - [4579] = {.lex_state = 545}, - [4580] = {.lex_state = 447}, - [4581] = {.lex_state = 451}, - [4582] = {.lex_state = 561}, - [4583] = {.lex_state = 447}, - [4584] = {.lex_state = 742}, - [4585] = {.lex_state = 447}, - [4586] = {.lex_state = 447}, - [4587] = {.lex_state = 447}, - [4588] = {.lex_state = 478}, - [4589] = {.lex_state = 534}, - [4590] = {.lex_state = 636}, - [4591] = {.lex_state = 744}, - [4592] = {.lex_state = 534}, - [4593] = {.lex_state = 902}, - [4594] = {.lex_state = 451}, - [4595] = {.lex_state = 478}, - [4596] = {.lex_state = 536}, - [4597] = {.lex_state = 451}, - [4598] = {.lex_state = 561}, - [4599] = {.lex_state = 617}, - [4600] = {.lex_state = 902}, - [4601] = {.lex_state = 534}, - [4602] = {.lex_state = 545}, - [4603] = {.lex_state = 447}, - [4604] = {.lex_state = 639}, - [4605] = {.lex_state = 643}, - [4606] = {.lex_state = 556}, - [4607] = {.lex_state = 447}, - [4608] = {.lex_state = 488, .external_lex_state = 3}, - [4609] = {.lex_state = 447}, - [4610] = {.lex_state = 620, .external_lex_state = 3}, - [4611] = {.lex_state = 447}, - [4612] = {.lex_state = 637}, - [4613] = {.lex_state = 628}, - [4614] = {.lex_state = 488}, - [4615] = {.lex_state = 561}, - [4616] = {.lex_state = 620, .external_lex_state = 3}, - [4617] = {.lex_state = 447}, - [4618] = {.lex_state = 447}, - [4619] = {.lex_state = 637}, - [4620] = {.lex_state = 555, .external_lex_state = 3}, - [4621] = {.lex_state = 534}, - [4622] = {.lex_state = 704, .external_lex_state = 3}, - [4623] = {.lex_state = 704, .external_lex_state = 3}, - [4624] = {.lex_state = 534}, - [4625] = {.lex_state = 536}, - [4626] = {.lex_state = 704, .external_lex_state = 3}, - [4627] = {.lex_state = 538, .external_lex_state = 3}, - [4628] = {.lex_state = 538, .external_lex_state = 3}, - [4629] = {.lex_state = 534}, - [4630] = {.lex_state = 536}, - [4631] = {.lex_state = 538, .external_lex_state = 3}, - [4632] = {.lex_state = 534}, - [4633] = {.lex_state = 451}, - [4634] = {.lex_state = 478}, - [4635] = {.lex_state = 561}, - [4636] = {.lex_state = 447}, - [4637] = {.lex_state = 451}, - [4638] = {.lex_state = 561}, - [4639] = {.lex_state = 447}, - [4640] = {.lex_state = 750, .external_lex_state = 3}, - [4641] = {.lex_state = 447}, - [4642] = {.lex_state = 447}, - [4643] = {.lex_state = 447}, - [4644] = {.lex_state = 478}, - [4645] = {.lex_state = 534}, - [4646] = {.lex_state = 647, .external_lex_state = 3}, - [4647] = {.lex_state = 752, .external_lex_state = 3}, - [4648] = {.lex_state = 534}, - [4649] = {.lex_state = 756}, - [4650] = {.lex_state = 478}, - [4651] = {.lex_state = 754}, - [4652] = {.lex_state = 534}, - [4653] = {.lex_state = 760, .external_lex_state = 3}, - [4654] = {.lex_state = 534}, - [4655] = {.lex_state = 558}, - [4656] = {.lex_state = 534}, - [4657] = {.lex_state = 451}, - [4658] = {.lex_state = 478}, - [4659] = {.lex_state = 561}, - [4660] = {.lex_state = 451}, - [4661] = {.lex_state = 919, .external_lex_state = 4}, - [4662] = {.lex_state = 488, .external_lex_state = 3}, - [4663] = {.lex_state = 0, .external_lex_state = 2}, - [4664] = {.lex_state = 488, .external_lex_state = 3}, - [4665] = {.lex_state = 653}, - [4666] = {.lex_state = 534}, - [4667] = {.lex_state = 451}, - [4668] = {.lex_state = 478}, - [4669] = {.lex_state = 561}, - [4670] = {.lex_state = 655}, - [4671] = {.lex_state = 657}, - [4672] = {.lex_state = 819}, - [4673] = {.lex_state = 556}, - [4674] = {.lex_state = 478}, - [4675] = {.lex_state = 872, .external_lex_state = 3}, - [4676] = {.lex_state = 488, .external_lex_state = 3}, - [4677] = {.lex_state = 271, .external_lex_state = 4}, - [4678] = {.lex_state = 447}, - [4679] = {.lex_state = 488, .external_lex_state = 3}, - [4680] = {.lex_state = 628}, - [4681] = {.lex_state = 561}, - [4682] = {.lex_state = 539}, - [4683] = {.lex_state = 539}, - [4684] = {.lex_state = 539}, - [4685] = {.lex_state = 539}, - [4686] = {.lex_state = 906, .external_lex_state = 3}, - [4687] = {.lex_state = 478}, - [4688] = {.lex_state = 488}, - [4689] = {.lex_state = 637}, - [4690] = {.lex_state = 644}, - [4691] = {.lex_state = 447}, - [4692] = {.lex_state = 447}, - [4693] = {.lex_state = 872, .external_lex_state = 3}, - [4694] = {.lex_state = 534}, - [4695] = {.lex_state = 536}, - [4696] = {.lex_state = 872, .external_lex_state = 3}, - [4697] = {.lex_state = 908, .external_lex_state = 3}, - [4698] = {.lex_state = 451}, - [4699] = {.lex_state = 478}, - [4700] = {.lex_state = 536}, - [4701] = {.lex_state = 451}, - [4702] = {.lex_state = 561}, - [4703] = {.lex_state = 617}, - [4704] = {.lex_state = 908, .external_lex_state = 3}, - [4705] = {.lex_state = 534}, - [4706] = {.lex_state = 545}, - [4707] = {.lex_state = 908, .external_lex_state = 3}, - [4708] = {.lex_state = 539}, - [4709] = {.lex_state = 910, .external_lex_state = 3}, - [4710] = {.lex_state = 451}, - [4711] = {.lex_state = 478}, - [4712] = {.lex_state = 536}, - [4713] = {.lex_state = 451}, - [4714] = {.lex_state = 561}, - [4715] = {.lex_state = 617}, - [4716] = {.lex_state = 910, .external_lex_state = 3}, - [4717] = {.lex_state = 534}, - [4718] = {.lex_state = 545}, - [4719] = {.lex_state = 873, .external_lex_state = 3}, - [4720] = {.lex_state = 488, .external_lex_state = 3}, - [4721] = {.lex_state = 271, .external_lex_state = 4}, - [4722] = {.lex_state = 447}, - [4723] = {.lex_state = 488, .external_lex_state = 3}, - [4724] = {.lex_state = 628}, - [4725] = {.lex_state = 561}, - [4726] = {.lex_state = 539}, - [4727] = {.lex_state = 539}, - [4728] = {.lex_state = 539}, - [4729] = {.lex_state = 539}, - [4730] = {.lex_state = 911, .external_lex_state = 3}, - [4731] = {.lex_state = 478}, - [4732] = {.lex_state = 488}, - [4733] = {.lex_state = 637}, - [4734] = {.lex_state = 644}, - [4735] = {.lex_state = 447}, - [4736] = {.lex_state = 447}, - [4737] = {.lex_state = 873, .external_lex_state = 3}, - [4738] = {.lex_state = 534}, - [4739] = {.lex_state = 536}, - [4740] = {.lex_state = 873, .external_lex_state = 3}, - [4741] = {.lex_state = 913, .external_lex_state = 3}, - [4742] = {.lex_state = 451}, - [4743] = {.lex_state = 478}, - [4744] = {.lex_state = 536}, - [4745] = {.lex_state = 451}, - [4746] = {.lex_state = 561}, - [4747] = {.lex_state = 617}, - [4748] = {.lex_state = 913, .external_lex_state = 3}, - [4749] = {.lex_state = 534}, - [4750] = {.lex_state = 545}, - [4751] = {.lex_state = 913, .external_lex_state = 3}, - [4752] = {.lex_state = 539}, - [4753] = {.lex_state = 915, .external_lex_state = 3}, - [4754] = {.lex_state = 451}, - [4755] = {.lex_state = 478}, - [4756] = {.lex_state = 536}, - [4757] = {.lex_state = 451}, - [4758] = {.lex_state = 561}, - [4759] = {.lex_state = 617}, - [4760] = {.lex_state = 915, .external_lex_state = 3}, - [4761] = {.lex_state = 534}, - [4762] = {.lex_state = 545}, - [4763] = {.lex_state = 827, .external_lex_state = 3}, - [4764] = {.lex_state = 663, .external_lex_state = 3}, - [4765] = {.lex_state = 534}, - [4766] = {.lex_state = 451}, - [4767] = {.lex_state = 478}, - [4768] = {.lex_state = 561}, - [4769] = {.lex_state = 675, .external_lex_state = 3}, - [4770] = {.lex_state = 675, .external_lex_state = 3}, - [4771] = {.lex_state = 675, .external_lex_state = 3}, - [4772] = {.lex_state = 829, .external_lex_state = 3}, - [4773] = {.lex_state = 534}, - [4774] = {.lex_state = 831, .external_lex_state = 3}, - [4775] = {.lex_state = 534}, - [4776] = {.lex_state = 668, .external_lex_state = 3}, - [4777] = {.lex_state = 447}, - [4778] = {.lex_state = 488, .external_lex_state = 3}, - [4779] = {.lex_state = 447}, - [4780] = {.lex_state = 874, .external_lex_state = 3}, - [4781] = {.lex_state = 447}, - [4782] = {.lex_state = 637}, - [4783] = {.lex_state = 628}, - [4784] = {.lex_state = 488}, - [4785] = {.lex_state = 561}, - [4786] = {.lex_state = 874, .external_lex_state = 3}, - [4787] = {.lex_state = 447}, - [4788] = {.lex_state = 447}, - [4789] = {.lex_state = 637}, - [4790] = {.lex_state = 832, .external_lex_state = 3}, - [4791] = {.lex_state = 534}, - [4792] = {.lex_state = 876, .external_lex_state = 3}, - [4793] = {.lex_state = 876, .external_lex_state = 3}, - [4794] = {.lex_state = 534}, - [4795] = {.lex_state = 536}, - [4796] = {.lex_state = 876, .external_lex_state = 3}, - [4797] = {.lex_state = 916, .external_lex_state = 3}, - [4798] = {.lex_state = 451}, - [4799] = {.lex_state = 478}, - [4800] = {.lex_state = 536}, - [4801] = {.lex_state = 451}, - [4802] = {.lex_state = 561}, - [4803] = {.lex_state = 447}, - [4804] = {.lex_state = 531}, - [4805] = {.lex_state = 486}, - [4806] = {.lex_state = 478}, - [4807] = {.lex_state = 532}, - [4808] = {.lex_state = 617}, - [4809] = {.lex_state = 916, .external_lex_state = 3}, - [4810] = {.lex_state = 534}, - [4811] = {.lex_state = 545}, - [4812] = {.lex_state = 447}, - [4813] = {.lex_state = 447}, - [4814] = {.lex_state = 531}, - [4815] = {.lex_state = 486}, - [4816] = {.lex_state = 532}, - [4817] = {.lex_state = 447}, - [4818] = {.lex_state = 488, .external_lex_state = 3}, - [4819] = {.lex_state = 447}, - [4820] = {.lex_state = 878, .external_lex_state = 3}, - [4821] = {.lex_state = 447}, - [4822] = {.lex_state = 637}, - [4823] = {.lex_state = 628}, - [4824] = {.lex_state = 488}, - [4825] = {.lex_state = 561}, - [4826] = {.lex_state = 878, .external_lex_state = 3}, - [4827] = {.lex_state = 447}, - [4828] = {.lex_state = 447}, - [4829] = {.lex_state = 637}, - [4830] = {.lex_state = 833, .external_lex_state = 3}, - [4831] = {.lex_state = 534}, - [4832] = {.lex_state = 880, .external_lex_state = 3}, - [4833] = {.lex_state = 880, .external_lex_state = 3}, - [4834] = {.lex_state = 534}, - [4835] = {.lex_state = 536}, - [4836] = {.lex_state = 880, .external_lex_state = 3}, - [4837] = {.lex_state = 882, .external_lex_state = 3}, - [4838] = {.lex_state = 882, .external_lex_state = 3}, - [4839] = {.lex_state = 534}, - [4840] = {.lex_state = 536}, - [4841] = {.lex_state = 882, .external_lex_state = 3}, - [4842] = {.lex_state = 670, .external_lex_state = 3}, - [4843] = {.lex_state = 447}, - [4844] = {.lex_state = 488, .external_lex_state = 3}, - [4845] = {.lex_state = 447}, - [4846] = {.lex_state = 883, .external_lex_state = 3}, - [4847] = {.lex_state = 447}, - [4848] = {.lex_state = 637}, - [4849] = {.lex_state = 628}, - [4850] = {.lex_state = 488}, - [4851] = {.lex_state = 561}, - [4852] = {.lex_state = 883, .external_lex_state = 3}, - [4853] = {.lex_state = 447}, - [4854] = {.lex_state = 447}, - [4855] = {.lex_state = 637}, - [4856] = {.lex_state = 834, .external_lex_state = 3}, - [4857] = {.lex_state = 534}, - [4858] = {.lex_state = 885, .external_lex_state = 3}, - [4859] = {.lex_state = 885, .external_lex_state = 3}, - [4860] = {.lex_state = 534}, - [4861] = {.lex_state = 536}, - [4862] = {.lex_state = 885, .external_lex_state = 3}, - [4863] = {.lex_state = 887, .external_lex_state = 3}, - [4864] = {.lex_state = 887, .external_lex_state = 3}, - [4865] = {.lex_state = 534}, - [4866] = {.lex_state = 536}, - [4867] = {.lex_state = 887, .external_lex_state = 3}, - [4868] = {.lex_state = 447}, - [4869] = {.lex_state = 488, .external_lex_state = 3}, - [4870] = {.lex_state = 447}, - [4871] = {.lex_state = 888, .external_lex_state = 3}, - [4872] = {.lex_state = 447}, - [4873] = {.lex_state = 637}, - [4874] = {.lex_state = 628}, - [4875] = {.lex_state = 488}, - [4876] = {.lex_state = 561}, - [4877] = {.lex_state = 888, .external_lex_state = 3}, - [4878] = {.lex_state = 447}, - [4879] = {.lex_state = 447}, - [4880] = {.lex_state = 637}, - [4881] = {.lex_state = 835, .external_lex_state = 3}, - [4882] = {.lex_state = 534}, - [4883] = {.lex_state = 890, .external_lex_state = 3}, - [4884] = {.lex_state = 890, .external_lex_state = 3}, - [4885] = {.lex_state = 534}, - [4886] = {.lex_state = 536}, - [4887] = {.lex_state = 890, .external_lex_state = 3}, - [4888] = {.lex_state = 917, .external_lex_state = 3}, - [4889] = {.lex_state = 451}, - [4890] = {.lex_state = 478}, - [4891] = {.lex_state = 536}, - [4892] = {.lex_state = 451}, - [4893] = {.lex_state = 561}, - [4894] = {.lex_state = 447}, - [4895] = {.lex_state = 531}, - [4896] = {.lex_state = 486}, - [4897] = {.lex_state = 478}, - [4898] = {.lex_state = 532}, - [4899] = {.lex_state = 617}, - [4900] = {.lex_state = 917, .external_lex_state = 3}, - [4901] = {.lex_state = 534}, - [4902] = {.lex_state = 545}, - [4903] = {.lex_state = 447}, - [4904] = {.lex_state = 447}, - [4905] = {.lex_state = 531}, - [4906] = {.lex_state = 486}, - [4907] = {.lex_state = 532}, - [4908] = {.lex_state = 447}, - [4909] = {.lex_state = 488, .external_lex_state = 3}, - [4910] = {.lex_state = 447}, - [4911] = {.lex_state = 892, .external_lex_state = 3}, - [4912] = {.lex_state = 447}, - [4913] = {.lex_state = 637}, - [4914] = {.lex_state = 628}, - [4915] = {.lex_state = 488}, - [4916] = {.lex_state = 561}, - [4917] = {.lex_state = 892, .external_lex_state = 3}, - [4918] = {.lex_state = 447}, - [4919] = {.lex_state = 447}, - [4920] = {.lex_state = 637}, - [4921] = {.lex_state = 836, .external_lex_state = 3}, - [4922] = {.lex_state = 534}, - [4923] = {.lex_state = 894, .external_lex_state = 3}, - [4924] = {.lex_state = 894, .external_lex_state = 3}, - [4925] = {.lex_state = 534}, - [4926] = {.lex_state = 536}, - [4927] = {.lex_state = 894, .external_lex_state = 3}, - [4928] = {.lex_state = 896, .external_lex_state = 3}, - [4929] = {.lex_state = 896, .external_lex_state = 3}, - [4930] = {.lex_state = 534}, - [4931] = {.lex_state = 536}, - [4932] = {.lex_state = 896, .external_lex_state = 3}, - [4933] = {.lex_state = 671}, - [4934] = {.lex_state = 539}, - [4935] = {.lex_state = 539}, - [4936] = {.lex_state = 534}, - [4937] = {.lex_state = 536}, - [4938] = {.lex_state = 539}, - [4939] = {.lex_state = 672}, - [4940] = {.lex_state = 577, .external_lex_state = 3}, - [4941] = {.lex_state = 447}, - [4942] = {.lex_state = 447}, - [4943] = {.lex_state = 451}, - [4944] = {.lex_state = 561}, - [4945] = {.lex_state = 447}, - [4946] = {.lex_state = 837}, - [4947] = {.lex_state = 447}, - [4948] = {.lex_state = 447}, - [4949] = {.lex_state = 447}, - [4950] = {.lex_state = 478}, - [4951] = {.lex_state = 534}, - [4952] = {.lex_state = 447}, - [4953] = {.lex_state = 488, .external_lex_state = 3}, - [4954] = {.lex_state = 447}, - [4955] = {.lex_state = 897}, - [4956] = {.lex_state = 447}, - [4957] = {.lex_state = 637}, - [4958] = {.lex_state = 628}, - [4959] = {.lex_state = 488}, - [4960] = {.lex_state = 561}, - [4961] = {.lex_state = 897}, - [4962] = {.lex_state = 447}, - [4963] = {.lex_state = 447}, - [4964] = {.lex_state = 637}, - [4965] = {.lex_state = 673}, - [4966] = {.lex_state = 447}, - [4967] = {.lex_state = 488, .external_lex_state = 3}, - [4968] = {.lex_state = 674}, - [4969] = {.lex_state = 534}, - [4970] = {.lex_state = 478}, - [4971] = {.lex_state = 538}, - [4972] = {.lex_state = 478}, - [4973] = {.lex_state = 447}, - [4974] = {.lex_state = 674, .external_lex_state = 3}, - [4975] = {.lex_state = 534}, - [4976] = {.lex_state = 0, .external_lex_state = 3}, - [4977] = {.lex_state = 675, .external_lex_state = 3}, - [4978] = {.lex_state = 451}, - [4979] = {.lex_state = 478}, - [4980] = {.lex_state = 478}, - [4981] = {.lex_state = 675, .external_lex_state = 3}, - [4982] = {.lex_state = 478}, - [4983] = {.lex_state = 651, .external_lex_state = 3}, - [4984] = {.lex_state = 478}, - [4985] = {.lex_state = 478}, - [4986] = {.lex_state = 704}, - [4987] = {.lex_state = 538}, - [4988] = {.lex_state = 447}, - [4989] = {.lex_state = 488, .external_lex_state = 3}, - [4990] = {.lex_state = 447}, - [4991] = {.lex_state = 750}, - [4992] = {.lex_state = 447}, - [4993] = {.lex_state = 637}, - [4994] = {.lex_state = 628}, - [4995] = {.lex_state = 488}, - [4996] = {.lex_state = 561}, - [4997] = {.lex_state = 750}, - [4998] = {.lex_state = 447}, - [4999] = {.lex_state = 447}, - [5000] = {.lex_state = 637}, - [5001] = {.lex_state = 760}, - [5002] = {.lex_state = 534}, - [5003] = {.lex_state = 752}, - [5004] = {.lex_state = 752}, - [5005] = {.lex_state = 534}, - [5006] = {.lex_state = 536}, - [5007] = {.lex_state = 752}, - [5008] = {.lex_state = 647}, - [5009] = {.lex_state = 647}, - [5010] = {.lex_state = 534}, - [5011] = {.lex_state = 536}, - [5012] = {.lex_state = 647}, - [5013] = {.lex_state = 488, .external_lex_state = 3}, - [5014] = {.lex_state = 617}, - [5015] = {.lex_state = 534}, - [5016] = {.lex_state = 451}, - [5017] = {.lex_state = 478}, - [5018] = {.lex_state = 561}, - [5019] = {.lex_state = 715}, - [5020] = {.lex_state = 717}, - [5021] = {.lex_state = 620}, - [5022] = {.lex_state = 722, .external_lex_state = 3}, - [5023] = {.lex_state = 624}, - [5024] = {.lex_state = 675, .external_lex_state = 3}, - [5025] = {.lex_state = 534}, - [5026] = {.lex_state = 451}, - [5027] = {.lex_state = 478}, - [5028] = {.lex_state = 561}, - [5029] = {.lex_state = 523}, - [5030] = {.lex_state = 534}, - [5031] = {.lex_state = 451}, - [5032] = {.lex_state = 478}, - [5033] = {.lex_state = 561}, - [5034] = {.lex_state = 447}, - [5035] = {.lex_state = 451}, - [5036] = {.lex_state = 561}, - [5037] = {.lex_state = 447}, - [5038] = {.lex_state = 845, .external_lex_state = 3}, - [5039] = {.lex_state = 447}, - [5040] = {.lex_state = 447}, - [5041] = {.lex_state = 447}, - [5042] = {.lex_state = 478}, - [5043] = {.lex_state = 534}, - [5044] = {.lex_state = 723, .external_lex_state = 3}, - [5045] = {.lex_state = 847, .external_lex_state = 3}, - [5046] = {.lex_state = 534}, - [5047] = {.lex_state = 899, .external_lex_state = 3}, - [5048] = {.lex_state = 899, .external_lex_state = 3}, - [5049] = {.lex_state = 534}, - [5050] = {.lex_state = 536}, - [5051] = {.lex_state = 899, .external_lex_state = 3}, - [5052] = {.lex_state = 447}, - [5053] = {.lex_state = 451}, - [5054] = {.lex_state = 561}, - [5055] = {.lex_state = 447}, - [5056] = {.lex_state = 849, .external_lex_state = 3}, - [5057] = {.lex_state = 447}, - [5058] = {.lex_state = 447}, - [5059] = {.lex_state = 447}, - [5060] = {.lex_state = 478}, - [5061] = {.lex_state = 534}, - [5062] = {.lex_state = 724, .external_lex_state = 3}, - [5063] = {.lex_state = 851, .external_lex_state = 3}, - [5064] = {.lex_state = 534}, - [5065] = {.lex_state = 853, .external_lex_state = 3}, - [5066] = {.lex_state = 534}, - [5067] = {.lex_state = 447}, - [5068] = {.lex_state = 451}, - [5069] = {.lex_state = 561}, - [5070] = {.lex_state = 447}, - [5071] = {.lex_state = 854, .external_lex_state = 3}, - [5072] = {.lex_state = 447}, - [5073] = {.lex_state = 447}, - [5074] = {.lex_state = 447}, - [5075] = {.lex_state = 478}, - [5076] = {.lex_state = 534}, - [5077] = {.lex_state = 725, .external_lex_state = 3}, - [5078] = {.lex_state = 856, .external_lex_state = 3}, - [5079] = {.lex_state = 534}, - [5080] = {.lex_state = 858, .external_lex_state = 3}, - [5081] = {.lex_state = 534}, - [5082] = {.lex_state = 447}, - [5083] = {.lex_state = 451}, - [5084] = {.lex_state = 561}, - [5085] = {.lex_state = 447}, - [5086] = {.lex_state = 859, .external_lex_state = 3}, - [5087] = {.lex_state = 447}, - [5088] = {.lex_state = 447}, - [5089] = {.lex_state = 447}, - [5090] = {.lex_state = 478}, - [5091] = {.lex_state = 534}, - [5092] = {.lex_state = 726, .external_lex_state = 3}, - [5093] = {.lex_state = 861, .external_lex_state = 3}, - [5094] = {.lex_state = 534}, - [5095] = {.lex_state = 900, .external_lex_state = 3}, - [5096] = {.lex_state = 900, .external_lex_state = 3}, - [5097] = {.lex_state = 534}, - [5098] = {.lex_state = 536}, - [5099] = {.lex_state = 900, .external_lex_state = 3}, - [5100] = {.lex_state = 447}, - [5101] = {.lex_state = 451}, - [5102] = {.lex_state = 561}, - [5103] = {.lex_state = 447}, - [5104] = {.lex_state = 863, .external_lex_state = 3}, - [5105] = {.lex_state = 447}, - [5106] = {.lex_state = 447}, - [5107] = {.lex_state = 447}, - [5108] = {.lex_state = 478}, - [5109] = {.lex_state = 534}, - [5110] = {.lex_state = 727, .external_lex_state = 3}, - [5111] = {.lex_state = 865, .external_lex_state = 3}, - [5112] = {.lex_state = 534}, - [5113] = {.lex_state = 867, .external_lex_state = 3}, - [5114] = {.lex_state = 534}, - [5115] = {.lex_state = 728}, - [5116] = {.lex_state = 534}, - [5117] = {.lex_state = 451}, - [5118] = {.lex_state = 478}, - [5119] = {.lex_state = 561}, - [5120] = {.lex_state = 732}, - [5121] = {.lex_state = 901}, - [5122] = {.lex_state = 901}, - [5123] = {.lex_state = 534}, - [5124] = {.lex_state = 536}, - [5125] = {.lex_state = 901}, - [5126] = {.lex_state = 630}, - [5127] = {.lex_state = 868}, - [5128] = {.lex_state = 742}, - [5129] = {.lex_state = 534}, - [5130] = {.lex_state = 451}, - [5131] = {.lex_state = 478}, - [5132] = {.lex_state = 561}, - [5133] = {.lex_state = 744}, - [5134] = {.lex_state = 902}, - [5135] = {.lex_state = 902}, - [5136] = {.lex_state = 534}, - [5137] = {.lex_state = 536}, - [5138] = {.lex_state = 902}, - [5139] = {.lex_state = 447}, - [5140] = {.lex_state = 451}, - [5141] = {.lex_state = 561}, - [5142] = {.lex_state = 447}, - [5143] = {.lex_state = 620, .external_lex_state = 3}, - [5144] = {.lex_state = 447}, - [5145] = {.lex_state = 447}, - [5146] = {.lex_state = 447}, - [5147] = {.lex_state = 478}, - [5148] = {.lex_state = 534}, - [5149] = {.lex_state = 555, .external_lex_state = 3}, - [5150] = {.lex_state = 704, .external_lex_state = 3}, - [5151] = {.lex_state = 534}, - [5152] = {.lex_state = 538, .external_lex_state = 3}, - [5153] = {.lex_state = 534}, - [5154] = {.lex_state = 556}, - [5155] = {.lex_state = 750, .external_lex_state = 3}, - [5156] = {.lex_state = 534}, - [5157] = {.lex_state = 451}, - [5158] = {.lex_state = 478}, - [5159] = {.lex_state = 561}, - [5160] = {.lex_state = 752, .external_lex_state = 3}, - [5161] = {.lex_state = 756}, - [5162] = {.lex_state = 754}, - [5163] = {.lex_state = 760, .external_lex_state = 3}, - [5164] = {.lex_state = 558}, - [5165] = {.lex_state = 0, .external_lex_state = 3}, - [5166] = {.lex_state = 0, .external_lex_state = 3}, - [5167] = {.lex_state = 919, .external_lex_state = 4}, - [5168] = {.lex_state = 919}, - [5169] = {.lex_state = 653}, - [5170] = {.lex_state = 556}, - [5171] = {.lex_state = 447}, - [5172] = {.lex_state = 488, .external_lex_state = 3}, - [5173] = {.lex_state = 447}, - [5174] = {.lex_state = 906, .external_lex_state = 3}, - [5175] = {.lex_state = 447}, - [5176] = {.lex_state = 637}, - [5177] = {.lex_state = 628}, - [5178] = {.lex_state = 488}, - [5179] = {.lex_state = 561}, - [5180] = {.lex_state = 906, .external_lex_state = 3}, - [5181] = {.lex_state = 447}, - [5182] = {.lex_state = 447}, - [5183] = {.lex_state = 637}, - [5184] = {.lex_state = 872, .external_lex_state = 3}, - [5185] = {.lex_state = 534}, - [5186] = {.lex_state = 908, .external_lex_state = 3}, - [5187] = {.lex_state = 908, .external_lex_state = 3}, - [5188] = {.lex_state = 534}, - [5189] = {.lex_state = 536}, - [5190] = {.lex_state = 908, .external_lex_state = 3}, - [5191] = {.lex_state = 910, .external_lex_state = 3}, - [5192] = {.lex_state = 910, .external_lex_state = 3}, - [5193] = {.lex_state = 534}, - [5194] = {.lex_state = 536}, - [5195] = {.lex_state = 910, .external_lex_state = 3}, - [5196] = {.lex_state = 447}, - [5197] = {.lex_state = 488, .external_lex_state = 3}, - [5198] = {.lex_state = 447}, - [5199] = {.lex_state = 911, .external_lex_state = 3}, - [5200] = {.lex_state = 447}, - [5201] = {.lex_state = 637}, - [5202] = {.lex_state = 628}, - [5203] = {.lex_state = 488}, - [5204] = {.lex_state = 561}, - [5205] = {.lex_state = 911, .external_lex_state = 3}, - [5206] = {.lex_state = 447}, - [5207] = {.lex_state = 447}, - [5208] = {.lex_state = 637}, - [5209] = {.lex_state = 873, .external_lex_state = 3}, - [5210] = {.lex_state = 534}, - [5211] = {.lex_state = 913, .external_lex_state = 3}, - [5212] = {.lex_state = 913, .external_lex_state = 3}, - [5213] = {.lex_state = 534}, - [5214] = {.lex_state = 536}, - [5215] = {.lex_state = 913, .external_lex_state = 3}, - [5216] = {.lex_state = 915, .external_lex_state = 3}, - [5217] = {.lex_state = 915, .external_lex_state = 3}, - [5218] = {.lex_state = 534}, - [5219] = {.lex_state = 536}, - [5220] = {.lex_state = 915, .external_lex_state = 3}, - [5221] = {.lex_state = 663, .external_lex_state = 3}, - [5222] = {.lex_state = 675, .external_lex_state = 3}, - [5223] = {.lex_state = 829, .external_lex_state = 3}, - [5224] = {.lex_state = 831, .external_lex_state = 3}, - [5225] = {.lex_state = 447}, - [5226] = {.lex_state = 451}, - [5227] = {.lex_state = 561}, - [5228] = {.lex_state = 447}, - [5229] = {.lex_state = 874, .external_lex_state = 3}, - [5230] = {.lex_state = 447}, - [5231] = {.lex_state = 447}, - [5232] = {.lex_state = 447}, - [5233] = {.lex_state = 478}, - [5234] = {.lex_state = 534}, - [5235] = {.lex_state = 832, .external_lex_state = 3}, - [5236] = {.lex_state = 876, .external_lex_state = 3}, - [5237] = {.lex_state = 534}, - [5238] = {.lex_state = 916, .external_lex_state = 3}, - [5239] = {.lex_state = 916, .external_lex_state = 3}, - [5240] = {.lex_state = 534}, - [5241] = {.lex_state = 536}, - [5242] = {.lex_state = 916, .external_lex_state = 3}, - [5243] = {.lex_state = 447}, - [5244] = {.lex_state = 451}, - [5245] = {.lex_state = 561}, - [5246] = {.lex_state = 447}, - [5247] = {.lex_state = 878, .external_lex_state = 3}, - [5248] = {.lex_state = 447}, - [5249] = {.lex_state = 447}, - [5250] = {.lex_state = 447}, - [5251] = {.lex_state = 478}, - [5252] = {.lex_state = 534}, - [5253] = {.lex_state = 833, .external_lex_state = 3}, - [5254] = {.lex_state = 880, .external_lex_state = 3}, - [5255] = {.lex_state = 534}, - [5256] = {.lex_state = 882, .external_lex_state = 3}, - [5257] = {.lex_state = 534}, - [5258] = {.lex_state = 447}, - [5259] = {.lex_state = 451}, - [5260] = {.lex_state = 561}, - [5261] = {.lex_state = 447}, - [5262] = {.lex_state = 883, .external_lex_state = 3}, - [5263] = {.lex_state = 447}, - [5264] = {.lex_state = 447}, - [5265] = {.lex_state = 447}, - [5266] = {.lex_state = 478}, - [5267] = {.lex_state = 534}, - [5268] = {.lex_state = 834, .external_lex_state = 3}, - [5269] = {.lex_state = 885, .external_lex_state = 3}, - [5270] = {.lex_state = 534}, - [5271] = {.lex_state = 887, .external_lex_state = 3}, - [5272] = {.lex_state = 534}, - [5273] = {.lex_state = 447}, - [5274] = {.lex_state = 451}, - [5275] = {.lex_state = 561}, - [5276] = {.lex_state = 447}, - [5277] = {.lex_state = 888, .external_lex_state = 3}, - [5278] = {.lex_state = 447}, - [5279] = {.lex_state = 447}, - [5280] = {.lex_state = 447}, - [5281] = {.lex_state = 478}, - [5282] = {.lex_state = 534}, - [5283] = {.lex_state = 835, .external_lex_state = 3}, - [5284] = {.lex_state = 890, .external_lex_state = 3}, - [5285] = {.lex_state = 534}, - [5286] = {.lex_state = 917, .external_lex_state = 3}, - [5287] = {.lex_state = 917, .external_lex_state = 3}, - [5288] = {.lex_state = 534}, - [5289] = {.lex_state = 536}, - [5290] = {.lex_state = 917, .external_lex_state = 3}, - [5291] = {.lex_state = 447}, - [5292] = {.lex_state = 451}, - [5293] = {.lex_state = 561}, - [5294] = {.lex_state = 447}, - [5295] = {.lex_state = 892, .external_lex_state = 3}, - [5296] = {.lex_state = 447}, - [5297] = {.lex_state = 447}, - [5298] = {.lex_state = 447}, - [5299] = {.lex_state = 478}, - [5300] = {.lex_state = 534}, - [5301] = {.lex_state = 836, .external_lex_state = 3}, - [5302] = {.lex_state = 894, .external_lex_state = 3}, - [5303] = {.lex_state = 534}, - [5304] = {.lex_state = 896, .external_lex_state = 3}, - [5305] = {.lex_state = 534}, - [5306] = {.lex_state = 539}, - [5307] = {.lex_state = 534}, - [5308] = {.lex_state = 837}, - [5309] = {.lex_state = 534}, - [5310] = {.lex_state = 451}, - [5311] = {.lex_state = 478}, - [5312] = {.lex_state = 561}, - [5313] = {.lex_state = 447}, - [5314] = {.lex_state = 451}, - [5315] = {.lex_state = 561}, - [5316] = {.lex_state = 447}, - [5317] = {.lex_state = 897}, - [5318] = {.lex_state = 447}, - [5319] = {.lex_state = 447}, - [5320] = {.lex_state = 447}, - [5321] = {.lex_state = 478}, - [5322] = {.lex_state = 534}, - [5323] = {.lex_state = 447}, - [5324] = {.lex_state = 674}, - [5325] = {.lex_state = 674, .external_lex_state = 3}, - [5326] = {.lex_state = 478}, - [5327] = {.lex_state = 447}, - [5328] = {.lex_state = 451}, - [5329] = {.lex_state = 561}, - [5330] = {.lex_state = 447}, - [5331] = {.lex_state = 750}, - [5332] = {.lex_state = 447}, - [5333] = {.lex_state = 447}, - [5334] = {.lex_state = 447}, - [5335] = {.lex_state = 478}, - [5336] = {.lex_state = 534}, - [5337] = {.lex_state = 760}, - [5338] = {.lex_state = 752}, - [5339] = {.lex_state = 534}, - [5340] = {.lex_state = 647}, - [5341] = {.lex_state = 534}, - [5342] = {.lex_state = 617}, - [5343] = {.lex_state = 624}, - [5344] = {.lex_state = 523}, - [5345] = {.lex_state = 845, .external_lex_state = 3}, - [5346] = {.lex_state = 534}, - [5347] = {.lex_state = 451}, - [5348] = {.lex_state = 478}, - [5349] = {.lex_state = 561}, - [5350] = {.lex_state = 847, .external_lex_state = 3}, - [5351] = {.lex_state = 899, .external_lex_state = 3}, - [5352] = {.lex_state = 534}, - [5353] = {.lex_state = 849, .external_lex_state = 3}, - [5354] = {.lex_state = 534}, - [5355] = {.lex_state = 451}, - [5356] = {.lex_state = 478}, - [5357] = {.lex_state = 561}, - [5358] = {.lex_state = 851, .external_lex_state = 3}, - [5359] = {.lex_state = 853, .external_lex_state = 3}, - [5360] = {.lex_state = 854, .external_lex_state = 3}, - [5361] = {.lex_state = 534}, - [5362] = {.lex_state = 451}, - [5363] = {.lex_state = 478}, - [5364] = {.lex_state = 561}, - [5365] = {.lex_state = 856, .external_lex_state = 3}, - [5366] = {.lex_state = 858, .external_lex_state = 3}, - [5367] = {.lex_state = 859, .external_lex_state = 3}, - [5368] = {.lex_state = 534}, - [5369] = {.lex_state = 451}, - [5370] = {.lex_state = 478}, - [5371] = {.lex_state = 561}, - [5372] = {.lex_state = 861, .external_lex_state = 3}, - [5373] = {.lex_state = 900, .external_lex_state = 3}, - [5374] = {.lex_state = 534}, - [5375] = {.lex_state = 863, .external_lex_state = 3}, - [5376] = {.lex_state = 534}, - [5377] = {.lex_state = 451}, - [5378] = {.lex_state = 478}, - [5379] = {.lex_state = 561}, - [5380] = {.lex_state = 865, .external_lex_state = 3}, - [5381] = {.lex_state = 867, .external_lex_state = 3}, - [5382] = {.lex_state = 728}, - [5383] = {.lex_state = 901}, - [5384] = {.lex_state = 534}, - [5385] = {.lex_state = 742}, - [5386] = {.lex_state = 902}, - [5387] = {.lex_state = 534}, - [5388] = {.lex_state = 620, .external_lex_state = 3}, - [5389] = {.lex_state = 534}, - [5390] = {.lex_state = 451}, - [5391] = {.lex_state = 478}, - [5392] = {.lex_state = 561}, - [5393] = {.lex_state = 704, .external_lex_state = 3}, - [5394] = {.lex_state = 538, .external_lex_state = 3}, - [5395] = {.lex_state = 750, .external_lex_state = 3}, - [5396] = {.lex_state = 919, .external_lex_state = 4}, - [5397] = {.lex_state = 447}, - [5398] = {.lex_state = 451}, - [5399] = {.lex_state = 561}, - [5400] = {.lex_state = 447}, - [5401] = {.lex_state = 906, .external_lex_state = 3}, - [5402] = {.lex_state = 447}, - [5403] = {.lex_state = 447}, - [5404] = {.lex_state = 447}, - [5405] = {.lex_state = 478}, - [5406] = {.lex_state = 534}, - [5407] = {.lex_state = 872, .external_lex_state = 3}, - [5408] = {.lex_state = 908, .external_lex_state = 3}, - [5409] = {.lex_state = 534}, - [5410] = {.lex_state = 910, .external_lex_state = 3}, - [5411] = {.lex_state = 534}, - [5412] = {.lex_state = 447}, - [5413] = {.lex_state = 451}, - [5414] = {.lex_state = 561}, - [5415] = {.lex_state = 447}, - [5416] = {.lex_state = 911, .external_lex_state = 3}, - [5417] = {.lex_state = 447}, - [5418] = {.lex_state = 447}, - [5419] = {.lex_state = 447}, - [5420] = {.lex_state = 478}, - [5421] = {.lex_state = 534}, - [5422] = {.lex_state = 873, .external_lex_state = 3}, - [5423] = {.lex_state = 913, .external_lex_state = 3}, - [5424] = {.lex_state = 534}, - [5425] = {.lex_state = 915, .external_lex_state = 3}, - [5426] = {.lex_state = 534}, - [5427] = {.lex_state = 874, .external_lex_state = 3}, - [5428] = {.lex_state = 534}, - [5429] = {.lex_state = 451}, - [5430] = {.lex_state = 478}, - [5431] = {.lex_state = 561}, - [5432] = {.lex_state = 876, .external_lex_state = 3}, - [5433] = {.lex_state = 916, .external_lex_state = 3}, - [5434] = {.lex_state = 534}, - [5435] = {.lex_state = 878, .external_lex_state = 3}, - [5436] = {.lex_state = 534}, - [5437] = {.lex_state = 451}, - [5438] = {.lex_state = 478}, - [5439] = {.lex_state = 561}, - [5440] = {.lex_state = 880, .external_lex_state = 3}, - [5441] = {.lex_state = 882, .external_lex_state = 3}, - [5442] = {.lex_state = 883, .external_lex_state = 3}, - [5443] = {.lex_state = 534}, - [5444] = {.lex_state = 451}, - [5445] = {.lex_state = 478}, - [5446] = {.lex_state = 561}, - [5447] = {.lex_state = 885, .external_lex_state = 3}, - [5448] = {.lex_state = 887, .external_lex_state = 3}, - [5449] = {.lex_state = 888, .external_lex_state = 3}, - [5450] = {.lex_state = 534}, - [5451] = {.lex_state = 451}, - [5452] = {.lex_state = 478}, - [5453] = {.lex_state = 561}, - [5454] = {.lex_state = 890, .external_lex_state = 3}, - [5455] = {.lex_state = 917, .external_lex_state = 3}, - [5456] = {.lex_state = 534}, - [5457] = {.lex_state = 892, .external_lex_state = 3}, - [5458] = {.lex_state = 534}, - [5459] = {.lex_state = 451}, - [5460] = {.lex_state = 478}, - [5461] = {.lex_state = 561}, - [5462] = {.lex_state = 894, .external_lex_state = 3}, - [5463] = {.lex_state = 896, .external_lex_state = 3}, - [5464] = {.lex_state = 539}, - [5465] = {.lex_state = 837}, - [5466] = {.lex_state = 897}, - [5467] = {.lex_state = 534}, - [5468] = {.lex_state = 451}, - [5469] = {.lex_state = 478}, - [5470] = {.lex_state = 561}, - [5471] = {.lex_state = 750}, - [5472] = {.lex_state = 534}, - [5473] = {.lex_state = 451}, - [5474] = {.lex_state = 478}, - [5475] = {.lex_state = 561}, - [5476] = {.lex_state = 752}, - [5477] = {.lex_state = 647}, - [5478] = {.lex_state = 845, .external_lex_state = 3}, - [5479] = {.lex_state = 899, .external_lex_state = 3}, - [5480] = {.lex_state = 849, .external_lex_state = 3}, - [5481] = {.lex_state = 854, .external_lex_state = 3}, - [5482] = {.lex_state = 859, .external_lex_state = 3}, - [5483] = {.lex_state = 900, .external_lex_state = 3}, - [5484] = {.lex_state = 863, .external_lex_state = 3}, - [5485] = {.lex_state = 901}, - [5486] = {.lex_state = 902}, - [5487] = {.lex_state = 620, .external_lex_state = 3}, - [5488] = {.lex_state = 906, .external_lex_state = 3}, - [5489] = {.lex_state = 534}, - [5490] = {.lex_state = 451}, - [5491] = {.lex_state = 478}, - [5492] = {.lex_state = 561}, - [5493] = {.lex_state = 908, .external_lex_state = 3}, - [5494] = {.lex_state = 910, .external_lex_state = 3}, - [5495] = {.lex_state = 911, .external_lex_state = 3}, - [5496] = {.lex_state = 534}, - [5497] = {.lex_state = 451}, - [5498] = {.lex_state = 478}, - [5499] = {.lex_state = 561}, - [5500] = {.lex_state = 913, .external_lex_state = 3}, - [5501] = {.lex_state = 915, .external_lex_state = 3}, - [5502] = {.lex_state = 874, .external_lex_state = 3}, - [5503] = {.lex_state = 916, .external_lex_state = 3}, - [5504] = {.lex_state = 878, .external_lex_state = 3}, - [5505] = {.lex_state = 883, .external_lex_state = 3}, - [5506] = {.lex_state = 888, .external_lex_state = 3}, - [5507] = {.lex_state = 917, .external_lex_state = 3}, - [5508] = {.lex_state = 892, .external_lex_state = 3}, - [5509] = {.lex_state = 897}, - [5510] = {.lex_state = 750}, - [5511] = {.lex_state = 906, .external_lex_state = 3}, - [5512] = {.lex_state = 911, .external_lex_state = 3}, + [1867] = {.lex_state = 541}, + [1868] = {.lex_state = 718}, + [1869] = {.lex_state = 718}, + [1870] = {.lex_state = 718}, + [1871] = {.lex_state = 543}, + [1872] = {.lex_state = 718}, + [1873] = {.lex_state = 495, .external_lex_state = 3}, + [1874] = {.lex_state = 634}, + [1875] = {.lex_state = 461}, + [1876] = {.lex_state = 718, .external_lex_state = 3}, + [1877] = {.lex_state = 718, .external_lex_state = 3}, + [1878] = {.lex_state = 461}, + [1879] = {.lex_state = 538}, + [1880] = {.lex_state = 461}, + [1881] = {.lex_state = 461}, + [1882] = {.lex_state = 485}, + [1883] = {.lex_state = 493}, + [1884] = {.lex_state = 461}, + [1885] = {.lex_state = 485}, + [1886] = {.lex_state = 539}, + [1887] = {.lex_state = 718}, + [1888] = {.lex_state = 634, .external_lex_state = 4}, + [1889] = {.lex_state = 718, .external_lex_state = 3}, + [1890] = {.lex_state = 718}, + [1891] = {.lex_state = 718, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1894] = {.lex_state = 656}, + [1895] = {.lex_state = 572}, + [1896] = {.lex_state = 461}, + [1897] = {.lex_state = 656}, + [1898] = {.lex_state = 640}, + [1899] = {.lex_state = 461}, + [1900] = {.lex_state = 721}, + [1901] = {.lex_state = 453}, + [1902] = {.lex_state = 485}, + [1903] = {.lex_state = 568}, + [1904] = {.lex_state = 582}, + [1905] = {.lex_state = 543}, + [1906] = {.lex_state = 453}, + [1907] = {.lex_state = 585}, + [1908] = {.lex_state = 721}, + [1909] = {.lex_state = 541}, + [1910] = {.lex_state = 723}, + [1911] = {.lex_state = 553}, + [1912] = {.lex_state = 495, .external_lex_state = 3}, + [1913] = {.lex_state = 274, .external_lex_state = 4}, + [1914] = {.lex_state = 461}, + [1915] = {.lex_state = 495, .external_lex_state = 3}, + [1916] = {.lex_state = 572}, + [1917] = {.lex_state = 541}, + [1918] = {.lex_state = 543}, + [1919] = {.lex_state = 572}, + [1920] = {.lex_state = 545}, + [1921] = {.lex_state = 453}, + [1922] = {.lex_state = 485}, + [1923] = {.lex_state = 568}, + [1924] = {.lex_state = 543}, + [1925] = {.lex_state = 453}, + [1926] = {.lex_state = 582}, + [1927] = {.lex_state = 585}, + [1928] = {.lex_state = 545}, + [1929] = {.lex_state = 541}, + [1930] = {.lex_state = 461}, + [1931] = {.lex_state = 461}, + [1932] = {.lex_state = 727}, + [1933] = {.lex_state = 553}, + [1934] = {.lex_state = 495, .external_lex_state = 3}, + [1935] = {.lex_state = 274, .external_lex_state = 4}, + [1936] = {.lex_state = 461}, + [1937] = {.lex_state = 495, .external_lex_state = 3}, + [1938] = {.lex_state = 777}, + [1939] = {.lex_state = 461}, + [1940] = {.lex_state = 453}, + [1941] = {.lex_state = 777}, + [1942] = {.lex_state = 535}, + [1943] = {.lex_state = 560}, + [1944] = {.lex_state = 485}, + [1945] = {.lex_state = 274, .external_lex_state = 2}, + [1946] = {.lex_state = 485}, + [1947] = {.lex_state = 461}, + [1948] = {.lex_state = 493}, + [1949] = {.lex_state = 461}, + [1950] = {.lex_state = 485}, + [1951] = {.lex_state = 539}, + [1952] = {.lex_state = 541}, + [1953] = {.lex_state = 777}, + [1954] = {.lex_state = 495}, + [1955] = {.lex_state = 572}, + [1956] = {.lex_state = 495}, + [1957] = {.lex_state = 777}, + [1958] = {.lex_state = 495}, + [1959] = {.lex_state = 553}, + [1960] = {.lex_state = 495, .external_lex_state = 3}, + [1961] = {.lex_state = 461}, + [1962] = {.lex_state = 495, .external_lex_state = 5}, + [1963] = {.lex_state = 543}, + [1964] = {.lex_state = 461}, + [1965] = {.lex_state = 461}, + [1966] = {.lex_state = 731}, + [1967] = {.lex_state = 553}, + [1968] = {.lex_state = 495, .external_lex_state = 3}, + [1969] = {.lex_state = 274, .external_lex_state = 4}, + [1970] = {.lex_state = 461}, + [1971] = {.lex_state = 495, .external_lex_state = 3}, + [1972] = {.lex_state = 461}, + [1973] = {.lex_state = 635}, + [1974] = {.lex_state = 461}, + [1975] = {.lex_state = 656}, + [1976] = {.lex_state = 644}, + [1977] = {.lex_state = 495}, + [1978] = {.lex_state = 585}, + [1979] = {.lex_state = 461}, + [1980] = {.lex_state = 635}, + [1981] = {.lex_state = 461}, + [1982] = {.lex_state = 733, .external_lex_state = 3}, + [1983] = {.lex_state = 453}, + [1984] = {.lex_state = 485}, + [1985] = {.lex_state = 543}, + [1986] = {.lex_state = 453}, + [1987] = {.lex_state = 568}, + [1988] = {.lex_state = 585}, + [1989] = {.lex_state = 582}, + [1990] = {.lex_state = 461}, + [1991] = {.lex_state = 538}, + [1992] = {.lex_state = 493}, + [1993] = {.lex_state = 485}, + [1994] = {.lex_state = 539}, + [1995] = {.lex_state = 733, .external_lex_state = 3}, + [1996] = {.lex_state = 541}, + [1997] = {.lex_state = 461}, + [1998] = {.lex_state = 538}, + [1999] = {.lex_state = 493}, + [2000] = {.lex_state = 539}, + [2001] = {.lex_state = 461}, + [2002] = {.lex_state = 495, .external_lex_state = 3}, + [2003] = {.lex_state = 461}, + [2004] = {.lex_state = 644}, + [2005] = {.lex_state = 585}, + [2006] = {.lex_state = 669, .external_lex_state = 3}, + [2007] = {.lex_state = 688, .external_lex_state = 3}, + [2008] = {.lex_state = 553}, + [2009] = {.lex_state = 553}, + [2010] = {.lex_state = 553}, + [2011] = {.lex_state = 553}, + [2012] = {.lex_state = 637}, + [2013] = {.lex_state = 495}, + [2014] = {.lex_state = 485}, + [2015] = {.lex_state = 656}, + [2016] = {.lex_state = 495, .external_lex_state = 3}, + [2017] = {.lex_state = 495, .external_lex_state = 5}, + [2018] = {.lex_state = 637}, + [2019] = {.lex_state = 644}, + [2020] = {.lex_state = 585}, + [2021] = {.lex_state = 553}, + [2022] = {.lex_state = 553}, + [2023] = {.lex_state = 553}, + [2024] = {.lex_state = 553}, + [2025] = {.lex_state = 535}, + [2026] = {.lex_state = 495}, + [2027] = {.lex_state = 485}, + [2028] = {.lex_state = 656}, + [2029] = {.lex_state = 535}, + [2030] = {.lex_state = 639, .external_lex_state = 3}, + [2031] = {.lex_state = 639, .external_lex_state = 3}, + [2032] = {.lex_state = 541}, + [2033] = {.lex_state = 543}, + [2034] = {.lex_state = 639, .external_lex_state = 3}, + [2035] = {.lex_state = 734, .external_lex_state = 3}, + [2036] = {.lex_state = 453}, + [2037] = {.lex_state = 495}, + [2038] = {.lex_state = 856, .external_lex_state = 3}, + [2039] = {.lex_state = 553}, + [2040] = {.lex_state = 632}, + [2041] = {.lex_state = 541}, + [2042] = {.lex_state = 633}, + [2043] = {.lex_state = 634}, + [2044] = {.lex_state = 856, .external_lex_state = 3}, + [2045] = {.lex_state = 856, .external_lex_state = 3}, + [2046] = {.lex_state = 495, .external_lex_state = 3}, + [2047] = {.lex_state = 856, .external_lex_state = 3}, + [2048] = {.lex_state = 485}, + [2049] = {.lex_state = 858, .external_lex_state = 3}, + [2050] = {.lex_state = 461}, + [2051] = {.lex_state = 858, .external_lex_state = 3}, + [2052] = {.lex_state = 538}, + [2053] = {.lex_state = 461}, + [2054] = {.lex_state = 461}, + [2055] = {.lex_state = 485}, + [2056] = {.lex_state = 493}, + [2057] = {.lex_state = 485}, + [2058] = {.lex_state = 539}, + [2059] = {.lex_state = 858, .external_lex_state = 3}, + [2060] = {.lex_state = 858, .external_lex_state = 3}, + [2061] = {.lex_state = 495, .external_lex_state = 3}, + [2062] = {.lex_state = 274}, + [2063] = {.lex_state = 495, .external_lex_state = 3}, + [2064] = {.lex_state = 274}, + [2065] = {.lex_state = 543}, + [2066] = {.lex_state = 453}, + [2067] = {.lex_state = 568}, + [2068] = {.lex_state = 585}, + [2069] = {.lex_state = 582}, + [2070] = {.lex_state = 461}, + [2071] = {.lex_state = 538}, + [2072] = {.lex_state = 493}, + [2073] = {.lex_state = 485}, + [2074] = {.lex_state = 539}, + [2075] = {.lex_state = 734, .external_lex_state = 3}, + [2076] = {.lex_state = 541}, + [2077] = {.lex_state = 461}, + [2078] = {.lex_state = 461}, + [2079] = {.lex_state = 538}, + [2080] = {.lex_state = 493}, + [2081] = {.lex_state = 539}, + [2082] = {.lex_state = 461}, + [2083] = {.lex_state = 860, .external_lex_state = 3}, + [2084] = {.lex_state = 860, .external_lex_state = 3}, + [2085] = {.lex_state = 461}, + [2086] = {.lex_state = 538}, + [2087] = {.lex_state = 461}, + [2088] = {.lex_state = 485}, + [2089] = {.lex_state = 461}, + [2090] = {.lex_state = 493}, + [2091] = {.lex_state = 485}, + [2092] = {.lex_state = 539}, + [2093] = {.lex_state = 860, .external_lex_state = 3}, + [2094] = {.lex_state = 545}, + [2095] = {.lex_state = 860, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 2}, + [2097] = {.lex_state = 495}, + [2098] = {.lex_state = 861, .external_lex_state = 3}, + [2099] = {.lex_state = 553}, + [2100] = {.lex_state = 632}, + [2101] = {.lex_state = 541}, + [2102] = {.lex_state = 633}, + [2103] = {.lex_state = 634}, + [2104] = {.lex_state = 861, .external_lex_state = 3}, + [2105] = {.lex_state = 861, .external_lex_state = 3}, + [2106] = {.lex_state = 495, .external_lex_state = 3}, + [2107] = {.lex_state = 861, .external_lex_state = 3}, + [2108] = {.lex_state = 735, .external_lex_state = 3}, + [2109] = {.lex_state = 453}, + [2110] = {.lex_state = 485}, + [2111] = {.lex_state = 568}, + [2112] = {.lex_state = 863, .external_lex_state = 3}, + [2113] = {.lex_state = 461}, + [2114] = {.lex_state = 863, .external_lex_state = 3}, + [2115] = {.lex_state = 538}, + [2116] = {.lex_state = 461}, + [2117] = {.lex_state = 461}, + [2118] = {.lex_state = 485}, + [2119] = {.lex_state = 493}, + [2120] = {.lex_state = 485}, + [2121] = {.lex_state = 539}, + [2122] = {.lex_state = 863, .external_lex_state = 3}, + [2123] = {.lex_state = 863, .external_lex_state = 3}, + [2124] = {.lex_state = 495, .external_lex_state = 3}, + [2125] = {.lex_state = 274}, + [2126] = {.lex_state = 495, .external_lex_state = 3}, + [2127] = {.lex_state = 274}, + [2128] = {.lex_state = 543}, + [2129] = {.lex_state = 453}, + [2130] = {.lex_state = 582}, + [2131] = {.lex_state = 585}, + [2132] = {.lex_state = 735, .external_lex_state = 3}, + [2133] = {.lex_state = 541}, + [2134] = {.lex_state = 461}, + [2135] = {.lex_state = 736, .external_lex_state = 3}, + [2136] = {.lex_state = 453}, + [2137] = {.lex_state = 495}, + [2138] = {.lex_state = 865, .external_lex_state = 3}, + [2139] = {.lex_state = 553}, + [2140] = {.lex_state = 632}, + [2141] = {.lex_state = 541}, + [2142] = {.lex_state = 633}, + [2143] = {.lex_state = 634}, + [2144] = {.lex_state = 865, .external_lex_state = 3}, + [2145] = {.lex_state = 865, .external_lex_state = 3}, + [2146] = {.lex_state = 495, .external_lex_state = 3}, + [2147] = {.lex_state = 865, .external_lex_state = 3}, + [2148] = {.lex_state = 485}, + [2149] = {.lex_state = 867, .external_lex_state = 3}, + [2150] = {.lex_state = 461}, + [2151] = {.lex_state = 867, .external_lex_state = 3}, + [2152] = {.lex_state = 538}, + [2153] = {.lex_state = 461}, + [2154] = {.lex_state = 461}, + [2155] = {.lex_state = 485}, + [2156] = {.lex_state = 493}, + [2157] = {.lex_state = 485}, + [2158] = {.lex_state = 539}, + [2159] = {.lex_state = 867, .external_lex_state = 3}, + [2160] = {.lex_state = 867, .external_lex_state = 3}, + [2161] = {.lex_state = 495, .external_lex_state = 3}, + [2162] = {.lex_state = 274}, + [2163] = {.lex_state = 495, .external_lex_state = 3}, + [2164] = {.lex_state = 274}, + [2165] = {.lex_state = 543}, + [2166] = {.lex_state = 453}, + [2167] = {.lex_state = 568}, + [2168] = {.lex_state = 585}, + [2169] = {.lex_state = 582}, + [2170] = {.lex_state = 461}, + [2171] = {.lex_state = 538}, + [2172] = {.lex_state = 493}, + [2173] = {.lex_state = 485}, + [2174] = {.lex_state = 539}, + [2175] = {.lex_state = 736, .external_lex_state = 3}, + [2176] = {.lex_state = 541}, + [2177] = {.lex_state = 461}, + [2178] = {.lex_state = 461}, + [2179] = {.lex_state = 538}, + [2180] = {.lex_state = 493}, + [2181] = {.lex_state = 539}, + [2182] = {.lex_state = 461}, + [2183] = {.lex_state = 869, .external_lex_state = 3}, + [2184] = {.lex_state = 869, .external_lex_state = 3}, + [2185] = {.lex_state = 461}, + [2186] = {.lex_state = 538}, + [2187] = {.lex_state = 461}, + [2188] = {.lex_state = 485}, + [2189] = {.lex_state = 461}, + [2190] = {.lex_state = 493}, + [2191] = {.lex_state = 485}, + [2192] = {.lex_state = 539}, + [2193] = {.lex_state = 869, .external_lex_state = 3}, + [2194] = {.lex_state = 545}, + [2195] = {.lex_state = 869, .external_lex_state = 3}, + [2196] = {.lex_state = 495}, + [2197] = {.lex_state = 870, .external_lex_state = 3}, + [2198] = {.lex_state = 553}, + [2199] = {.lex_state = 632}, + [2200] = {.lex_state = 541}, + [2201] = {.lex_state = 633}, + [2202] = {.lex_state = 634}, + [2203] = {.lex_state = 870, .external_lex_state = 3}, + [2204] = {.lex_state = 870, .external_lex_state = 3}, + [2205] = {.lex_state = 495, .external_lex_state = 3}, + [2206] = {.lex_state = 870, .external_lex_state = 3}, + [2207] = {.lex_state = 737, .external_lex_state = 3}, + [2208] = {.lex_state = 453}, + [2209] = {.lex_state = 485}, + [2210] = {.lex_state = 568}, + [2211] = {.lex_state = 872, .external_lex_state = 3}, + [2212] = {.lex_state = 461}, + [2213] = {.lex_state = 872, .external_lex_state = 3}, + [2214] = {.lex_state = 538}, + [2215] = {.lex_state = 461}, + [2216] = {.lex_state = 461}, + [2217] = {.lex_state = 485}, + [2218] = {.lex_state = 493}, + [2219] = {.lex_state = 485}, + [2220] = {.lex_state = 539}, + [2221] = {.lex_state = 872, .external_lex_state = 3}, + [2222] = {.lex_state = 872, .external_lex_state = 3}, + [2223] = {.lex_state = 495, .external_lex_state = 3}, + [2224] = {.lex_state = 274}, + [2225] = {.lex_state = 495, .external_lex_state = 3}, + [2226] = {.lex_state = 274}, + [2227] = {.lex_state = 543}, + [2228] = {.lex_state = 453}, + [2229] = {.lex_state = 582}, + [2230] = {.lex_state = 585}, + [2231] = {.lex_state = 737, .external_lex_state = 3}, + [2232] = {.lex_state = 541}, + [2233] = {.lex_state = 461}, + [2234] = {.lex_state = 738, .external_lex_state = 3}, + [2235] = {.lex_state = 453}, + [2236] = {.lex_state = 495}, + [2237] = {.lex_state = 874, .external_lex_state = 3}, + [2238] = {.lex_state = 553}, + [2239] = {.lex_state = 632}, + [2240] = {.lex_state = 541}, + [2241] = {.lex_state = 633}, + [2242] = {.lex_state = 634}, + [2243] = {.lex_state = 874, .external_lex_state = 3}, + [2244] = {.lex_state = 874, .external_lex_state = 3}, + [2245] = {.lex_state = 495, .external_lex_state = 3}, + [2246] = {.lex_state = 874, .external_lex_state = 3}, + [2247] = {.lex_state = 485}, + [2248] = {.lex_state = 876, .external_lex_state = 3}, + [2249] = {.lex_state = 461}, + [2250] = {.lex_state = 876, .external_lex_state = 3}, + [2251] = {.lex_state = 538}, + [2252] = {.lex_state = 461}, + [2253] = {.lex_state = 461}, + [2254] = {.lex_state = 485}, + [2255] = {.lex_state = 493}, + [2256] = {.lex_state = 485}, + [2257] = {.lex_state = 539}, + [2258] = {.lex_state = 876, .external_lex_state = 3}, + [2259] = {.lex_state = 876, .external_lex_state = 3}, + [2260] = {.lex_state = 495, .external_lex_state = 3}, + [2261] = {.lex_state = 274}, + [2262] = {.lex_state = 495, .external_lex_state = 3}, + [2263] = {.lex_state = 274}, + [2264] = {.lex_state = 543}, + [2265] = {.lex_state = 453}, + [2266] = {.lex_state = 568}, + [2267] = {.lex_state = 585}, + [2268] = {.lex_state = 582}, + [2269] = {.lex_state = 461}, + [2270] = {.lex_state = 538}, + [2271] = {.lex_state = 493}, + [2272] = {.lex_state = 485}, + [2273] = {.lex_state = 539}, + [2274] = {.lex_state = 738, .external_lex_state = 3}, + [2275] = {.lex_state = 541}, + [2276] = {.lex_state = 461}, + [2277] = {.lex_state = 461}, + [2278] = {.lex_state = 538}, + [2279] = {.lex_state = 493}, + [2280] = {.lex_state = 539}, + [2281] = {.lex_state = 461}, + [2282] = {.lex_state = 878, .external_lex_state = 3}, + [2283] = {.lex_state = 878, .external_lex_state = 3}, + [2284] = {.lex_state = 461}, + [2285] = {.lex_state = 538}, + [2286] = {.lex_state = 461}, + [2287] = {.lex_state = 485}, + [2288] = {.lex_state = 461}, + [2289] = {.lex_state = 493}, + [2290] = {.lex_state = 485}, + [2291] = {.lex_state = 539}, + [2292] = {.lex_state = 878, .external_lex_state = 3}, + [2293] = {.lex_state = 545}, + [2294] = {.lex_state = 878, .external_lex_state = 3}, + [2295] = {.lex_state = 721}, + [2296] = {.lex_state = 461}, + [2297] = {.lex_state = 554}, + [2298] = {.lex_state = 461}, + [2299] = {.lex_state = 572, .external_lex_state = 3}, + [2300] = {.lex_state = 453}, + [2301] = {.lex_state = 495}, + [2302] = {.lex_state = 635, .external_lex_state = 3}, + [2303] = {.lex_state = 553}, + [2304] = {.lex_state = 632}, + [2305] = {.lex_state = 541}, + [2306] = {.lex_state = 633}, + [2307] = {.lex_state = 634}, + [2308] = {.lex_state = 635, .external_lex_state = 3}, + [2309] = {.lex_state = 635, .external_lex_state = 3}, + [2310] = {.lex_state = 495, .external_lex_state = 3}, + [2311] = {.lex_state = 635, .external_lex_state = 3}, + [2312] = {.lex_state = 485}, + [2313] = {.lex_state = 721, .external_lex_state = 3}, + [2314] = {.lex_state = 461}, + [2315] = {.lex_state = 721, .external_lex_state = 3}, + [2316] = {.lex_state = 538}, + [2317] = {.lex_state = 461}, + [2318] = {.lex_state = 461}, + [2319] = {.lex_state = 485}, + [2320] = {.lex_state = 493}, + [2321] = {.lex_state = 485}, + [2322] = {.lex_state = 539}, + [2323] = {.lex_state = 721, .external_lex_state = 3}, + [2324] = {.lex_state = 721, .external_lex_state = 3}, + [2325] = {.lex_state = 495, .external_lex_state = 3}, + [2326] = {.lex_state = 274}, + [2327] = {.lex_state = 495, .external_lex_state = 3}, + [2328] = {.lex_state = 274}, + [2329] = {.lex_state = 543}, + [2330] = {.lex_state = 453}, + [2331] = {.lex_state = 568}, + [2332] = {.lex_state = 585}, + [2333] = {.lex_state = 582}, + [2334] = {.lex_state = 461}, + [2335] = {.lex_state = 538}, + [2336] = {.lex_state = 493}, + [2337] = {.lex_state = 485}, + [2338] = {.lex_state = 539}, + [2339] = {.lex_state = 572, .external_lex_state = 3}, + [2340] = {.lex_state = 541}, + [2341] = {.lex_state = 461}, + [2342] = {.lex_state = 461}, + [2343] = {.lex_state = 538}, + [2344] = {.lex_state = 493}, + [2345] = {.lex_state = 539}, + [2346] = {.lex_state = 461}, + [2347] = {.lex_state = 545, .external_lex_state = 3}, + [2348] = {.lex_state = 545, .external_lex_state = 3}, + [2349] = {.lex_state = 461}, + [2350] = {.lex_state = 538}, + [2351] = {.lex_state = 461}, + [2352] = {.lex_state = 485}, + [2353] = {.lex_state = 461}, + [2354] = {.lex_state = 493}, + [2355] = {.lex_state = 485}, + [2356] = {.lex_state = 539}, + [2357] = {.lex_state = 545, .external_lex_state = 3}, + [2358] = {.lex_state = 545}, + [2359] = {.lex_state = 545, .external_lex_state = 3}, + [2360] = {.lex_state = 656}, + [2361] = {.lex_state = 644}, + [2362] = {.lex_state = 495}, + [2363] = {.lex_state = 585}, + [2364] = {.lex_state = 461}, + [2365] = {.lex_state = 554}, + [2366] = {.lex_state = 461}, + [2367] = {.lex_state = 495, .external_lex_state = 3}, + [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 643}, + [2370] = {.lex_state = 461}, + [2371] = {.lex_state = 644}, + [2372] = {.lex_state = 585}, + [2373] = {.lex_state = 553}, + [2374] = {.lex_state = 553}, + [2375] = {.lex_state = 553}, + [2376] = {.lex_state = 553}, + [2377] = {.lex_state = 741}, + [2378] = {.lex_state = 495}, + [2379] = {.lex_state = 485}, + [2380] = {.lex_state = 656}, + [2381] = {.lex_state = 640}, + [2382] = {.lex_state = 461}, + [2383] = {.lex_state = 745}, + [2384] = {.lex_state = 453}, + [2385] = {.lex_state = 485}, + [2386] = {.lex_state = 568}, + [2387] = {.lex_state = 582}, + [2388] = {.lex_state = 543}, + [2389] = {.lex_state = 453}, + [2390] = {.lex_state = 585}, + [2391] = {.lex_state = 745}, + [2392] = {.lex_state = 541}, + [2393] = {.lex_state = 747}, + [2394] = {.lex_state = 553}, + [2395] = {.lex_state = 495, .external_lex_state = 3}, + [2396] = {.lex_state = 274, .external_lex_state = 4}, + [2397] = {.lex_state = 461}, + [2398] = {.lex_state = 495, .external_lex_state = 3}, + [2399] = {.lex_state = 643}, + [2400] = {.lex_state = 541}, + [2401] = {.lex_state = 543}, + [2402] = {.lex_state = 643}, + [2403] = {.lex_state = 495}, + [2404] = {.lex_state = 495}, + [2405] = {.lex_state = 553}, + [2406] = {.lex_state = 453}, + [2407] = {.lex_state = 561}, + [2408] = {.lex_state = 561}, + [2409] = {.lex_state = 461}, + [2410] = {.lex_state = 568}, + [2411] = {.lex_state = 461}, + [2412] = {.lex_state = 656}, + [2413] = {.lex_state = 644}, + [2414] = {.lex_state = 495}, + [2415] = {.lex_state = 585}, + [2416] = {.lex_state = 461}, + [2417] = {.lex_state = 568}, + [2418] = {.lex_state = 561}, + [2419] = {.lex_state = 461}, + [2420] = {.lex_state = 634, .external_lex_state = 4}, + [2421] = {.lex_state = 656}, + [2422] = {.lex_state = 749}, + [2423] = {.lex_state = 553}, + [2424] = {.lex_state = 495, .external_lex_state = 3}, + [2425] = {.lex_state = 274, .external_lex_state = 4}, + [2426] = {.lex_state = 461}, + [2427] = {.lex_state = 495, .external_lex_state = 3}, + [2428] = {.lex_state = 461}, + [2429] = {.lex_state = 598}, + [2430] = {.lex_state = 543}, + [2431] = {.lex_state = 485}, + [2432] = {.lex_state = 879}, + [2433] = {.lex_state = 881}, + [2434] = {.lex_state = 879}, + [2435] = {.lex_state = 881}, + [2436] = {.lex_state = 461}, + [2437] = {.lex_state = 495}, + [2438] = {.lex_state = 495}, + [2439] = {.lex_state = 553}, + [2440] = {.lex_state = 485}, + [2441] = {.lex_state = 461}, + [2442] = {.lex_state = 461}, + [2443] = {.lex_state = 461}, + [2444] = {.lex_state = 461}, + [2445] = {.lex_state = 653}, + [2446] = {.lex_state = 653}, + [2447] = {.lex_state = 541}, + [2448] = {.lex_state = 543}, + [2449] = {.lex_state = 653}, + [2450] = {.lex_state = 461}, + [2451] = {.lex_state = 561}, + [2452] = {.lex_state = 495, .external_lex_state = 3}, + [2453] = {.lex_state = 561}, + [2454] = {.lex_state = 556}, + [2455] = {.lex_state = 495}, + [2456] = {.lex_state = 541}, + [2457] = {.lex_state = 655}, + [2458] = {.lex_state = 461}, + [2459] = {.lex_state = 644}, + [2460] = {.lex_state = 585}, + [2461] = {.lex_state = 553}, + [2462] = {.lex_state = 553}, + [2463] = {.lex_state = 553}, + [2464] = {.lex_state = 553}, + [2465] = {.lex_state = 753}, + [2466] = {.lex_state = 495}, + [2467] = {.lex_state = 485}, + [2468] = {.lex_state = 656}, + [2469] = {.lex_state = 640}, + [2470] = {.lex_state = 461}, + [2471] = {.lex_state = 755}, + [2472] = {.lex_state = 453}, + [2473] = {.lex_state = 485}, + [2474] = {.lex_state = 568}, + [2475] = {.lex_state = 582}, + [2476] = {.lex_state = 543}, + [2477] = {.lex_state = 453}, + [2478] = {.lex_state = 585}, + [2479] = {.lex_state = 755}, + [2480] = {.lex_state = 541}, + [2481] = {.lex_state = 755}, + [2482] = {.lex_state = 553}, + [2483] = {.lex_state = 495, .external_lex_state = 3}, + [2484] = {.lex_state = 274, .external_lex_state = 4}, + [2485] = {.lex_state = 461}, + [2486] = {.lex_state = 495, .external_lex_state = 3}, + [2487] = {.lex_state = 655}, + [2488] = {.lex_state = 541}, + [2489] = {.lex_state = 543}, + [2490] = {.lex_state = 655}, + [2491] = {.lex_state = 495}, + [2492] = {.lex_state = 495}, + [2493] = {.lex_state = 553}, + [2494] = {.lex_state = 585}, + [2495] = {.lex_state = 461}, + [2496] = {.lex_state = 461}, + [2497] = {.lex_state = 759}, + [2498] = {.lex_state = 553}, + [2499] = {.lex_state = 495, .external_lex_state = 3}, + [2500] = {.lex_state = 274, .external_lex_state = 4}, + [2501] = {.lex_state = 461}, + [2502] = {.lex_state = 495, .external_lex_state = 3}, + [2503] = {.lex_state = 495}, + [2504] = {.lex_state = 495}, + [2505] = {.lex_state = 553}, + [2506] = {.lex_state = 541}, + [2507] = {.lex_state = 658}, + [2508] = {.lex_state = 658}, + [2509] = {.lex_state = 541}, + [2510] = {.lex_state = 543}, + [2511] = {.lex_state = 658}, + [2512] = {.lex_state = 573, .external_lex_state = 3}, + [2513] = {.lex_state = 541}, + [2514] = {.lex_state = 883, .external_lex_state = 3}, + [2515] = {.lex_state = 461}, + [2516] = {.lex_state = 453}, + [2517] = {.lex_state = 883, .external_lex_state = 3}, + [2518] = {.lex_state = 535}, + [2519] = {.lex_state = 560}, + [2520] = {.lex_state = 485}, + [2521] = {.lex_state = 274, .external_lex_state = 2}, + [2522] = {.lex_state = 485}, + [2523] = {.lex_state = 461}, + [2524] = {.lex_state = 493}, + [2525] = {.lex_state = 461}, + [2526] = {.lex_state = 485}, + [2527] = {.lex_state = 539}, + [2528] = {.lex_state = 541}, + [2529] = {.lex_state = 883, .external_lex_state = 3}, + [2530] = {.lex_state = 572}, + [2531] = {.lex_state = 495}, + [2532] = {.lex_state = 883, .external_lex_state = 3}, + [2533] = {.lex_state = 495}, + [2534] = {.lex_state = 553}, + [2535] = {.lex_state = 461}, + [2536] = {.lex_state = 659, .external_lex_state = 3}, + [2537] = {.lex_state = 659, .external_lex_state = 3}, + [2538] = {.lex_state = 541}, + [2539] = {.lex_state = 543}, + [2540] = {.lex_state = 659, .external_lex_state = 3}, + [2541] = {.lex_state = 461}, + [2542] = {.lex_state = 495, .external_lex_state = 3}, + [2543] = {.lex_state = 575, .external_lex_state = 3}, + [2544] = {.lex_state = 884, .external_lex_state = 3}, + [2545] = {.lex_state = 461}, + [2546] = {.lex_state = 453}, + [2547] = {.lex_state = 884, .external_lex_state = 3}, + [2548] = {.lex_state = 535}, + [2549] = {.lex_state = 560}, + [2550] = {.lex_state = 485}, + [2551] = {.lex_state = 274, .external_lex_state = 2}, + [2552] = {.lex_state = 485}, + [2553] = {.lex_state = 461}, + [2554] = {.lex_state = 493}, + [2555] = {.lex_state = 461}, + [2556] = {.lex_state = 485}, + [2557] = {.lex_state = 539}, + [2558] = {.lex_state = 541}, + [2559] = {.lex_state = 884, .external_lex_state = 3}, + [2560] = {.lex_state = 572}, + [2561] = {.lex_state = 495}, + [2562] = {.lex_state = 884, .external_lex_state = 3}, + [2563] = {.lex_state = 495}, + [2564] = {.lex_state = 553}, + [2565] = {.lex_state = 541}, + [2566] = {.lex_state = 461}, + [2567] = {.lex_state = 495, .external_lex_state = 3}, + [2568] = {.lex_state = 461}, + [2569] = {.lex_state = 453}, + [2570] = {.lex_state = 761, .external_lex_state = 3}, + [2571] = {.lex_state = 688, .external_lex_state = 3}, + [2572] = {.lex_state = 688, .external_lex_state = 3}, + [2573] = {.lex_state = 763, .external_lex_state = 3}, + [2574] = {.lex_state = 543}, + [2575] = {.lex_state = 495}, + [2576] = {.lex_state = 763, .external_lex_state = 3}, + [2577] = {.lex_state = 453}, + [2578] = {.lex_state = 485}, + [2579] = {.lex_state = 763, .external_lex_state = 3}, + [2580] = {.lex_state = 763, .external_lex_state = 3}, + [2581] = {.lex_state = 568}, + [2582] = {.lex_state = 543}, + [2583] = {.lex_state = 453}, + [2584] = {.lex_state = 582}, + [2585] = {.lex_state = 585}, + [2586] = {.lex_state = 763, .external_lex_state = 3}, + [2587] = {.lex_state = 541}, + [2588] = {.lex_state = 763, .external_lex_state = 3}, + [2589] = {.lex_state = 688, .external_lex_state = 3}, + [2590] = {.lex_state = 461}, + [2591] = {.lex_state = 663, .external_lex_state = 3}, + [2592] = {.lex_state = 461}, + [2593] = {.lex_state = 656}, + [2594] = {.lex_state = 644}, + [2595] = {.lex_state = 495}, + [2596] = {.lex_state = 585}, + [2597] = {.lex_state = 461}, + [2598] = {.lex_state = 663, .external_lex_state = 3}, + [2599] = {.lex_state = 461}, + [2600] = {.lex_state = 656}, + [2601] = {.lex_state = 543}, + [2602] = {.lex_state = 765, .external_lex_state = 3}, + [2603] = {.lex_state = 453}, + [2604] = {.lex_state = 485}, + [2605] = {.lex_state = 543}, + [2606] = {.lex_state = 453}, + [2607] = {.lex_state = 568}, + [2608] = {.lex_state = 585}, + [2609] = {.lex_state = 582}, + [2610] = {.lex_state = 461}, + [2611] = {.lex_state = 538}, + [2612] = {.lex_state = 493}, + [2613] = {.lex_state = 485}, + [2614] = {.lex_state = 539}, + [2615] = {.lex_state = 765, .external_lex_state = 3}, + [2616] = {.lex_state = 541}, + [2617] = {.lex_state = 461}, + [2618] = {.lex_state = 538}, + [2619] = {.lex_state = 493}, + [2620] = {.lex_state = 539}, + [2621] = {.lex_state = 461}, + [2622] = {.lex_state = 461}, + [2623] = {.lex_state = 763, .external_lex_state = 3}, + [2624] = {.lex_state = 688, .external_lex_state = 3}, + [2625] = {.lex_state = 666, .external_lex_state = 3}, + [2626] = {.lex_state = 666, .external_lex_state = 3}, + [2627] = {.lex_state = 541}, + [2628] = {.lex_state = 543}, + [2629] = {.lex_state = 666, .external_lex_state = 3}, + [2630] = {.lex_state = 766, .external_lex_state = 3}, + [2631] = {.lex_state = 453}, + [2632] = {.lex_state = 495}, + [2633] = {.lex_state = 885, .external_lex_state = 3}, + [2634] = {.lex_state = 553}, + [2635] = {.lex_state = 632}, + [2636] = {.lex_state = 541}, + [2637] = {.lex_state = 633}, + [2638] = {.lex_state = 634}, + [2639] = {.lex_state = 885, .external_lex_state = 3}, + [2640] = {.lex_state = 885, .external_lex_state = 3}, + [2641] = {.lex_state = 495, .external_lex_state = 3}, + [2642] = {.lex_state = 885, .external_lex_state = 3}, + [2643] = {.lex_state = 485}, + [2644] = {.lex_state = 887, .external_lex_state = 3}, + [2645] = {.lex_state = 461}, + [2646] = {.lex_state = 887, .external_lex_state = 3}, + [2647] = {.lex_state = 538}, + [2648] = {.lex_state = 461}, + [2649] = {.lex_state = 461}, + [2650] = {.lex_state = 485}, + [2651] = {.lex_state = 493}, + [2652] = {.lex_state = 485}, + [2653] = {.lex_state = 539}, + [2654] = {.lex_state = 887, .external_lex_state = 3}, + [2655] = {.lex_state = 887, .external_lex_state = 3}, + [2656] = {.lex_state = 495, .external_lex_state = 3}, + [2657] = {.lex_state = 274}, + [2658] = {.lex_state = 495, .external_lex_state = 3}, + [2659] = {.lex_state = 274}, + [2660] = {.lex_state = 543}, + [2661] = {.lex_state = 453}, + [2662] = {.lex_state = 568}, + [2663] = {.lex_state = 585}, + [2664] = {.lex_state = 582}, + [2665] = {.lex_state = 461}, + [2666] = {.lex_state = 538}, + [2667] = {.lex_state = 493}, + [2668] = {.lex_state = 485}, + [2669] = {.lex_state = 539}, + [2670] = {.lex_state = 766, .external_lex_state = 3}, + [2671] = {.lex_state = 541}, + [2672] = {.lex_state = 461}, + [2673] = {.lex_state = 461}, + [2674] = {.lex_state = 538}, + [2675] = {.lex_state = 493}, + [2676] = {.lex_state = 539}, + [2677] = {.lex_state = 461}, + [2678] = {.lex_state = 889, .external_lex_state = 3}, + [2679] = {.lex_state = 889, .external_lex_state = 3}, + [2680] = {.lex_state = 461}, + [2681] = {.lex_state = 538}, + [2682] = {.lex_state = 461}, + [2683] = {.lex_state = 485}, + [2684] = {.lex_state = 461}, + [2685] = {.lex_state = 493}, + [2686] = {.lex_state = 485}, + [2687] = {.lex_state = 539}, + [2688] = {.lex_state = 889, .external_lex_state = 3}, + [2689] = {.lex_state = 545}, + [2690] = {.lex_state = 889, .external_lex_state = 3}, + [2691] = {.lex_state = 495}, + [2692] = {.lex_state = 890, .external_lex_state = 3}, + [2693] = {.lex_state = 553}, + [2694] = {.lex_state = 632}, + [2695] = {.lex_state = 541}, + [2696] = {.lex_state = 633}, + [2697] = {.lex_state = 634}, + [2698] = {.lex_state = 890, .external_lex_state = 3}, + [2699] = {.lex_state = 890, .external_lex_state = 3}, + [2700] = {.lex_state = 495, .external_lex_state = 3}, + [2701] = {.lex_state = 890, .external_lex_state = 3}, + [2702] = {.lex_state = 767, .external_lex_state = 3}, + [2703] = {.lex_state = 453}, + [2704] = {.lex_state = 485}, + [2705] = {.lex_state = 568}, + [2706] = {.lex_state = 892, .external_lex_state = 3}, + [2707] = {.lex_state = 461}, + [2708] = {.lex_state = 892, .external_lex_state = 3}, + [2709] = {.lex_state = 538}, + [2710] = {.lex_state = 461}, + [2711] = {.lex_state = 461}, + [2712] = {.lex_state = 485}, + [2713] = {.lex_state = 493}, + [2714] = {.lex_state = 485}, + [2715] = {.lex_state = 539}, + [2716] = {.lex_state = 892, .external_lex_state = 3}, + [2717] = {.lex_state = 892, .external_lex_state = 3}, + [2718] = {.lex_state = 495, .external_lex_state = 3}, + [2719] = {.lex_state = 274}, + [2720] = {.lex_state = 495, .external_lex_state = 3}, + [2721] = {.lex_state = 274}, + [2722] = {.lex_state = 543}, + [2723] = {.lex_state = 453}, + [2724] = {.lex_state = 582}, + [2725] = {.lex_state = 585}, + [2726] = {.lex_state = 767, .external_lex_state = 3}, + [2727] = {.lex_state = 541}, + [2728] = {.lex_state = 461}, + [2729] = {.lex_state = 768, .external_lex_state = 3}, + [2730] = {.lex_state = 453}, + [2731] = {.lex_state = 495}, + [2732] = {.lex_state = 894, .external_lex_state = 3}, + [2733] = {.lex_state = 553}, + [2734] = {.lex_state = 632}, + [2735] = {.lex_state = 541}, + [2736] = {.lex_state = 633}, + [2737] = {.lex_state = 634}, + [2738] = {.lex_state = 894, .external_lex_state = 3}, + [2739] = {.lex_state = 894, .external_lex_state = 3}, + [2740] = {.lex_state = 495, .external_lex_state = 3}, + [2741] = {.lex_state = 894, .external_lex_state = 3}, + [2742] = {.lex_state = 485}, + [2743] = {.lex_state = 896, .external_lex_state = 3}, + [2744] = {.lex_state = 461}, + [2745] = {.lex_state = 896, .external_lex_state = 3}, + [2746] = {.lex_state = 538}, + [2747] = {.lex_state = 461}, + [2748] = {.lex_state = 461}, + [2749] = {.lex_state = 485}, + [2750] = {.lex_state = 493}, + [2751] = {.lex_state = 485}, + [2752] = {.lex_state = 539}, + [2753] = {.lex_state = 896, .external_lex_state = 3}, + [2754] = {.lex_state = 896, .external_lex_state = 3}, + [2755] = {.lex_state = 495, .external_lex_state = 3}, + [2756] = {.lex_state = 274}, + [2757] = {.lex_state = 495, .external_lex_state = 3}, + [2758] = {.lex_state = 274}, + [2759] = {.lex_state = 543}, + [2760] = {.lex_state = 453}, + [2761] = {.lex_state = 568}, + [2762] = {.lex_state = 585}, + [2763] = {.lex_state = 582}, + [2764] = {.lex_state = 461}, + [2765] = {.lex_state = 538}, + [2766] = {.lex_state = 493}, + [2767] = {.lex_state = 485}, + [2768] = {.lex_state = 539}, + [2769] = {.lex_state = 768, .external_lex_state = 3}, + [2770] = {.lex_state = 541}, + [2771] = {.lex_state = 461}, + [2772] = {.lex_state = 461}, + [2773] = {.lex_state = 538}, + [2774] = {.lex_state = 493}, + [2775] = {.lex_state = 539}, + [2776] = {.lex_state = 461}, + [2777] = {.lex_state = 898, .external_lex_state = 3}, + [2778] = {.lex_state = 898, .external_lex_state = 3}, + [2779] = {.lex_state = 461}, + [2780] = {.lex_state = 538}, + [2781] = {.lex_state = 461}, + [2782] = {.lex_state = 485}, + [2783] = {.lex_state = 461}, + [2784] = {.lex_state = 493}, + [2785] = {.lex_state = 485}, + [2786] = {.lex_state = 539}, + [2787] = {.lex_state = 898, .external_lex_state = 3}, + [2788] = {.lex_state = 545}, + [2789] = {.lex_state = 898, .external_lex_state = 3}, + [2790] = {.lex_state = 495}, + [2791] = {.lex_state = 899, .external_lex_state = 3}, + [2792] = {.lex_state = 553}, + [2793] = {.lex_state = 632}, + [2794] = {.lex_state = 541}, + [2795] = {.lex_state = 633}, + [2796] = {.lex_state = 634}, + [2797] = {.lex_state = 899, .external_lex_state = 3}, + [2798] = {.lex_state = 899, .external_lex_state = 3}, + [2799] = {.lex_state = 495, .external_lex_state = 3}, + [2800] = {.lex_state = 899, .external_lex_state = 3}, + [2801] = {.lex_state = 769, .external_lex_state = 3}, + [2802] = {.lex_state = 453}, + [2803] = {.lex_state = 485}, + [2804] = {.lex_state = 568}, + [2805] = {.lex_state = 901, .external_lex_state = 3}, + [2806] = {.lex_state = 461}, + [2807] = {.lex_state = 901, .external_lex_state = 3}, + [2808] = {.lex_state = 538}, + [2809] = {.lex_state = 461}, + [2810] = {.lex_state = 461}, + [2811] = {.lex_state = 485}, + [2812] = {.lex_state = 493}, + [2813] = {.lex_state = 485}, + [2814] = {.lex_state = 539}, + [2815] = {.lex_state = 901, .external_lex_state = 3}, + [2816] = {.lex_state = 901, .external_lex_state = 3}, + [2817] = {.lex_state = 495, .external_lex_state = 3}, + [2818] = {.lex_state = 274}, + [2819] = {.lex_state = 495, .external_lex_state = 3}, + [2820] = {.lex_state = 274}, + [2821] = {.lex_state = 543}, + [2822] = {.lex_state = 453}, + [2823] = {.lex_state = 582}, + [2824] = {.lex_state = 585}, + [2825] = {.lex_state = 769, .external_lex_state = 3}, + [2826] = {.lex_state = 541}, + [2827] = {.lex_state = 461}, + [2828] = {.lex_state = 770, .external_lex_state = 3}, + [2829] = {.lex_state = 453}, + [2830] = {.lex_state = 495}, + [2831] = {.lex_state = 903, .external_lex_state = 3}, + [2832] = {.lex_state = 553}, + [2833] = {.lex_state = 632}, + [2834] = {.lex_state = 541}, + [2835] = {.lex_state = 633}, + [2836] = {.lex_state = 634}, + [2837] = {.lex_state = 903, .external_lex_state = 3}, + [2838] = {.lex_state = 903, .external_lex_state = 3}, + [2839] = {.lex_state = 495, .external_lex_state = 3}, + [2840] = {.lex_state = 903, .external_lex_state = 3}, + [2841] = {.lex_state = 485}, + [2842] = {.lex_state = 905, .external_lex_state = 3}, + [2843] = {.lex_state = 461}, + [2844] = {.lex_state = 905, .external_lex_state = 3}, + [2845] = {.lex_state = 538}, + [2846] = {.lex_state = 461}, + [2847] = {.lex_state = 461}, + [2848] = {.lex_state = 485}, + [2849] = {.lex_state = 493}, + [2850] = {.lex_state = 485}, + [2851] = {.lex_state = 539}, + [2852] = {.lex_state = 905, .external_lex_state = 3}, + [2853] = {.lex_state = 905, .external_lex_state = 3}, + [2854] = {.lex_state = 495, .external_lex_state = 3}, + [2855] = {.lex_state = 274}, + [2856] = {.lex_state = 495, .external_lex_state = 3}, + [2857] = {.lex_state = 274}, + [2858] = {.lex_state = 543}, + [2859] = {.lex_state = 453}, + [2860] = {.lex_state = 568}, + [2861] = {.lex_state = 585}, + [2862] = {.lex_state = 582}, + [2863] = {.lex_state = 461}, + [2864] = {.lex_state = 538}, + [2865] = {.lex_state = 493}, + [2866] = {.lex_state = 485}, + [2867] = {.lex_state = 539}, + [2868] = {.lex_state = 770, .external_lex_state = 3}, + [2869] = {.lex_state = 541}, + [2870] = {.lex_state = 461}, + [2871] = {.lex_state = 461}, + [2872] = {.lex_state = 538}, + [2873] = {.lex_state = 493}, + [2874] = {.lex_state = 539}, + [2875] = {.lex_state = 461}, + [2876] = {.lex_state = 907, .external_lex_state = 3}, + [2877] = {.lex_state = 907, .external_lex_state = 3}, + [2878] = {.lex_state = 461}, + [2879] = {.lex_state = 538}, + [2880] = {.lex_state = 461}, + [2881] = {.lex_state = 485}, + [2882] = {.lex_state = 461}, + [2883] = {.lex_state = 493}, + [2884] = {.lex_state = 485}, + [2885] = {.lex_state = 539}, + [2886] = {.lex_state = 907, .external_lex_state = 3}, + [2887] = {.lex_state = 545}, + [2888] = {.lex_state = 907, .external_lex_state = 3}, + [2889] = {.lex_state = 578}, + [2890] = {.lex_state = 541}, + [2891] = {.lex_state = 578}, + [2892] = {.lex_state = 543}, + [2893] = {.lex_state = 543}, + [2894] = {.lex_state = 543}, + [2895] = {.lex_state = 771}, + [2896] = {.lex_state = 453}, + [2897] = {.lex_state = 485}, + [2898] = {.lex_state = 568}, + [2899] = {.lex_state = 848}, + [2900] = {.lex_state = 543}, + [2901] = {.lex_state = 453}, + [2902] = {.lex_state = 848}, + [2903] = {.lex_state = 582}, + [2904] = {.lex_state = 585}, + [2905] = {.lex_state = 771}, + [2906] = {.lex_state = 541}, + [2907] = {.lex_state = 775}, + [2908] = {.lex_state = 669}, + [2909] = {.lex_state = 775}, + [2910] = {.lex_state = 777, .external_lex_state = 3}, + [2911] = {.lex_state = 453}, + [2912] = {.lex_state = 485}, + [2913] = {.lex_state = 543}, + [2914] = {.lex_state = 453}, + [2915] = {.lex_state = 568}, + [2916] = {.lex_state = 585}, + [2917] = {.lex_state = 582}, + [2918] = {.lex_state = 461}, + [2919] = {.lex_state = 538}, + [2920] = {.lex_state = 493}, + [2921] = {.lex_state = 485}, + [2922] = {.lex_state = 539}, + [2923] = {.lex_state = 777, .external_lex_state = 3}, + [2924] = {.lex_state = 541}, + [2925] = {.lex_state = 495, .external_lex_state = 5}, + [2926] = {.lex_state = 461}, + [2927] = {.lex_state = 538}, + [2928] = {.lex_state = 493}, + [2929] = {.lex_state = 539}, + [2930] = {.lex_state = 461}, + [2931] = {.lex_state = 461}, + [2932] = {.lex_state = 578}, + [2933] = {.lex_state = 461}, + [2934] = {.lex_state = 656}, + [2935] = {.lex_state = 644}, + [2936] = {.lex_state = 495}, + [2937] = {.lex_state = 585}, + [2938] = {.lex_state = 461}, + [2939] = {.lex_state = 578}, + [2940] = {.lex_state = 465, .external_lex_state = 3}, + [2941] = {.lex_state = 543}, + [2942] = {.lex_state = 543}, + [2943] = {.lex_state = 461}, + [2944] = {.lex_state = 0, .external_lex_state = 3}, + [2945] = {.lex_state = 0, .external_lex_state = 3}, + [2946] = {.lex_state = 0, .external_lex_state = 2}, + [2947] = {.lex_state = 453}, + [2948] = {.lex_state = 495, .external_lex_state = 3}, + [2949] = {.lex_state = 0, .external_lex_state = 3}, + [2950] = {.lex_state = 779, .external_lex_state = 4}, + [2951] = {.lex_state = 274, .external_lex_state = 4}, + [2952] = {.lex_state = 495, .external_lex_state = 3}, + [2953] = {.lex_state = 495, .external_lex_state = 3}, + [2954] = {.lex_state = 461}, + [2955] = {.lex_state = 671}, + [2956] = {.lex_state = 461}, + [2957] = {.lex_state = 656}, + [2958] = {.lex_state = 644}, + [2959] = {.lex_state = 495}, + [2960] = {.lex_state = 585}, + [2961] = {.lex_state = 461}, + [2962] = {.lex_state = 671}, + [2963] = {.lex_state = 461}, + [2964] = {.lex_state = 656}, + [2965] = {.lex_state = 673}, + [2966] = {.lex_state = 673}, + [2967] = {.lex_state = 541}, + [2968] = {.lex_state = 543}, + [2969] = {.lex_state = 673}, + [2970] = {.lex_state = 461}, + [2971] = {.lex_state = 495, .external_lex_state = 3}, + [2972] = {.lex_state = 580}, + [2973] = {.lex_state = 541}, + [2974] = {.lex_state = 675}, + [2975] = {.lex_state = 675}, + [2976] = {.lex_state = 541}, + [2977] = {.lex_state = 543}, + [2978] = {.lex_state = 675}, + [2979] = {.lex_state = 461}, + [2980] = {.lex_state = 676}, + [2981] = {.lex_state = 461}, + [2982] = {.lex_state = 656}, + [2983] = {.lex_state = 644}, + [2984] = {.lex_state = 495}, + [2985] = {.lex_state = 585}, + [2986] = {.lex_state = 461}, + [2987] = {.lex_state = 676}, + [2988] = {.lex_state = 461}, + [2989] = {.lex_state = 656}, + [2990] = {.lex_state = 678}, + [2991] = {.lex_state = 678}, + [2992] = {.lex_state = 541}, + [2993] = {.lex_state = 543}, + [2994] = {.lex_state = 678}, + [2995] = {.lex_state = 461}, + [2996] = {.lex_state = 495, .external_lex_state = 3}, + [2997] = {.lex_state = 584}, + [2998] = {.lex_state = 541}, + [2999] = {.lex_state = 680}, + [3000] = {.lex_state = 680}, + [3001] = {.lex_state = 541}, + [3002] = {.lex_state = 543}, + [3003] = {.lex_state = 680}, + [3004] = {.lex_state = 495}, + [3005] = {.lex_state = 554}, + [3006] = {.lex_state = 681}, + [3007] = {.lex_state = 495}, + [3008] = {.lex_state = 681}, + [3009] = {.lex_state = 681}, + [3010] = {.lex_state = 453, .external_lex_state = 3}, + [3011] = {.lex_state = 838}, + [3012] = {.lex_state = 684}, + [3013] = {.lex_state = 453}, + [3014] = {.lex_state = 461}, + [3015] = {.lex_state = 840}, + [3016] = {.lex_state = 840}, + [3017] = {.lex_state = 842}, + [3018] = {.lex_state = 453}, + [3019] = {.lex_state = 840}, + [3020] = {.lex_state = 842}, + [3021] = {.lex_state = 0, .external_lex_state = 3}, + [3022] = {.lex_state = 461}, + [3023] = {.lex_state = 644}, + [3024] = {.lex_state = 585}, + [3025] = {.lex_state = 553}, + [3026] = {.lex_state = 553}, + [3027] = {.lex_state = 553}, + [3028] = {.lex_state = 553}, + [3029] = {.lex_state = 844, .external_lex_state = 3}, + [3030] = {.lex_state = 495}, + [3031] = {.lex_state = 485}, + [3032] = {.lex_state = 656}, + [3033] = {.lex_state = 640}, + [3034] = {.lex_state = 461}, + [3035] = {.lex_state = 686, .external_lex_state = 3}, + [3036] = {.lex_state = 846, .external_lex_state = 3}, + [3037] = {.lex_state = 453}, + [3038] = {.lex_state = 485}, + [3039] = {.lex_state = 568}, + [3040] = {.lex_state = 582}, + [3041] = {.lex_state = 543}, + [3042] = {.lex_state = 453}, + [3043] = {.lex_state = 585}, + [3044] = {.lex_state = 846, .external_lex_state = 3}, + [3045] = {.lex_state = 541}, + [3046] = {.lex_state = 846, .external_lex_state = 3}, + [3047] = {.lex_state = 553}, + [3048] = {.lex_state = 495, .external_lex_state = 3}, + [3049] = {.lex_state = 274, .external_lex_state = 4}, + [3050] = {.lex_state = 461}, + [3051] = {.lex_state = 495, .external_lex_state = 3}, + [3052] = {.lex_state = 686, .external_lex_state = 3}, + [3053] = {.lex_state = 541}, + [3054] = {.lex_state = 543}, + [3055] = {.lex_state = 686, .external_lex_state = 3}, + [3056] = {.lex_state = 0, .external_lex_state = 3}, + [3057] = {.lex_state = 688, .external_lex_state = 3}, + [3058] = {.lex_state = 688, .external_lex_state = 3}, + [3059] = {.lex_state = 688, .external_lex_state = 3}, + [3060] = {.lex_state = 543}, + [3061] = {.lex_state = 554}, + [3062] = {.lex_state = 669, .external_lex_state = 3}, + [3063] = {.lex_state = 453}, + [3064] = {.lex_state = 688, .external_lex_state = 3}, + [3065] = {.lex_state = 453}, + [3066] = {.lex_state = 485}, + [3067] = {.lex_state = 669, .external_lex_state = 3}, + [3068] = {.lex_state = 541}, + [3069] = {.lex_state = 543}, + [3070] = {.lex_state = 453}, + [3071] = {.lex_state = 485}, + [3072] = {.lex_state = 485}, + [3073] = {.lex_state = 669, .external_lex_state = 3}, + [3074] = {.lex_state = 715}, + [3075] = {.lex_state = 715}, + [3076] = {.lex_state = 541}, + [3077] = {.lex_state = 543}, + [3078] = {.lex_state = 715}, + [3079] = {.lex_state = 553}, + [3080] = {.lex_state = 461}, + [3081] = {.lex_state = 553}, + [3082] = {.lex_state = 538}, + [3083] = {.lex_state = 461}, + [3084] = {.lex_state = 461}, + [3085] = {.lex_state = 485}, + [3086] = {.lex_state = 493}, + [3087] = {.lex_state = 485}, + [3088] = {.lex_state = 539}, + [3089] = {.lex_state = 553}, + [3090] = {.lex_state = 453}, + [3091] = {.lex_state = 716}, + [3092] = {.lex_state = 716}, + [3093] = {.lex_state = 541}, + [3094] = {.lex_state = 543}, + [3095] = {.lex_state = 716}, + [3096] = {.lex_state = 585}, + [3097] = {.lex_state = 461}, + [3098] = {.lex_state = 627, .external_lex_state = 3}, + [3099] = {.lex_state = 461}, + [3100] = {.lex_state = 461}, + [3101] = {.lex_state = 461}, + [3102] = {.lex_state = 461}, + [3103] = {.lex_state = 461}, + [3104] = {.lex_state = 745}, + [3105] = {.lex_state = 553}, + [3106] = {.lex_state = 495, .external_lex_state = 3}, + [3107] = {.lex_state = 274, .external_lex_state = 4}, + [3108] = {.lex_state = 461}, + [3109] = {.lex_state = 495, .external_lex_state = 3}, + [3110] = {.lex_state = 485}, + [3111] = {.lex_state = 572}, + [3112] = {.lex_state = 495}, + [3113] = {.lex_state = 495}, + [3114] = {.lex_state = 553}, + [3115] = {.lex_state = 485}, + [3116] = {.lex_state = 461}, + [3117] = {.lex_state = 644}, + [3118] = {.lex_state = 585}, + [3119] = {.lex_state = 553}, + [3120] = {.lex_state = 553}, + [3121] = {.lex_state = 553}, + [3122] = {.lex_state = 553}, + [3123] = {.lex_state = 850}, + [3124] = {.lex_state = 495}, + [3125] = {.lex_state = 485}, + [3126] = {.lex_state = 656}, + [3127] = {.lex_state = 640}, + [3128] = {.lex_state = 461}, + [3129] = {.lex_state = 718}, + [3130] = {.lex_state = 717}, + [3131] = {.lex_state = 495}, + [3132] = {.lex_state = 908}, + [3133] = {.lex_state = 553}, + [3134] = {.lex_state = 632}, + [3135] = {.lex_state = 541}, + [3136] = {.lex_state = 633}, + [3137] = {.lex_state = 634}, + [3138] = {.lex_state = 908}, + [3139] = {.lex_state = 908}, + [3140] = {.lex_state = 656}, + [3141] = {.lex_state = 908}, + [3142] = {.lex_state = 485}, + [3143] = {.lex_state = 731}, + [3144] = {.lex_state = 656}, + [3145] = {.lex_state = 274}, + [3146] = {.lex_state = 495, .external_lex_state = 3}, + [3147] = {.lex_state = 274}, + [3148] = {.lex_state = 485}, + [3149] = {.lex_state = 461}, + [3150] = {.lex_state = 461}, + [3151] = {.lex_state = 485}, + [3152] = {.lex_state = 545}, + [3153] = {.lex_state = 759}, + [3154] = {.lex_state = 553}, + [3155] = {.lex_state = 495, .external_lex_state = 3}, + [3156] = {.lex_state = 274, .external_lex_state = 4}, + [3157] = {.lex_state = 461}, + [3158] = {.lex_state = 495, .external_lex_state = 3}, + [3159] = {.lex_state = 717}, + [3160] = {.lex_state = 541}, + [3161] = {.lex_state = 543}, + [3162] = {.lex_state = 717}, + [3163] = {.lex_state = 485}, + [3164] = {.lex_state = 572}, + [3165] = {.lex_state = 495}, + [3166] = {.lex_state = 495}, + [3167] = {.lex_state = 553}, + [3168] = {.lex_state = 495}, + [3169] = {.lex_state = 908}, + [3170] = {.lex_state = 651}, + [3171] = {.lex_state = 718}, + [3172] = {.lex_state = 453}, + [3173] = {.lex_state = 485}, + [3174] = {.lex_state = 568}, + [3175] = {.lex_state = 485}, + [3176] = {.lex_state = 727}, + [3177] = {.lex_state = 651}, + [3178] = {.lex_state = 274}, + [3179] = {.lex_state = 495, .external_lex_state = 3}, + [3180] = {.lex_state = 274}, + [3181] = {.lex_state = 543}, + [3182] = {.lex_state = 453}, + [3183] = {.lex_state = 582}, + [3184] = {.lex_state = 585}, + [3185] = {.lex_state = 543}, + [3186] = {.lex_state = 718}, + [3187] = {.lex_state = 541}, + [3188] = {.lex_state = 461}, + [3189] = {.lex_state = 461}, + [3190] = {.lex_state = 485}, + [3191] = {.lex_state = 485}, + [3192] = {.lex_state = 718}, + [3193] = {.lex_state = 718}, + [3194] = {.lex_state = 543}, + [3195] = {.lex_state = 543}, + [3196] = {.lex_state = 541}, + [3197] = {.lex_state = 718, .external_lex_state = 3}, + [3198] = {.lex_state = 453}, + [3199] = {.lex_state = 485}, + [3200] = {.lex_state = 568}, + [3201] = {.lex_state = 0, .external_lex_state = 3}, + [3202] = {.lex_state = 543}, + [3203] = {.lex_state = 453}, + [3204] = {.lex_state = 585}, + [3205] = {.lex_state = 582}, + [3206] = {.lex_state = 718, .external_lex_state = 3}, + [3207] = {.lex_state = 541}, + [3208] = {.lex_state = 461}, + [3209] = {.lex_state = 718}, + [3210] = {.lex_state = 0, .external_lex_state = 3}, + [3211] = {.lex_state = 495, .external_lex_state = 3}, + [3212] = {.lex_state = 634, .external_lex_state = 4}, + [3213] = {.lex_state = 634, .external_lex_state = 4}, + [3214] = {.lex_state = 721}, + [3215] = {.lex_state = 721}, + [3216] = {.lex_state = 541}, + [3217] = {.lex_state = 543}, + [3218] = {.lex_state = 721}, + [3219] = {.lex_state = 461}, + [3220] = {.lex_state = 495, .external_lex_state = 3}, + [3221] = {.lex_state = 572}, + [3222] = {.lex_state = 541}, + [3223] = {.lex_state = 545}, + [3224] = {.lex_state = 545}, + [3225] = {.lex_state = 541}, + [3226] = {.lex_state = 543}, + [3227] = {.lex_state = 545}, + [3228] = {.lex_state = 461}, + [3229] = {.lex_state = 495, .external_lex_state = 3}, + [3230] = {.lex_state = 777}, + [3231] = {.lex_state = 453}, + [3232] = {.lex_state = 495}, + [3233] = {.lex_state = 844}, + [3234] = {.lex_state = 553}, + [3235] = {.lex_state = 632}, + [3236] = {.lex_state = 541}, + [3237] = {.lex_state = 633}, + [3238] = {.lex_state = 634}, + [3239] = {.lex_state = 844}, + [3240] = {.lex_state = 844}, + [3241] = {.lex_state = 495}, + [3242] = {.lex_state = 844}, + [3243] = {.lex_state = 485}, + [3244] = {.lex_state = 846}, + [3245] = {.lex_state = 461}, + [3246] = {.lex_state = 846}, + [3247] = {.lex_state = 538}, + [3248] = {.lex_state = 461}, + [3249] = {.lex_state = 461}, + [3250] = {.lex_state = 485}, + [3251] = {.lex_state = 493}, + [3252] = {.lex_state = 485}, + [3253] = {.lex_state = 539}, + [3254] = {.lex_state = 846}, + [3255] = {.lex_state = 846}, + [3256] = {.lex_state = 495}, + [3257] = {.lex_state = 274}, + [3258] = {.lex_state = 495, .external_lex_state = 3}, + [3259] = {.lex_state = 274}, + [3260] = {.lex_state = 543}, + [3261] = {.lex_state = 453}, + [3262] = {.lex_state = 568}, + [3263] = {.lex_state = 585}, + [3264] = {.lex_state = 582}, + [3265] = {.lex_state = 461}, + [3266] = {.lex_state = 538}, + [3267] = {.lex_state = 493}, + [3268] = {.lex_state = 485}, + [3269] = {.lex_state = 539}, + [3270] = {.lex_state = 777}, + [3271] = {.lex_state = 541}, + [3272] = {.lex_state = 461}, + [3273] = {.lex_state = 495, .external_lex_state = 5}, + [3274] = {.lex_state = 461}, + [3275] = {.lex_state = 538}, + [3276] = {.lex_state = 493}, + [3277] = {.lex_state = 539}, + [3278] = {.lex_state = 461}, + [3279] = {.lex_state = 686}, + [3280] = {.lex_state = 686}, + [3281] = {.lex_state = 461}, + [3282] = {.lex_state = 538}, + [3283] = {.lex_state = 461}, + [3284] = {.lex_state = 485}, + [3285] = {.lex_state = 461}, + [3286] = {.lex_state = 493}, + [3287] = {.lex_state = 485}, + [3288] = {.lex_state = 539}, + [3289] = {.lex_state = 686}, + [3290] = {.lex_state = 545}, + [3291] = {.lex_state = 686}, + [3292] = {.lex_state = 495}, + [3293] = {.lex_state = 495, .external_lex_state = 3}, + [3294] = {.lex_state = 461}, + [3295] = {.lex_state = 495, .external_lex_state = 3}, + [3296] = {.lex_state = 453}, + [3297] = {.lex_state = 585}, + [3298] = {.lex_state = 461}, + [3299] = {.lex_state = 635}, + [3300] = {.lex_state = 461}, + [3301] = {.lex_state = 461}, + [3302] = {.lex_state = 461}, + [3303] = {.lex_state = 485}, + [3304] = {.lex_state = 541}, + [3305] = {.lex_state = 733, .external_lex_state = 3}, + [3306] = {.lex_state = 733, .external_lex_state = 3}, + [3307] = {.lex_state = 541}, + [3308] = {.lex_state = 543}, + [3309] = {.lex_state = 733, .external_lex_state = 3}, + [3310] = {.lex_state = 495, .external_lex_state = 3}, + [3311] = {.lex_state = 495, .external_lex_state = 3}, + [3312] = {.lex_state = 461}, + [3313] = {.lex_state = 637}, + [3314] = {.lex_state = 461}, + [3315] = {.lex_state = 461}, + [3316] = {.lex_state = 493}, + [3317] = {.lex_state = 688, .external_lex_state = 3}, + [3318] = {.lex_state = 688, .external_lex_state = 3}, + [3319] = {.lex_state = 656}, + [3320] = {.lex_state = 644}, + [3321] = {.lex_state = 495}, + [3322] = {.lex_state = 585}, + [3323] = {.lex_state = 461}, + [3324] = {.lex_state = 637}, + [3325] = {.lex_state = 461}, + [3326] = {.lex_state = 495, .external_lex_state = 3}, + [3327] = {.lex_state = 461}, + [3328] = {.lex_state = 535}, + [3329] = {.lex_state = 461}, + [3330] = {.lex_state = 656}, + [3331] = {.lex_state = 644}, + [3332] = {.lex_state = 495}, + [3333] = {.lex_state = 585}, + [3334] = {.lex_state = 461}, + [3335] = {.lex_state = 535}, + [3336] = {.lex_state = 461}, + [3337] = {.lex_state = 639, .external_lex_state = 3}, + [3338] = {.lex_state = 541}, + [3339] = {.lex_state = 734, .external_lex_state = 3}, + [3340] = {.lex_state = 461}, + [3341] = {.lex_state = 644}, + [3342] = {.lex_state = 585}, + [3343] = {.lex_state = 553}, + [3344] = {.lex_state = 553}, + [3345] = {.lex_state = 553}, + [3346] = {.lex_state = 553}, + [3347] = {.lex_state = 856, .external_lex_state = 3}, + [3348] = {.lex_state = 495}, + [3349] = {.lex_state = 485}, + [3350] = {.lex_state = 656}, + [3351] = {.lex_state = 640}, + [3352] = {.lex_state = 461}, + [3353] = {.lex_state = 858, .external_lex_state = 3}, + [3354] = {.lex_state = 453}, + [3355] = {.lex_state = 485}, + [3356] = {.lex_state = 568}, + [3357] = {.lex_state = 582}, + [3358] = {.lex_state = 543}, + [3359] = {.lex_state = 453}, + [3360] = {.lex_state = 585}, + [3361] = {.lex_state = 858, .external_lex_state = 3}, + [3362] = {.lex_state = 541}, + [3363] = {.lex_state = 858, .external_lex_state = 3}, + [3364] = {.lex_state = 553}, + [3365] = {.lex_state = 495, .external_lex_state = 3}, + [3366] = {.lex_state = 274, .external_lex_state = 4}, + [3367] = {.lex_state = 461}, + [3368] = {.lex_state = 495, .external_lex_state = 3}, + [3369] = {.lex_state = 734, .external_lex_state = 3}, + [3370] = {.lex_state = 541}, + [3371] = {.lex_state = 543}, + [3372] = {.lex_state = 734, .external_lex_state = 3}, + [3373] = {.lex_state = 860, .external_lex_state = 3}, + [3374] = {.lex_state = 453}, + [3375] = {.lex_state = 485}, + [3376] = {.lex_state = 568}, + [3377] = {.lex_state = 543}, + [3378] = {.lex_state = 453}, + [3379] = {.lex_state = 582}, + [3380] = {.lex_state = 585}, + [3381] = {.lex_state = 860, .external_lex_state = 3}, + [3382] = {.lex_state = 541}, + [3383] = {.lex_state = 495, .external_lex_state = 3}, + [3384] = {.lex_state = 461}, + [3385] = {.lex_state = 644}, + [3386] = {.lex_state = 585}, + [3387] = {.lex_state = 553}, + [3388] = {.lex_state = 553}, + [3389] = {.lex_state = 553}, + [3390] = {.lex_state = 553}, + [3391] = {.lex_state = 861, .external_lex_state = 3}, + [3392] = {.lex_state = 495}, + [3393] = {.lex_state = 485}, + [3394] = {.lex_state = 656}, + [3395] = {.lex_state = 640}, + [3396] = {.lex_state = 461}, + [3397] = {.lex_state = 735, .external_lex_state = 3}, + [3398] = {.lex_state = 863, .external_lex_state = 3}, + [3399] = {.lex_state = 453}, + [3400] = {.lex_state = 485}, + [3401] = {.lex_state = 568}, + [3402] = {.lex_state = 582}, + [3403] = {.lex_state = 543}, + [3404] = {.lex_state = 453}, + [3405] = {.lex_state = 585}, + [3406] = {.lex_state = 863, .external_lex_state = 3}, + [3407] = {.lex_state = 541}, + [3408] = {.lex_state = 863, .external_lex_state = 3}, + [3409] = {.lex_state = 553}, + [3410] = {.lex_state = 495, .external_lex_state = 3}, + [3411] = {.lex_state = 274, .external_lex_state = 4}, + [3412] = {.lex_state = 461}, + [3413] = {.lex_state = 495, .external_lex_state = 3}, + [3414] = {.lex_state = 735, .external_lex_state = 3}, + [3415] = {.lex_state = 541}, + [3416] = {.lex_state = 543}, + [3417] = {.lex_state = 735, .external_lex_state = 3}, + [3418] = {.lex_state = 910, .external_lex_state = 3}, + [3419] = {.lex_state = 461}, + [3420] = {.lex_state = 910, .external_lex_state = 3}, + [3421] = {.lex_state = 560}, + [3422] = {.lex_state = 485}, + [3423] = {.lex_state = 461}, + [3424] = {.lex_state = 493}, + [3425] = {.lex_state = 461}, + [3426] = {.lex_state = 485}, + [3427] = {.lex_state = 539}, + [3428] = {.lex_state = 910, .external_lex_state = 3}, + [3429] = {.lex_state = 572}, + [3430] = {.lex_state = 495}, + [3431] = {.lex_state = 910, .external_lex_state = 3}, + [3432] = {.lex_state = 495}, + [3433] = {.lex_state = 736, .external_lex_state = 3}, + [3434] = {.lex_state = 461}, + [3435] = {.lex_state = 644}, + [3436] = {.lex_state = 585}, + [3437] = {.lex_state = 553}, + [3438] = {.lex_state = 553}, + [3439] = {.lex_state = 553}, + [3440] = {.lex_state = 553}, + [3441] = {.lex_state = 865, .external_lex_state = 3}, + [3442] = {.lex_state = 495}, + [3443] = {.lex_state = 485}, + [3444] = {.lex_state = 656}, + [3445] = {.lex_state = 640}, + [3446] = {.lex_state = 461}, + [3447] = {.lex_state = 867, .external_lex_state = 3}, + [3448] = {.lex_state = 453}, + [3449] = {.lex_state = 485}, + [3450] = {.lex_state = 568}, + [3451] = {.lex_state = 582}, + [3452] = {.lex_state = 543}, + [3453] = {.lex_state = 453}, + [3454] = {.lex_state = 585}, + [3455] = {.lex_state = 867, .external_lex_state = 3}, + [3456] = {.lex_state = 541}, + [3457] = {.lex_state = 867, .external_lex_state = 3}, + [3458] = {.lex_state = 553}, + [3459] = {.lex_state = 495, .external_lex_state = 3}, + [3460] = {.lex_state = 274, .external_lex_state = 4}, + [3461] = {.lex_state = 461}, + [3462] = {.lex_state = 495, .external_lex_state = 3}, + [3463] = {.lex_state = 736, .external_lex_state = 3}, + [3464] = {.lex_state = 541}, + [3465] = {.lex_state = 543}, + [3466] = {.lex_state = 736, .external_lex_state = 3}, + [3467] = {.lex_state = 869, .external_lex_state = 3}, + [3468] = {.lex_state = 453}, + [3469] = {.lex_state = 485}, + [3470] = {.lex_state = 568}, + [3471] = {.lex_state = 543}, + [3472] = {.lex_state = 453}, + [3473] = {.lex_state = 582}, + [3474] = {.lex_state = 585}, + [3475] = {.lex_state = 869, .external_lex_state = 3}, + [3476] = {.lex_state = 541}, + [3477] = {.lex_state = 461}, + [3478] = {.lex_state = 644}, + [3479] = {.lex_state = 585}, + [3480] = {.lex_state = 553}, + [3481] = {.lex_state = 553}, + [3482] = {.lex_state = 553}, + [3483] = {.lex_state = 553}, + [3484] = {.lex_state = 870, .external_lex_state = 3}, + [3485] = {.lex_state = 495}, + [3486] = {.lex_state = 485}, + [3487] = {.lex_state = 656}, + [3488] = {.lex_state = 640}, + [3489] = {.lex_state = 461}, + [3490] = {.lex_state = 737, .external_lex_state = 3}, + [3491] = {.lex_state = 872, .external_lex_state = 3}, + [3492] = {.lex_state = 453}, + [3493] = {.lex_state = 485}, + [3494] = {.lex_state = 568}, + [3495] = {.lex_state = 582}, + [3496] = {.lex_state = 543}, + [3497] = {.lex_state = 453}, + [3498] = {.lex_state = 585}, + [3499] = {.lex_state = 872, .external_lex_state = 3}, + [3500] = {.lex_state = 541}, + [3501] = {.lex_state = 872, .external_lex_state = 3}, + [3502] = {.lex_state = 553}, + [3503] = {.lex_state = 495, .external_lex_state = 3}, + [3504] = {.lex_state = 274, .external_lex_state = 4}, + [3505] = {.lex_state = 461}, + [3506] = {.lex_state = 495, .external_lex_state = 3}, + [3507] = {.lex_state = 737, .external_lex_state = 3}, + [3508] = {.lex_state = 541}, + [3509] = {.lex_state = 543}, + [3510] = {.lex_state = 737, .external_lex_state = 3}, + [3511] = {.lex_state = 911, .external_lex_state = 3}, + [3512] = {.lex_state = 461}, + [3513] = {.lex_state = 911, .external_lex_state = 3}, + [3514] = {.lex_state = 560}, + [3515] = {.lex_state = 485}, + [3516] = {.lex_state = 461}, + [3517] = {.lex_state = 493}, + [3518] = {.lex_state = 461}, + [3519] = {.lex_state = 485}, + [3520] = {.lex_state = 539}, + [3521] = {.lex_state = 911, .external_lex_state = 3}, + [3522] = {.lex_state = 572}, + [3523] = {.lex_state = 495}, + [3524] = {.lex_state = 911, .external_lex_state = 3}, + [3525] = {.lex_state = 495}, + [3526] = {.lex_state = 738, .external_lex_state = 3}, + [3527] = {.lex_state = 461}, + [3528] = {.lex_state = 644}, + [3529] = {.lex_state = 585}, + [3530] = {.lex_state = 553}, + [3531] = {.lex_state = 553}, + [3532] = {.lex_state = 553}, + [3533] = {.lex_state = 553}, + [3534] = {.lex_state = 874, .external_lex_state = 3}, + [3535] = {.lex_state = 495}, + [3536] = {.lex_state = 485}, + [3537] = {.lex_state = 656}, + [3538] = {.lex_state = 640}, + [3539] = {.lex_state = 461}, + [3540] = {.lex_state = 876, .external_lex_state = 3}, + [3541] = {.lex_state = 453}, + [3542] = {.lex_state = 485}, + [3543] = {.lex_state = 568}, + [3544] = {.lex_state = 582}, + [3545] = {.lex_state = 543}, + [3546] = {.lex_state = 453}, + [3547] = {.lex_state = 585}, + [3548] = {.lex_state = 876, .external_lex_state = 3}, + [3549] = {.lex_state = 541}, + [3550] = {.lex_state = 876, .external_lex_state = 3}, + [3551] = {.lex_state = 553}, + [3552] = {.lex_state = 495, .external_lex_state = 3}, + [3553] = {.lex_state = 274, .external_lex_state = 4}, + [3554] = {.lex_state = 461}, + [3555] = {.lex_state = 495, .external_lex_state = 3}, + [3556] = {.lex_state = 738, .external_lex_state = 3}, + [3557] = {.lex_state = 541}, + [3558] = {.lex_state = 543}, + [3559] = {.lex_state = 738, .external_lex_state = 3}, + [3560] = {.lex_state = 878, .external_lex_state = 3}, + [3561] = {.lex_state = 453}, + [3562] = {.lex_state = 485}, + [3563] = {.lex_state = 568}, + [3564] = {.lex_state = 543}, + [3565] = {.lex_state = 453}, + [3566] = {.lex_state = 582}, + [3567] = {.lex_state = 585}, + [3568] = {.lex_state = 878, .external_lex_state = 3}, + [3569] = {.lex_state = 541}, + [3570] = {.lex_state = 453}, + [3571] = {.lex_state = 585}, + [3572] = {.lex_state = 572, .external_lex_state = 3}, + [3573] = {.lex_state = 461}, + [3574] = {.lex_state = 644}, + [3575] = {.lex_state = 585}, + [3576] = {.lex_state = 553}, + [3577] = {.lex_state = 553}, + [3578] = {.lex_state = 553}, + [3579] = {.lex_state = 553}, + [3580] = {.lex_state = 635, .external_lex_state = 3}, + [3581] = {.lex_state = 495}, + [3582] = {.lex_state = 485}, + [3583] = {.lex_state = 656}, + [3584] = {.lex_state = 640}, + [3585] = {.lex_state = 461}, + [3586] = {.lex_state = 721, .external_lex_state = 3}, + [3587] = {.lex_state = 453}, + [3588] = {.lex_state = 485}, + [3589] = {.lex_state = 568}, + [3590] = {.lex_state = 582}, + [3591] = {.lex_state = 543}, + [3592] = {.lex_state = 453}, + [3593] = {.lex_state = 585}, + [3594] = {.lex_state = 721, .external_lex_state = 3}, + [3595] = {.lex_state = 541}, + [3596] = {.lex_state = 721, .external_lex_state = 3}, + [3597] = {.lex_state = 553}, + [3598] = {.lex_state = 495, .external_lex_state = 3}, + [3599] = {.lex_state = 274, .external_lex_state = 4}, + [3600] = {.lex_state = 461}, + [3601] = {.lex_state = 495, .external_lex_state = 3}, + [3602] = {.lex_state = 572, .external_lex_state = 3}, + [3603] = {.lex_state = 541}, + [3604] = {.lex_state = 543}, + [3605] = {.lex_state = 572, .external_lex_state = 3}, + [3606] = {.lex_state = 545, .external_lex_state = 3}, + [3607] = {.lex_state = 453}, + [3608] = {.lex_state = 485}, + [3609] = {.lex_state = 568}, + [3610] = {.lex_state = 543}, + [3611] = {.lex_state = 453}, + [3612] = {.lex_state = 582}, + [3613] = {.lex_state = 585}, + [3614] = {.lex_state = 545, .external_lex_state = 3}, + [3615] = {.lex_state = 541}, + [3616] = {.lex_state = 461}, + [3617] = {.lex_state = 554}, + [3618] = {.lex_state = 461}, + [3619] = {.lex_state = 461}, + [3620] = {.lex_state = 461}, + [3621] = {.lex_state = 485}, + [3622] = {.lex_state = 541}, + [3623] = {.lex_state = 461}, + [3624] = {.lex_state = 741}, + [3625] = {.lex_state = 461}, + [3626] = {.lex_state = 656}, + [3627] = {.lex_state = 644}, + [3628] = {.lex_state = 495}, + [3629] = {.lex_state = 585}, + [3630] = {.lex_state = 461}, + [3631] = {.lex_state = 741}, + [3632] = {.lex_state = 461}, + [3633] = {.lex_state = 656}, + [3634] = {.lex_state = 745}, + [3635] = {.lex_state = 745}, + [3636] = {.lex_state = 541}, + [3637] = {.lex_state = 543}, + [3638] = {.lex_state = 745}, + [3639] = {.lex_state = 912}, + [3640] = {.lex_state = 912}, + [3641] = {.lex_state = 461}, + [3642] = {.lex_state = 538}, + [3643] = {.lex_state = 461}, + [3644] = {.lex_state = 485}, + [3645] = {.lex_state = 461}, + [3646] = {.lex_state = 493}, + [3647] = {.lex_state = 485}, + [3648] = {.lex_state = 539}, + [3649] = {.lex_state = 912}, + [3650] = {.lex_state = 545}, + [3651] = {.lex_state = 912}, + [3652] = {.lex_state = 461}, + [3653] = {.lex_state = 495, .external_lex_state = 3}, + [3654] = {.lex_state = 643}, + [3655] = {.lex_state = 541}, + [3656] = {.lex_state = 461}, + [3657] = {.lex_state = 561}, + [3658] = {.lex_state = 453}, + [3659] = {.lex_state = 585}, + [3660] = {.lex_state = 461}, + [3661] = {.lex_state = 568}, + [3662] = {.lex_state = 461}, + [3663] = {.lex_state = 461}, + [3664] = {.lex_state = 461}, + [3665] = {.lex_state = 485}, + [3666] = {.lex_state = 541}, + [3667] = {.lex_state = 561}, + [3668] = {.lex_state = 485}, + [3669] = {.lex_state = 545}, + [3670] = {.lex_state = 461}, + [3671] = {.lex_state = 495, .external_lex_state = 3}, + [3672] = {.lex_state = 879}, + [3673] = {.lex_state = 879}, + [3674] = {.lex_state = 881}, + [3675] = {.lex_state = 881}, + [3676] = {.lex_state = 881}, + [3677] = {.lex_state = 881}, + [3678] = {.lex_state = 879}, + [3679] = {.lex_state = 461}, + [3680] = {.lex_state = 541}, + [3681] = {.lex_state = 453}, + [3682] = {.lex_state = 585}, + [3683] = {.lex_state = 485}, + [3684] = {.lex_state = 653}, + [3685] = {.lex_state = 541}, + [3686] = {.lex_state = 561}, + [3687] = {.lex_state = 461}, + [3688] = {.lex_state = 556}, + [3689] = {.lex_state = 461}, + [3690] = {.lex_state = 753}, + [3691] = {.lex_state = 461}, + [3692] = {.lex_state = 656}, + [3693] = {.lex_state = 644}, + [3694] = {.lex_state = 495}, + [3695] = {.lex_state = 585}, + [3696] = {.lex_state = 461}, + [3697] = {.lex_state = 753}, + [3698] = {.lex_state = 461}, + [3699] = {.lex_state = 656}, + [3700] = {.lex_state = 755}, + [3701] = {.lex_state = 755}, + [3702] = {.lex_state = 541}, + [3703] = {.lex_state = 543}, + [3704] = {.lex_state = 755}, + [3705] = {.lex_state = 913}, + [3706] = {.lex_state = 913}, + [3707] = {.lex_state = 461}, + [3708] = {.lex_state = 538}, + [3709] = {.lex_state = 461}, + [3710] = {.lex_state = 485}, + [3711] = {.lex_state = 461}, + [3712] = {.lex_state = 493}, + [3713] = {.lex_state = 485}, + [3714] = {.lex_state = 539}, + [3715] = {.lex_state = 913}, + [3716] = {.lex_state = 545}, + [3717] = {.lex_state = 913}, + [3718] = {.lex_state = 461}, + [3719] = {.lex_state = 495, .external_lex_state = 3}, + [3720] = {.lex_state = 655}, + [3721] = {.lex_state = 541}, + [3722] = {.lex_state = 461}, + [3723] = {.lex_state = 485}, + [3724] = {.lex_state = 545}, + [3725] = {.lex_state = 461}, + [3726] = {.lex_state = 495, .external_lex_state = 3}, + [3727] = {.lex_state = 461}, + [3728] = {.lex_state = 658}, + [3729] = {.lex_state = 541}, + [3730] = {.lex_state = 573, .external_lex_state = 3}, + [3731] = {.lex_state = 883, .external_lex_state = 3}, + [3732] = {.lex_state = 453}, + [3733] = {.lex_state = 495}, + [3734] = {.lex_state = 914, .external_lex_state = 3}, + [3735] = {.lex_state = 553}, + [3736] = {.lex_state = 632}, + [3737] = {.lex_state = 541}, + [3738] = {.lex_state = 633}, + [3739] = {.lex_state = 634}, + [3740] = {.lex_state = 914, .external_lex_state = 3}, + [3741] = {.lex_state = 914, .external_lex_state = 3}, + [3742] = {.lex_state = 495, .external_lex_state = 3}, + [3743] = {.lex_state = 914, .external_lex_state = 3}, + [3744] = {.lex_state = 485}, + [3745] = {.lex_state = 916, .external_lex_state = 3}, + [3746] = {.lex_state = 461}, + [3747] = {.lex_state = 916, .external_lex_state = 3}, + [3748] = {.lex_state = 538}, + [3749] = {.lex_state = 461}, + [3750] = {.lex_state = 461}, + [3751] = {.lex_state = 485}, + [3752] = {.lex_state = 493}, + [3753] = {.lex_state = 485}, + [3754] = {.lex_state = 539}, + [3755] = {.lex_state = 916, .external_lex_state = 3}, + [3756] = {.lex_state = 916, .external_lex_state = 3}, + [3757] = {.lex_state = 495, .external_lex_state = 3}, + [3758] = {.lex_state = 274}, + [3759] = {.lex_state = 495, .external_lex_state = 3}, + [3760] = {.lex_state = 274}, + [3761] = {.lex_state = 543}, + [3762] = {.lex_state = 453}, + [3763] = {.lex_state = 568}, + [3764] = {.lex_state = 585}, + [3765] = {.lex_state = 582}, + [3766] = {.lex_state = 461}, + [3767] = {.lex_state = 538}, + [3768] = {.lex_state = 493}, + [3769] = {.lex_state = 485}, + [3770] = {.lex_state = 539}, + [3771] = {.lex_state = 883, .external_lex_state = 3}, + [3772] = {.lex_state = 541}, + [3773] = {.lex_state = 461}, + [3774] = {.lex_state = 461}, + [3775] = {.lex_state = 538}, + [3776] = {.lex_state = 493}, + [3777] = {.lex_state = 539}, + [3778] = {.lex_state = 461}, + [3779] = {.lex_state = 918, .external_lex_state = 3}, + [3780] = {.lex_state = 918, .external_lex_state = 3}, + [3781] = {.lex_state = 461}, + [3782] = {.lex_state = 538}, + [3783] = {.lex_state = 461}, + [3784] = {.lex_state = 485}, + [3785] = {.lex_state = 461}, + [3786] = {.lex_state = 493}, + [3787] = {.lex_state = 485}, + [3788] = {.lex_state = 539}, + [3789] = {.lex_state = 918, .external_lex_state = 3}, + [3790] = {.lex_state = 545}, + [3791] = {.lex_state = 918, .external_lex_state = 3}, + [3792] = {.lex_state = 659, .external_lex_state = 3}, + [3793] = {.lex_state = 541}, + [3794] = {.lex_state = 461}, + [3795] = {.lex_state = 884, .external_lex_state = 3}, + [3796] = {.lex_state = 453}, + [3797] = {.lex_state = 495}, + [3798] = {.lex_state = 919, .external_lex_state = 3}, + [3799] = {.lex_state = 553}, + [3800] = {.lex_state = 632}, + [3801] = {.lex_state = 541}, + [3802] = {.lex_state = 633}, + [3803] = {.lex_state = 634}, + [3804] = {.lex_state = 919, .external_lex_state = 3}, + [3805] = {.lex_state = 919, .external_lex_state = 3}, + [3806] = {.lex_state = 495, .external_lex_state = 3}, + [3807] = {.lex_state = 919, .external_lex_state = 3}, + [3808] = {.lex_state = 485}, + [3809] = {.lex_state = 921, .external_lex_state = 3}, + [3810] = {.lex_state = 461}, + [3811] = {.lex_state = 921, .external_lex_state = 3}, + [3812] = {.lex_state = 538}, + [3813] = {.lex_state = 461}, + [3814] = {.lex_state = 461}, + [3815] = {.lex_state = 485}, + [3816] = {.lex_state = 493}, + [3817] = {.lex_state = 485}, + [3818] = {.lex_state = 539}, + [3819] = {.lex_state = 921, .external_lex_state = 3}, + [3820] = {.lex_state = 921, .external_lex_state = 3}, + [3821] = {.lex_state = 495, .external_lex_state = 3}, + [3822] = {.lex_state = 274}, + [3823] = {.lex_state = 495, .external_lex_state = 3}, + [3824] = {.lex_state = 274}, + [3825] = {.lex_state = 543}, + [3826] = {.lex_state = 453}, + [3827] = {.lex_state = 568}, + [3828] = {.lex_state = 585}, + [3829] = {.lex_state = 582}, + [3830] = {.lex_state = 461}, + [3831] = {.lex_state = 538}, + [3832] = {.lex_state = 493}, + [3833] = {.lex_state = 485}, + [3834] = {.lex_state = 539}, + [3835] = {.lex_state = 884, .external_lex_state = 3}, + [3836] = {.lex_state = 541}, + [3837] = {.lex_state = 461}, + [3838] = {.lex_state = 461}, + [3839] = {.lex_state = 538}, + [3840] = {.lex_state = 493}, + [3841] = {.lex_state = 539}, + [3842] = {.lex_state = 461}, + [3843] = {.lex_state = 923, .external_lex_state = 3}, + [3844] = {.lex_state = 923, .external_lex_state = 3}, + [3845] = {.lex_state = 461}, + [3846] = {.lex_state = 538}, + [3847] = {.lex_state = 461}, + [3848] = {.lex_state = 485}, + [3849] = {.lex_state = 461}, + [3850] = {.lex_state = 493}, + [3851] = {.lex_state = 485}, + [3852] = {.lex_state = 539}, + [3853] = {.lex_state = 923, .external_lex_state = 3}, + [3854] = {.lex_state = 545}, + [3855] = {.lex_state = 923, .external_lex_state = 3}, + [3856] = {.lex_state = 575, .external_lex_state = 3}, + [3857] = {.lex_state = 495, .external_lex_state = 3}, + [3858] = {.lex_state = 761, .external_lex_state = 3}, + [3859] = {.lex_state = 688, .external_lex_state = 3}, + [3860] = {.lex_state = 688, .external_lex_state = 3}, + [3861] = {.lex_state = 688, .external_lex_state = 3}, + [3862] = {.lex_state = 543}, + [3863] = {.lex_state = 763, .external_lex_state = 3}, + [3864] = {.lex_state = 763, .external_lex_state = 3}, + [3865] = {.lex_state = 541}, + [3866] = {.lex_state = 543}, + [3867] = {.lex_state = 763, .external_lex_state = 3}, + [3868] = {.lex_state = 453}, + [3869] = {.lex_state = 585}, + [3870] = {.lex_state = 461}, + [3871] = {.lex_state = 663, .external_lex_state = 3}, + [3872] = {.lex_state = 461}, + [3873] = {.lex_state = 461}, + [3874] = {.lex_state = 461}, + [3875] = {.lex_state = 485}, + [3876] = {.lex_state = 541}, + [3877] = {.lex_state = 765, .external_lex_state = 3}, + [3878] = {.lex_state = 765, .external_lex_state = 3}, + [3879] = {.lex_state = 541}, + [3880] = {.lex_state = 543}, + [3881] = {.lex_state = 765, .external_lex_state = 3}, + [3882] = {.lex_state = 461}, + [3883] = {.lex_state = 493}, + [3884] = {.lex_state = 688, .external_lex_state = 3}, + [3885] = {.lex_state = 666, .external_lex_state = 3}, + [3886] = {.lex_state = 541}, + [3887] = {.lex_state = 766, .external_lex_state = 3}, + [3888] = {.lex_state = 461}, + [3889] = {.lex_state = 644}, + [3890] = {.lex_state = 585}, + [3891] = {.lex_state = 553}, + [3892] = {.lex_state = 553}, + [3893] = {.lex_state = 553}, + [3894] = {.lex_state = 553}, + [3895] = {.lex_state = 885, .external_lex_state = 3}, + [3896] = {.lex_state = 495}, + [3897] = {.lex_state = 485}, + [3898] = {.lex_state = 656}, + [3899] = {.lex_state = 640}, + [3900] = {.lex_state = 461}, + [3901] = {.lex_state = 887, .external_lex_state = 3}, + [3902] = {.lex_state = 453}, + [3903] = {.lex_state = 485}, + [3904] = {.lex_state = 568}, + [3905] = {.lex_state = 582}, + [3906] = {.lex_state = 543}, + [3907] = {.lex_state = 453}, + [3908] = {.lex_state = 585}, + [3909] = {.lex_state = 887, .external_lex_state = 3}, + [3910] = {.lex_state = 541}, + [3911] = {.lex_state = 887, .external_lex_state = 3}, + [3912] = {.lex_state = 553}, + [3913] = {.lex_state = 495, .external_lex_state = 3}, + [3914] = {.lex_state = 274, .external_lex_state = 4}, + [3915] = {.lex_state = 461}, + [3916] = {.lex_state = 495, .external_lex_state = 3}, + [3917] = {.lex_state = 766, .external_lex_state = 3}, + [3918] = {.lex_state = 541}, + [3919] = {.lex_state = 543}, + [3920] = {.lex_state = 766, .external_lex_state = 3}, + [3921] = {.lex_state = 889, .external_lex_state = 3}, + [3922] = {.lex_state = 453}, + [3923] = {.lex_state = 485}, + [3924] = {.lex_state = 568}, + [3925] = {.lex_state = 543}, + [3926] = {.lex_state = 453}, + [3927] = {.lex_state = 582}, + [3928] = {.lex_state = 585}, + [3929] = {.lex_state = 889, .external_lex_state = 3}, + [3930] = {.lex_state = 541}, + [3931] = {.lex_state = 461}, + [3932] = {.lex_state = 644}, + [3933] = {.lex_state = 585}, + [3934] = {.lex_state = 553}, + [3935] = {.lex_state = 553}, + [3936] = {.lex_state = 553}, + [3937] = {.lex_state = 553}, + [3938] = {.lex_state = 890, .external_lex_state = 3}, + [3939] = {.lex_state = 495}, + [3940] = {.lex_state = 485}, + [3941] = {.lex_state = 656}, + [3942] = {.lex_state = 640}, + [3943] = {.lex_state = 461}, + [3944] = {.lex_state = 767, .external_lex_state = 3}, + [3945] = {.lex_state = 892, .external_lex_state = 3}, + [3946] = {.lex_state = 453}, + [3947] = {.lex_state = 485}, + [3948] = {.lex_state = 568}, + [3949] = {.lex_state = 582}, + [3950] = {.lex_state = 543}, + [3951] = {.lex_state = 453}, + [3952] = {.lex_state = 585}, + [3953] = {.lex_state = 892, .external_lex_state = 3}, + [3954] = {.lex_state = 541}, + [3955] = {.lex_state = 892, .external_lex_state = 3}, + [3956] = {.lex_state = 553}, + [3957] = {.lex_state = 495, .external_lex_state = 3}, + [3958] = {.lex_state = 274, .external_lex_state = 4}, + [3959] = {.lex_state = 461}, + [3960] = {.lex_state = 495, .external_lex_state = 3}, + [3961] = {.lex_state = 767, .external_lex_state = 3}, + [3962] = {.lex_state = 541}, + [3963] = {.lex_state = 543}, + [3964] = {.lex_state = 767, .external_lex_state = 3}, + [3965] = {.lex_state = 924, .external_lex_state = 3}, + [3966] = {.lex_state = 461}, + [3967] = {.lex_state = 924, .external_lex_state = 3}, + [3968] = {.lex_state = 560}, + [3969] = {.lex_state = 485}, + [3970] = {.lex_state = 461}, + [3971] = {.lex_state = 493}, + [3972] = {.lex_state = 461}, + [3973] = {.lex_state = 485}, + [3974] = {.lex_state = 539}, + [3975] = {.lex_state = 924, .external_lex_state = 3}, + [3976] = {.lex_state = 572}, + [3977] = {.lex_state = 495}, + [3978] = {.lex_state = 924, .external_lex_state = 3}, + [3979] = {.lex_state = 495}, + [3980] = {.lex_state = 768, .external_lex_state = 3}, + [3981] = {.lex_state = 461}, + [3982] = {.lex_state = 644}, + [3983] = {.lex_state = 585}, + [3984] = {.lex_state = 553}, + [3985] = {.lex_state = 553}, + [3986] = {.lex_state = 553}, + [3987] = {.lex_state = 553}, + [3988] = {.lex_state = 894, .external_lex_state = 3}, + [3989] = {.lex_state = 495}, + [3990] = {.lex_state = 485}, + [3991] = {.lex_state = 656}, + [3992] = {.lex_state = 640}, + [3993] = {.lex_state = 461}, + [3994] = {.lex_state = 896, .external_lex_state = 3}, + [3995] = {.lex_state = 453}, + [3996] = {.lex_state = 485}, + [3997] = {.lex_state = 568}, + [3998] = {.lex_state = 582}, + [3999] = {.lex_state = 543}, + [4000] = {.lex_state = 453}, + [4001] = {.lex_state = 585}, + [4002] = {.lex_state = 896, .external_lex_state = 3}, + [4003] = {.lex_state = 541}, + [4004] = {.lex_state = 896, .external_lex_state = 3}, + [4005] = {.lex_state = 553}, + [4006] = {.lex_state = 495, .external_lex_state = 3}, + [4007] = {.lex_state = 274, .external_lex_state = 4}, + [4008] = {.lex_state = 461}, + [4009] = {.lex_state = 495, .external_lex_state = 3}, + [4010] = {.lex_state = 768, .external_lex_state = 3}, + [4011] = {.lex_state = 541}, + [4012] = {.lex_state = 543}, + [4013] = {.lex_state = 768, .external_lex_state = 3}, + [4014] = {.lex_state = 898, .external_lex_state = 3}, + [4015] = {.lex_state = 453}, + [4016] = {.lex_state = 485}, + [4017] = {.lex_state = 568}, + [4018] = {.lex_state = 543}, + [4019] = {.lex_state = 453}, + [4020] = {.lex_state = 582}, + [4021] = {.lex_state = 585}, + [4022] = {.lex_state = 898, .external_lex_state = 3}, + [4023] = {.lex_state = 541}, + [4024] = {.lex_state = 461}, + [4025] = {.lex_state = 644}, + [4026] = {.lex_state = 585}, + [4027] = {.lex_state = 553}, + [4028] = {.lex_state = 553}, + [4029] = {.lex_state = 553}, + [4030] = {.lex_state = 553}, + [4031] = {.lex_state = 899, .external_lex_state = 3}, + [4032] = {.lex_state = 495}, + [4033] = {.lex_state = 485}, + [4034] = {.lex_state = 656}, + [4035] = {.lex_state = 640}, + [4036] = {.lex_state = 461}, + [4037] = {.lex_state = 769, .external_lex_state = 3}, + [4038] = {.lex_state = 901, .external_lex_state = 3}, + [4039] = {.lex_state = 453}, + [4040] = {.lex_state = 485}, + [4041] = {.lex_state = 568}, + [4042] = {.lex_state = 582}, + [4043] = {.lex_state = 543}, + [4044] = {.lex_state = 453}, + [4045] = {.lex_state = 585}, + [4046] = {.lex_state = 901, .external_lex_state = 3}, + [4047] = {.lex_state = 541}, + [4048] = {.lex_state = 901, .external_lex_state = 3}, + [4049] = {.lex_state = 553}, + [4050] = {.lex_state = 495, .external_lex_state = 3}, + [4051] = {.lex_state = 274, .external_lex_state = 4}, + [4052] = {.lex_state = 461}, + [4053] = {.lex_state = 495, .external_lex_state = 3}, + [4054] = {.lex_state = 769, .external_lex_state = 3}, + [4055] = {.lex_state = 541}, + [4056] = {.lex_state = 543}, + [4057] = {.lex_state = 769, .external_lex_state = 3}, + [4058] = {.lex_state = 925, .external_lex_state = 3}, + [4059] = {.lex_state = 461}, + [4060] = {.lex_state = 925, .external_lex_state = 3}, + [4061] = {.lex_state = 560}, + [4062] = {.lex_state = 485}, + [4063] = {.lex_state = 461}, + [4064] = {.lex_state = 493}, + [4065] = {.lex_state = 461}, + [4066] = {.lex_state = 485}, + [4067] = {.lex_state = 539}, + [4068] = {.lex_state = 925, .external_lex_state = 3}, + [4069] = {.lex_state = 572}, + [4070] = {.lex_state = 495}, + [4071] = {.lex_state = 925, .external_lex_state = 3}, + [4072] = {.lex_state = 495}, + [4073] = {.lex_state = 770, .external_lex_state = 3}, + [4074] = {.lex_state = 461}, + [4075] = {.lex_state = 644}, + [4076] = {.lex_state = 585}, + [4077] = {.lex_state = 553}, + [4078] = {.lex_state = 553}, + [4079] = {.lex_state = 553}, + [4080] = {.lex_state = 553}, + [4081] = {.lex_state = 903, .external_lex_state = 3}, + [4082] = {.lex_state = 495}, + [4083] = {.lex_state = 485}, + [4084] = {.lex_state = 656}, + [4085] = {.lex_state = 640}, + [4086] = {.lex_state = 461}, + [4087] = {.lex_state = 905, .external_lex_state = 3}, + [4088] = {.lex_state = 453}, + [4089] = {.lex_state = 485}, + [4090] = {.lex_state = 568}, + [4091] = {.lex_state = 582}, + [4092] = {.lex_state = 543}, + [4093] = {.lex_state = 453}, + [4094] = {.lex_state = 585}, + [4095] = {.lex_state = 905, .external_lex_state = 3}, + [4096] = {.lex_state = 541}, + [4097] = {.lex_state = 905, .external_lex_state = 3}, + [4098] = {.lex_state = 553}, + [4099] = {.lex_state = 495, .external_lex_state = 3}, + [4100] = {.lex_state = 274, .external_lex_state = 4}, + [4101] = {.lex_state = 461}, + [4102] = {.lex_state = 495, .external_lex_state = 3}, + [4103] = {.lex_state = 770, .external_lex_state = 3}, + [4104] = {.lex_state = 541}, + [4105] = {.lex_state = 543}, + [4106] = {.lex_state = 770, .external_lex_state = 3}, + [4107] = {.lex_state = 907, .external_lex_state = 3}, + [4108] = {.lex_state = 453}, + [4109] = {.lex_state = 485}, + [4110] = {.lex_state = 568}, + [4111] = {.lex_state = 543}, + [4112] = {.lex_state = 453}, + [4113] = {.lex_state = 582}, + [4114] = {.lex_state = 585}, + [4115] = {.lex_state = 907, .external_lex_state = 3}, + [4116] = {.lex_state = 541}, + [4117] = {.lex_state = 578}, + [4118] = {.lex_state = 771}, + [4119] = {.lex_state = 773}, + [4120] = {.lex_state = 485}, + [4121] = {.lex_state = 771}, + [4122] = {.lex_state = 541}, + [4123] = {.lex_state = 543}, + [4124] = {.lex_state = 485}, + [4125] = {.lex_state = 771}, + [4126] = {.lex_state = 777, .external_lex_state = 3}, + [4127] = {.lex_state = 777, .external_lex_state = 3}, + [4128] = {.lex_state = 541}, + [4129] = {.lex_state = 543}, + [4130] = {.lex_state = 777, .external_lex_state = 3}, + [4131] = {.lex_state = 495, .external_lex_state = 3}, + [4132] = {.lex_state = 453}, + [4133] = {.lex_state = 585}, + [4134] = {.lex_state = 461}, + [4135] = {.lex_state = 578}, + [4136] = {.lex_state = 461}, + [4137] = {.lex_state = 461}, + [4138] = {.lex_state = 461}, + [4139] = {.lex_state = 485}, + [4140] = {.lex_state = 543}, + [4141] = {.lex_state = 543}, + [4142] = {.lex_state = 541}, + [4143] = {.lex_state = 926}, + [4144] = {.lex_state = 0, .external_lex_state = 3}, + [4145] = {.lex_state = 779, .external_lex_state = 4}, + [4146] = {.lex_state = 495, .external_lex_state = 3}, + [4147] = {.lex_state = 779, .external_lex_state = 4}, + [4148] = {.lex_state = 274, .external_lex_state = 4}, + [4149] = {.lex_state = 495, .external_lex_state = 5}, + [4150] = {.lex_state = 453}, + [4151] = {.lex_state = 585}, + [4152] = {.lex_state = 461}, + [4153] = {.lex_state = 671}, + [4154] = {.lex_state = 461}, + [4155] = {.lex_state = 461}, + [4156] = {.lex_state = 461}, + [4157] = {.lex_state = 485}, + [4158] = {.lex_state = 541}, + [4159] = {.lex_state = 673}, + [4160] = {.lex_state = 541}, + [4161] = {.lex_state = 461}, + [4162] = {.lex_state = 580}, + [4163] = {.lex_state = 675}, + [4164] = {.lex_state = 541}, + [4165] = {.lex_state = 453}, + [4166] = {.lex_state = 585}, + [4167] = {.lex_state = 461}, + [4168] = {.lex_state = 676}, + [4169] = {.lex_state = 461}, + [4170] = {.lex_state = 461}, + [4171] = {.lex_state = 461}, + [4172] = {.lex_state = 485}, + [4173] = {.lex_state = 541}, + [4174] = {.lex_state = 678}, + [4175] = {.lex_state = 541}, + [4176] = {.lex_state = 461}, + [4177] = {.lex_state = 584}, + [4178] = {.lex_state = 680}, + [4179] = {.lex_state = 541}, + [4180] = {.lex_state = 453}, + [4181] = {.lex_state = 541}, + [4182] = {.lex_state = 453}, + [4183] = {.lex_state = 453}, + [4184] = {.lex_state = 585}, + [4185] = {.lex_state = 453, .external_lex_state = 3}, + [4186] = {.lex_state = 0, .external_lex_state = 3}, + [4187] = {.lex_state = 684}, + [4188] = {.lex_state = 842}, + [4189] = {.lex_state = 453}, + [4190] = {.lex_state = 840}, + [4191] = {.lex_state = 461}, + [4192] = {.lex_state = 844, .external_lex_state = 3}, + [4193] = {.lex_state = 461}, + [4194] = {.lex_state = 656}, + [4195] = {.lex_state = 644}, + [4196] = {.lex_state = 495}, + [4197] = {.lex_state = 585}, + [4198] = {.lex_state = 461}, + [4199] = {.lex_state = 844, .external_lex_state = 3}, + [4200] = {.lex_state = 461}, + [4201] = {.lex_state = 656}, + [4202] = {.lex_state = 846, .external_lex_state = 3}, + [4203] = {.lex_state = 846, .external_lex_state = 3}, + [4204] = {.lex_state = 541}, + [4205] = {.lex_state = 543}, + [4206] = {.lex_state = 846, .external_lex_state = 3}, + [4207] = {.lex_state = 461}, + [4208] = {.lex_state = 495, .external_lex_state = 3}, + [4209] = {.lex_state = 686, .external_lex_state = 3}, + [4210] = {.lex_state = 541}, + [4211] = {.lex_state = 688, .external_lex_state = 3}, + [4212] = {.lex_state = 688, .external_lex_state = 3}, + [4213] = {.lex_state = 688, .external_lex_state = 3}, + [4214] = {.lex_state = 453}, + [4215] = {.lex_state = 453}, + [4216] = {.lex_state = 688, .external_lex_state = 3}, + [4217] = {.lex_state = 848}, + [4218] = {.lex_state = 485}, + [4219] = {.lex_state = 669, .external_lex_state = 3}, + [4220] = {.lex_state = 541}, + [4221] = {.lex_state = 485}, + [4222] = {.lex_state = 848}, + [4223] = {.lex_state = 485}, + [4224] = {.lex_state = 715}, + [4225] = {.lex_state = 541}, + [4226] = {.lex_state = 553}, + [4227] = {.lex_state = 453}, + [4228] = {.lex_state = 485}, + [4229] = {.lex_state = 568}, + [4230] = {.lex_state = 582}, + [4231] = {.lex_state = 543}, + [4232] = {.lex_state = 453}, + [4233] = {.lex_state = 585}, + [4234] = {.lex_state = 553}, + [4235] = {.lex_state = 541}, + [4236] = {.lex_state = 627, .external_lex_state = 3}, + [4237] = {.lex_state = 716}, + [4238] = {.lex_state = 541}, + [4239] = {.lex_state = 541}, + [4240] = {.lex_state = 453}, + [4241] = {.lex_state = 485}, + [4242] = {.lex_state = 585}, + [4243] = {.lex_state = 485}, + [4244] = {.lex_state = 545}, + [4245] = {.lex_state = 461}, + [4246] = {.lex_state = 495, .external_lex_state = 3}, + [4247] = {.lex_state = 485}, + [4248] = {.lex_state = 461}, + [4249] = {.lex_state = 461}, + [4250] = {.lex_state = 850}, + [4251] = {.lex_state = 461}, + [4252] = {.lex_state = 656}, + [4253] = {.lex_state = 644}, + [4254] = {.lex_state = 495}, + [4255] = {.lex_state = 585}, + [4256] = {.lex_state = 461}, + [4257] = {.lex_state = 850}, + [4258] = {.lex_state = 461}, + [4259] = {.lex_state = 656}, + [4260] = {.lex_state = 461}, + [4261] = {.lex_state = 644}, + [4262] = {.lex_state = 585}, + [4263] = {.lex_state = 553}, + [4264] = {.lex_state = 553}, + [4265] = {.lex_state = 553}, + [4266] = {.lex_state = 553}, + [4267] = {.lex_state = 908}, + [4268] = {.lex_state = 495}, + [4269] = {.lex_state = 485}, + [4270] = {.lex_state = 656}, + [4271] = {.lex_state = 640}, + [4272] = {.lex_state = 461}, + [4273] = {.lex_state = 731}, + [4274] = {.lex_state = 553}, + [4275] = {.lex_state = 495, .external_lex_state = 3}, + [4276] = {.lex_state = 274, .external_lex_state = 4}, + [4277] = {.lex_state = 461}, + [4278] = {.lex_state = 495, .external_lex_state = 3}, + [4279] = {.lex_state = 485}, + [4280] = {.lex_state = 545}, + [4281] = {.lex_state = 461}, + [4282] = {.lex_state = 495, .external_lex_state = 3}, + [4283] = {.lex_state = 717}, + [4284] = {.lex_state = 541}, + [4285] = {.lex_state = 485}, + [4286] = {.lex_state = 461}, + [4287] = {.lex_state = 461}, + [4288] = {.lex_state = 461}, + [4289] = {.lex_state = 718}, + [4290] = {.lex_state = 727}, + [4291] = {.lex_state = 553}, + [4292] = {.lex_state = 495, .external_lex_state = 3}, + [4293] = {.lex_state = 274, .external_lex_state = 4}, + [4294] = {.lex_state = 461}, + [4295] = {.lex_state = 495, .external_lex_state = 3}, + [4296] = {.lex_state = 718}, + [4297] = {.lex_state = 541}, + [4298] = {.lex_state = 543}, + [4299] = {.lex_state = 718}, + [4300] = {.lex_state = 485}, + [4301] = {.lex_state = 572}, + [4302] = {.lex_state = 495}, + [4303] = {.lex_state = 495}, + [4304] = {.lex_state = 553}, + [4305] = {.lex_state = 543}, + [4306] = {.lex_state = 718}, + [4307] = {.lex_state = 718, .external_lex_state = 3}, + [4308] = {.lex_state = 718, .external_lex_state = 3}, + [4309] = {.lex_state = 541}, + [4310] = {.lex_state = 543}, + [4311] = {.lex_state = 718, .external_lex_state = 3}, + [4312] = {.lex_state = 0, .external_lex_state = 3}, + [4313] = {.lex_state = 461}, + [4314] = {.lex_state = 721}, + [4315] = {.lex_state = 541}, + [4316] = {.lex_state = 461}, + [4317] = {.lex_state = 572}, + [4318] = {.lex_state = 545}, + [4319] = {.lex_state = 541}, + [4320] = {.lex_state = 461}, + [4321] = {.lex_state = 777}, + [4322] = {.lex_state = 461}, + [4323] = {.lex_state = 644}, + [4324] = {.lex_state = 585}, + [4325] = {.lex_state = 553}, + [4326] = {.lex_state = 553}, + [4327] = {.lex_state = 553}, + [4328] = {.lex_state = 553}, + [4329] = {.lex_state = 844}, + [4330] = {.lex_state = 495}, + [4331] = {.lex_state = 485}, + [4332] = {.lex_state = 656}, + [4333] = {.lex_state = 640}, + [4334] = {.lex_state = 461}, + [4335] = {.lex_state = 846}, + [4336] = {.lex_state = 453}, + [4337] = {.lex_state = 485}, + [4338] = {.lex_state = 568}, + [4339] = {.lex_state = 582}, + [4340] = {.lex_state = 543}, + [4341] = {.lex_state = 453}, + [4342] = {.lex_state = 585}, + [4343] = {.lex_state = 846}, + [4344] = {.lex_state = 541}, + [4345] = {.lex_state = 846}, + [4346] = {.lex_state = 553}, + [4347] = {.lex_state = 495, .external_lex_state = 3}, + [4348] = {.lex_state = 274, .external_lex_state = 4}, + [4349] = {.lex_state = 461}, + [4350] = {.lex_state = 495, .external_lex_state = 3}, + [4351] = {.lex_state = 777}, + [4352] = {.lex_state = 541}, + [4353] = {.lex_state = 543}, + [4354] = {.lex_state = 777}, + [4355] = {.lex_state = 495, .external_lex_state = 3}, + [4356] = {.lex_state = 686}, + [4357] = {.lex_state = 453}, + [4358] = {.lex_state = 485}, + [4359] = {.lex_state = 568}, + [4360] = {.lex_state = 543}, + [4361] = {.lex_state = 453}, + [4362] = {.lex_state = 582}, + [4363] = {.lex_state = 585}, + [4364] = {.lex_state = 686}, + [4365] = {.lex_state = 541}, + [4366] = {.lex_state = 495, .external_lex_state = 5}, + [4367] = {.lex_state = 461}, + [4368] = {.lex_state = 635}, + [4369] = {.lex_state = 541}, + [4370] = {.lex_state = 453}, + [4371] = {.lex_state = 485}, + [4372] = {.lex_state = 585}, + [4373] = {.lex_state = 733, .external_lex_state = 3}, + [4374] = {.lex_state = 541}, + [4375] = {.lex_state = 453}, + [4376] = {.lex_state = 585}, + [4377] = {.lex_state = 929}, + [4378] = {.lex_state = 584}, + [4379] = {.lex_state = 461}, + [4380] = {.lex_state = 637}, + [4381] = {.lex_state = 461}, + [4382] = {.lex_state = 461}, + [4383] = {.lex_state = 461}, + [4384] = {.lex_state = 485}, + [4385] = {.lex_state = 541}, + [4386] = {.lex_state = 453}, + [4387] = {.lex_state = 585}, + [4388] = {.lex_state = 461}, + [4389] = {.lex_state = 535}, + [4390] = {.lex_state = 461}, + [4391] = {.lex_state = 461}, + [4392] = {.lex_state = 461}, + [4393] = {.lex_state = 485}, + [4394] = {.lex_state = 541}, + [4395] = {.lex_state = 639, .external_lex_state = 3}, + [4396] = {.lex_state = 461}, + [4397] = {.lex_state = 856, .external_lex_state = 3}, + [4398] = {.lex_state = 461}, + [4399] = {.lex_state = 656}, + [4400] = {.lex_state = 644}, + [4401] = {.lex_state = 495}, + [4402] = {.lex_state = 585}, + [4403] = {.lex_state = 461}, + [4404] = {.lex_state = 856, .external_lex_state = 3}, + [4405] = {.lex_state = 461}, + [4406] = {.lex_state = 656}, + [4407] = {.lex_state = 858, .external_lex_state = 3}, + [4408] = {.lex_state = 858, .external_lex_state = 3}, + [4409] = {.lex_state = 541}, + [4410] = {.lex_state = 543}, + [4411] = {.lex_state = 858, .external_lex_state = 3}, + [4412] = {.lex_state = 461}, + [4413] = {.lex_state = 495, .external_lex_state = 3}, + [4414] = {.lex_state = 734, .external_lex_state = 3}, + [4415] = {.lex_state = 541}, + [4416] = {.lex_state = 860, .external_lex_state = 3}, + [4417] = {.lex_state = 860, .external_lex_state = 3}, + [4418] = {.lex_state = 541}, + [4419] = {.lex_state = 543}, + [4420] = {.lex_state = 860, .external_lex_state = 3}, + [4421] = {.lex_state = 461}, + [4422] = {.lex_state = 861, .external_lex_state = 3}, + [4423] = {.lex_state = 461}, + [4424] = {.lex_state = 656}, + [4425] = {.lex_state = 644}, + [4426] = {.lex_state = 495}, + [4427] = {.lex_state = 585}, + [4428] = {.lex_state = 461}, + [4429] = {.lex_state = 861, .external_lex_state = 3}, + [4430] = {.lex_state = 461}, + [4431] = {.lex_state = 656}, + [4432] = {.lex_state = 863, .external_lex_state = 3}, + [4433] = {.lex_state = 863, .external_lex_state = 3}, + [4434] = {.lex_state = 541}, + [4435] = {.lex_state = 543}, + [4436] = {.lex_state = 863, .external_lex_state = 3}, + [4437] = {.lex_state = 461}, + [4438] = {.lex_state = 495, .external_lex_state = 3}, + [4439] = {.lex_state = 735, .external_lex_state = 3}, + [4440] = {.lex_state = 541}, + [4441] = {.lex_state = 910, .external_lex_state = 3}, + [4442] = {.lex_state = 453}, + [4443] = {.lex_state = 485}, + [4444] = {.lex_state = 543}, + [4445] = {.lex_state = 453}, + [4446] = {.lex_state = 568}, + [4447] = {.lex_state = 585}, + [4448] = {.lex_state = 582}, + [4449] = {.lex_state = 461}, + [4450] = {.lex_state = 538}, + [4451] = {.lex_state = 493}, + [4452] = {.lex_state = 485}, + [4453] = {.lex_state = 539}, + [4454] = {.lex_state = 910, .external_lex_state = 3}, + [4455] = {.lex_state = 541}, + [4456] = {.lex_state = 461}, + [4457] = {.lex_state = 538}, + [4458] = {.lex_state = 493}, + [4459] = {.lex_state = 539}, + [4460] = {.lex_state = 461}, + [4461] = {.lex_state = 461}, + [4462] = {.lex_state = 865, .external_lex_state = 3}, + [4463] = {.lex_state = 461}, + [4464] = {.lex_state = 656}, + [4465] = {.lex_state = 644}, + [4466] = {.lex_state = 495}, + [4467] = {.lex_state = 585}, + [4468] = {.lex_state = 461}, + [4469] = {.lex_state = 865, .external_lex_state = 3}, + [4470] = {.lex_state = 461}, + [4471] = {.lex_state = 656}, + [4472] = {.lex_state = 867, .external_lex_state = 3}, + [4473] = {.lex_state = 867, .external_lex_state = 3}, + [4474] = {.lex_state = 541}, + [4475] = {.lex_state = 543}, + [4476] = {.lex_state = 867, .external_lex_state = 3}, + [4477] = {.lex_state = 461}, + [4478] = {.lex_state = 495, .external_lex_state = 3}, + [4479] = {.lex_state = 736, .external_lex_state = 3}, + [4480] = {.lex_state = 541}, + [4481] = {.lex_state = 869, .external_lex_state = 3}, + [4482] = {.lex_state = 869, .external_lex_state = 3}, + [4483] = {.lex_state = 541}, + [4484] = {.lex_state = 543}, + [4485] = {.lex_state = 869, .external_lex_state = 3}, + [4486] = {.lex_state = 461}, + [4487] = {.lex_state = 870, .external_lex_state = 3}, + [4488] = {.lex_state = 461}, + [4489] = {.lex_state = 656}, + [4490] = {.lex_state = 644}, + [4491] = {.lex_state = 495}, + [4492] = {.lex_state = 585}, + [4493] = {.lex_state = 461}, + [4494] = {.lex_state = 870, .external_lex_state = 3}, + [4495] = {.lex_state = 461}, + [4496] = {.lex_state = 656}, + [4497] = {.lex_state = 872, .external_lex_state = 3}, + [4498] = {.lex_state = 872, .external_lex_state = 3}, + [4499] = {.lex_state = 541}, + [4500] = {.lex_state = 543}, + [4501] = {.lex_state = 872, .external_lex_state = 3}, + [4502] = {.lex_state = 461}, + [4503] = {.lex_state = 495, .external_lex_state = 3}, + [4504] = {.lex_state = 737, .external_lex_state = 3}, + [4505] = {.lex_state = 541}, + [4506] = {.lex_state = 911, .external_lex_state = 3}, + [4507] = {.lex_state = 453}, + [4508] = {.lex_state = 485}, + [4509] = {.lex_state = 543}, + [4510] = {.lex_state = 453}, + [4511] = {.lex_state = 568}, + [4512] = {.lex_state = 585}, + [4513] = {.lex_state = 582}, + [4514] = {.lex_state = 461}, + [4515] = {.lex_state = 538}, + [4516] = {.lex_state = 493}, + [4517] = {.lex_state = 485}, + [4518] = {.lex_state = 539}, + [4519] = {.lex_state = 911, .external_lex_state = 3}, + [4520] = {.lex_state = 541}, + [4521] = {.lex_state = 461}, + [4522] = {.lex_state = 538}, + [4523] = {.lex_state = 493}, + [4524] = {.lex_state = 539}, + [4525] = {.lex_state = 461}, + [4526] = {.lex_state = 461}, + [4527] = {.lex_state = 874, .external_lex_state = 3}, + [4528] = {.lex_state = 461}, + [4529] = {.lex_state = 656}, + [4530] = {.lex_state = 644}, + [4531] = {.lex_state = 495}, + [4532] = {.lex_state = 585}, + [4533] = {.lex_state = 461}, + [4534] = {.lex_state = 874, .external_lex_state = 3}, + [4535] = {.lex_state = 461}, + [4536] = {.lex_state = 656}, + [4537] = {.lex_state = 876, .external_lex_state = 3}, + [4538] = {.lex_state = 876, .external_lex_state = 3}, + [4539] = {.lex_state = 541}, + [4540] = {.lex_state = 543}, + [4541] = {.lex_state = 876, .external_lex_state = 3}, + [4542] = {.lex_state = 461}, + [4543] = {.lex_state = 495, .external_lex_state = 3}, + [4544] = {.lex_state = 738, .external_lex_state = 3}, + [4545] = {.lex_state = 541}, + [4546] = {.lex_state = 878, .external_lex_state = 3}, + [4547] = {.lex_state = 878, .external_lex_state = 3}, + [4548] = {.lex_state = 541}, + [4549] = {.lex_state = 543}, + [4550] = {.lex_state = 878, .external_lex_state = 3}, + [4551] = {.lex_state = 554}, + [4552] = {.lex_state = 461}, + [4553] = {.lex_state = 635, .external_lex_state = 3}, + [4554] = {.lex_state = 461}, + [4555] = {.lex_state = 656}, + [4556] = {.lex_state = 644}, + [4557] = {.lex_state = 495}, + [4558] = {.lex_state = 585}, + [4559] = {.lex_state = 461}, + [4560] = {.lex_state = 635, .external_lex_state = 3}, + [4561] = {.lex_state = 461}, + [4562] = {.lex_state = 656}, + [4563] = {.lex_state = 721, .external_lex_state = 3}, + [4564] = {.lex_state = 721, .external_lex_state = 3}, + [4565] = {.lex_state = 541}, + [4566] = {.lex_state = 543}, + [4567] = {.lex_state = 721, .external_lex_state = 3}, + [4568] = {.lex_state = 461}, + [4569] = {.lex_state = 495, .external_lex_state = 3}, + [4570] = {.lex_state = 572, .external_lex_state = 3}, + [4571] = {.lex_state = 541}, + [4572] = {.lex_state = 545, .external_lex_state = 3}, + [4573] = {.lex_state = 545, .external_lex_state = 3}, + [4574] = {.lex_state = 541}, + [4575] = {.lex_state = 543}, + [4576] = {.lex_state = 545, .external_lex_state = 3}, + [4577] = {.lex_state = 541}, + [4578] = {.lex_state = 453}, + [4579] = {.lex_state = 485}, + [4580] = {.lex_state = 585}, + [4581] = {.lex_state = 453}, + [4582] = {.lex_state = 585}, + [4583] = {.lex_state = 461}, + [4584] = {.lex_state = 741}, + [4585] = {.lex_state = 461}, + [4586] = {.lex_state = 461}, + [4587] = {.lex_state = 461}, + [4588] = {.lex_state = 485}, + [4589] = {.lex_state = 541}, + [4590] = {.lex_state = 745}, + [4591] = {.lex_state = 541}, + [4592] = {.lex_state = 912}, + [4593] = {.lex_state = 453}, + [4594] = {.lex_state = 485}, + [4595] = {.lex_state = 568}, + [4596] = {.lex_state = 543}, + [4597] = {.lex_state = 453}, + [4598] = {.lex_state = 582}, + [4599] = {.lex_state = 585}, + [4600] = {.lex_state = 912}, + [4601] = {.lex_state = 541}, + [4602] = {.lex_state = 461}, + [4603] = {.lex_state = 643}, + [4604] = {.lex_state = 568}, + [4605] = {.lex_state = 541}, + [4606] = {.lex_state = 453}, + [4607] = {.lex_state = 485}, + [4608] = {.lex_state = 585}, + [4609] = {.lex_state = 461}, + [4610] = {.lex_state = 879}, + [4611] = {.lex_state = 879}, + [4612] = {.lex_state = 561}, + [4613] = {.lex_state = 653}, + [4614] = {.lex_state = 561}, + [4615] = {.lex_state = 453}, + [4616] = {.lex_state = 585}, + [4617] = {.lex_state = 461}, + [4618] = {.lex_state = 753}, + [4619] = {.lex_state = 461}, + [4620] = {.lex_state = 461}, + [4621] = {.lex_state = 461}, + [4622] = {.lex_state = 485}, + [4623] = {.lex_state = 541}, + [4624] = {.lex_state = 755}, + [4625] = {.lex_state = 541}, + [4626] = {.lex_state = 913}, + [4627] = {.lex_state = 453}, + [4628] = {.lex_state = 485}, + [4629] = {.lex_state = 568}, + [4630] = {.lex_state = 543}, + [4631] = {.lex_state = 453}, + [4632] = {.lex_state = 582}, + [4633] = {.lex_state = 585}, + [4634] = {.lex_state = 913}, + [4635] = {.lex_state = 541}, + [4636] = {.lex_state = 461}, + [4637] = {.lex_state = 655}, + [4638] = {.lex_state = 461}, + [4639] = {.lex_state = 658}, + [4640] = {.lex_state = 883, .external_lex_state = 3}, + [4641] = {.lex_state = 461}, + [4642] = {.lex_state = 644}, + [4643] = {.lex_state = 585}, + [4644] = {.lex_state = 553}, + [4645] = {.lex_state = 553}, + [4646] = {.lex_state = 553}, + [4647] = {.lex_state = 553}, + [4648] = {.lex_state = 914, .external_lex_state = 3}, + [4649] = {.lex_state = 495}, + [4650] = {.lex_state = 485}, + [4651] = {.lex_state = 656}, + [4652] = {.lex_state = 640}, + [4653] = {.lex_state = 461}, + [4654] = {.lex_state = 916, .external_lex_state = 3}, + [4655] = {.lex_state = 453}, + [4656] = {.lex_state = 485}, + [4657] = {.lex_state = 568}, + [4658] = {.lex_state = 582}, + [4659] = {.lex_state = 543}, + [4660] = {.lex_state = 453}, + [4661] = {.lex_state = 585}, + [4662] = {.lex_state = 916, .external_lex_state = 3}, + [4663] = {.lex_state = 541}, + [4664] = {.lex_state = 916, .external_lex_state = 3}, + [4665] = {.lex_state = 553}, + [4666] = {.lex_state = 495, .external_lex_state = 3}, + [4667] = {.lex_state = 274, .external_lex_state = 4}, + [4668] = {.lex_state = 461}, + [4669] = {.lex_state = 495, .external_lex_state = 3}, + [4670] = {.lex_state = 883, .external_lex_state = 3}, + [4671] = {.lex_state = 541}, + [4672] = {.lex_state = 543}, + [4673] = {.lex_state = 883, .external_lex_state = 3}, + [4674] = {.lex_state = 918, .external_lex_state = 3}, + [4675] = {.lex_state = 453}, + [4676] = {.lex_state = 485}, + [4677] = {.lex_state = 568}, + [4678] = {.lex_state = 543}, + [4679] = {.lex_state = 453}, + [4680] = {.lex_state = 582}, + [4681] = {.lex_state = 585}, + [4682] = {.lex_state = 918, .external_lex_state = 3}, + [4683] = {.lex_state = 541}, + [4684] = {.lex_state = 659, .external_lex_state = 3}, + [4685] = {.lex_state = 884, .external_lex_state = 3}, + [4686] = {.lex_state = 461}, + [4687] = {.lex_state = 644}, + [4688] = {.lex_state = 585}, + [4689] = {.lex_state = 553}, + [4690] = {.lex_state = 553}, + [4691] = {.lex_state = 553}, + [4692] = {.lex_state = 553}, + [4693] = {.lex_state = 919, .external_lex_state = 3}, + [4694] = {.lex_state = 495}, + [4695] = {.lex_state = 485}, + [4696] = {.lex_state = 656}, + [4697] = {.lex_state = 640}, + [4698] = {.lex_state = 461}, + [4699] = {.lex_state = 921, .external_lex_state = 3}, + [4700] = {.lex_state = 453}, + [4701] = {.lex_state = 485}, + [4702] = {.lex_state = 568}, + [4703] = {.lex_state = 582}, + [4704] = {.lex_state = 543}, + [4705] = {.lex_state = 453}, + [4706] = {.lex_state = 585}, + [4707] = {.lex_state = 921, .external_lex_state = 3}, + [4708] = {.lex_state = 541}, + [4709] = {.lex_state = 921, .external_lex_state = 3}, + [4710] = {.lex_state = 553}, + [4711] = {.lex_state = 495, .external_lex_state = 3}, + [4712] = {.lex_state = 274, .external_lex_state = 4}, + [4713] = {.lex_state = 461}, + [4714] = {.lex_state = 495, .external_lex_state = 3}, + [4715] = {.lex_state = 884, .external_lex_state = 3}, + [4716] = {.lex_state = 541}, + [4717] = {.lex_state = 543}, + [4718] = {.lex_state = 884, .external_lex_state = 3}, + [4719] = {.lex_state = 923, .external_lex_state = 3}, + [4720] = {.lex_state = 453}, + [4721] = {.lex_state = 485}, + [4722] = {.lex_state = 568}, + [4723] = {.lex_state = 543}, + [4724] = {.lex_state = 453}, + [4725] = {.lex_state = 582}, + [4726] = {.lex_state = 585}, + [4727] = {.lex_state = 923, .external_lex_state = 3}, + [4728] = {.lex_state = 541}, + [4729] = {.lex_state = 761, .external_lex_state = 3}, + [4730] = {.lex_state = 688, .external_lex_state = 3}, + [4731] = {.lex_state = 688, .external_lex_state = 3}, + [4732] = {.lex_state = 688, .external_lex_state = 3}, + [4733] = {.lex_state = 763, .external_lex_state = 3}, + [4734] = {.lex_state = 541}, + [4735] = {.lex_state = 663, .external_lex_state = 3}, + [4736] = {.lex_state = 541}, + [4737] = {.lex_state = 453}, + [4738] = {.lex_state = 485}, + [4739] = {.lex_state = 585}, + [4740] = {.lex_state = 765, .external_lex_state = 3}, + [4741] = {.lex_state = 541}, + [4742] = {.lex_state = 666, .external_lex_state = 3}, + [4743] = {.lex_state = 461}, + [4744] = {.lex_state = 885, .external_lex_state = 3}, + [4745] = {.lex_state = 461}, + [4746] = {.lex_state = 656}, + [4747] = {.lex_state = 644}, + [4748] = {.lex_state = 495}, + [4749] = {.lex_state = 585}, + [4750] = {.lex_state = 461}, + [4751] = {.lex_state = 885, .external_lex_state = 3}, + [4752] = {.lex_state = 461}, + [4753] = {.lex_state = 656}, + [4754] = {.lex_state = 887, .external_lex_state = 3}, + [4755] = {.lex_state = 887, .external_lex_state = 3}, + [4756] = {.lex_state = 541}, + [4757] = {.lex_state = 543}, + [4758] = {.lex_state = 887, .external_lex_state = 3}, + [4759] = {.lex_state = 461}, + [4760] = {.lex_state = 495, .external_lex_state = 3}, + [4761] = {.lex_state = 766, .external_lex_state = 3}, + [4762] = {.lex_state = 541}, + [4763] = {.lex_state = 889, .external_lex_state = 3}, + [4764] = {.lex_state = 889, .external_lex_state = 3}, + [4765] = {.lex_state = 541}, + [4766] = {.lex_state = 543}, + [4767] = {.lex_state = 889, .external_lex_state = 3}, + [4768] = {.lex_state = 461}, + [4769] = {.lex_state = 890, .external_lex_state = 3}, + [4770] = {.lex_state = 461}, + [4771] = {.lex_state = 656}, + [4772] = {.lex_state = 644}, + [4773] = {.lex_state = 495}, + [4774] = {.lex_state = 585}, + [4775] = {.lex_state = 461}, + [4776] = {.lex_state = 890, .external_lex_state = 3}, + [4777] = {.lex_state = 461}, + [4778] = {.lex_state = 656}, + [4779] = {.lex_state = 892, .external_lex_state = 3}, + [4780] = {.lex_state = 892, .external_lex_state = 3}, + [4781] = {.lex_state = 541}, + [4782] = {.lex_state = 543}, + [4783] = {.lex_state = 892, .external_lex_state = 3}, + [4784] = {.lex_state = 461}, + [4785] = {.lex_state = 495, .external_lex_state = 3}, + [4786] = {.lex_state = 767, .external_lex_state = 3}, + [4787] = {.lex_state = 541}, + [4788] = {.lex_state = 924, .external_lex_state = 3}, + [4789] = {.lex_state = 453}, + [4790] = {.lex_state = 485}, + [4791] = {.lex_state = 543}, + [4792] = {.lex_state = 453}, + [4793] = {.lex_state = 568}, + [4794] = {.lex_state = 585}, + [4795] = {.lex_state = 582}, + [4796] = {.lex_state = 461}, + [4797] = {.lex_state = 538}, + [4798] = {.lex_state = 493}, + [4799] = {.lex_state = 485}, + [4800] = {.lex_state = 539}, + [4801] = {.lex_state = 924, .external_lex_state = 3}, + [4802] = {.lex_state = 541}, + [4803] = {.lex_state = 461}, + [4804] = {.lex_state = 538}, + [4805] = {.lex_state = 493}, + [4806] = {.lex_state = 539}, + [4807] = {.lex_state = 461}, + [4808] = {.lex_state = 461}, + [4809] = {.lex_state = 894, .external_lex_state = 3}, + [4810] = {.lex_state = 461}, + [4811] = {.lex_state = 656}, + [4812] = {.lex_state = 644}, + [4813] = {.lex_state = 495}, + [4814] = {.lex_state = 585}, + [4815] = {.lex_state = 461}, + [4816] = {.lex_state = 894, .external_lex_state = 3}, + [4817] = {.lex_state = 461}, + [4818] = {.lex_state = 656}, + [4819] = {.lex_state = 896, .external_lex_state = 3}, + [4820] = {.lex_state = 896, .external_lex_state = 3}, + [4821] = {.lex_state = 541}, + [4822] = {.lex_state = 543}, + [4823] = {.lex_state = 896, .external_lex_state = 3}, + [4824] = {.lex_state = 461}, + [4825] = {.lex_state = 495, .external_lex_state = 3}, + [4826] = {.lex_state = 768, .external_lex_state = 3}, + [4827] = {.lex_state = 541}, + [4828] = {.lex_state = 898, .external_lex_state = 3}, + [4829] = {.lex_state = 898, .external_lex_state = 3}, + [4830] = {.lex_state = 541}, + [4831] = {.lex_state = 543}, + [4832] = {.lex_state = 898, .external_lex_state = 3}, + [4833] = {.lex_state = 461}, + [4834] = {.lex_state = 899, .external_lex_state = 3}, + [4835] = {.lex_state = 461}, + [4836] = {.lex_state = 656}, + [4837] = {.lex_state = 644}, + [4838] = {.lex_state = 495}, + [4839] = {.lex_state = 585}, + [4840] = {.lex_state = 461}, + [4841] = {.lex_state = 899, .external_lex_state = 3}, + [4842] = {.lex_state = 461}, + [4843] = {.lex_state = 656}, + [4844] = {.lex_state = 901, .external_lex_state = 3}, + [4845] = {.lex_state = 901, .external_lex_state = 3}, + [4846] = {.lex_state = 541}, + [4847] = {.lex_state = 543}, + [4848] = {.lex_state = 901, .external_lex_state = 3}, + [4849] = {.lex_state = 461}, + [4850] = {.lex_state = 495, .external_lex_state = 3}, + [4851] = {.lex_state = 769, .external_lex_state = 3}, + [4852] = {.lex_state = 541}, + [4853] = {.lex_state = 925, .external_lex_state = 3}, + [4854] = {.lex_state = 453}, + [4855] = {.lex_state = 485}, + [4856] = {.lex_state = 543}, + [4857] = {.lex_state = 453}, + [4858] = {.lex_state = 568}, + [4859] = {.lex_state = 585}, + [4860] = {.lex_state = 582}, + [4861] = {.lex_state = 461}, + [4862] = {.lex_state = 538}, + [4863] = {.lex_state = 493}, + [4864] = {.lex_state = 485}, + [4865] = {.lex_state = 539}, + [4866] = {.lex_state = 925, .external_lex_state = 3}, + [4867] = {.lex_state = 541}, + [4868] = {.lex_state = 461}, + [4869] = {.lex_state = 538}, + [4870] = {.lex_state = 493}, + [4871] = {.lex_state = 539}, + [4872] = {.lex_state = 461}, + [4873] = {.lex_state = 461}, + [4874] = {.lex_state = 903, .external_lex_state = 3}, + [4875] = {.lex_state = 461}, + [4876] = {.lex_state = 656}, + [4877] = {.lex_state = 644}, + [4878] = {.lex_state = 495}, + [4879] = {.lex_state = 585}, + [4880] = {.lex_state = 461}, + [4881] = {.lex_state = 903, .external_lex_state = 3}, + [4882] = {.lex_state = 461}, + [4883] = {.lex_state = 656}, + [4884] = {.lex_state = 905, .external_lex_state = 3}, + [4885] = {.lex_state = 905, .external_lex_state = 3}, + [4886] = {.lex_state = 541}, + [4887] = {.lex_state = 543}, + [4888] = {.lex_state = 905, .external_lex_state = 3}, + [4889] = {.lex_state = 461}, + [4890] = {.lex_state = 495, .external_lex_state = 3}, + [4891] = {.lex_state = 770, .external_lex_state = 3}, + [4892] = {.lex_state = 541}, + [4893] = {.lex_state = 907, .external_lex_state = 3}, + [4894] = {.lex_state = 907, .external_lex_state = 3}, + [4895] = {.lex_state = 541}, + [4896] = {.lex_state = 543}, + [4897] = {.lex_state = 907, .external_lex_state = 3}, + [4898] = {.lex_state = 773}, + [4899] = {.lex_state = 485}, + [4900] = {.lex_state = 771}, + [4901] = {.lex_state = 541}, + [4902] = {.lex_state = 777, .external_lex_state = 3}, + [4903] = {.lex_state = 541}, + [4904] = {.lex_state = 578}, + [4905] = {.lex_state = 541}, + [4906] = {.lex_state = 453}, + [4907] = {.lex_state = 485}, + [4908] = {.lex_state = 585}, + [4909] = {.lex_state = 453}, + [4910] = {.lex_state = 930, .external_lex_state = 4}, + [4911] = {.lex_state = 0, .external_lex_state = 2}, + [4912] = {.lex_state = 495, .external_lex_state = 3}, + [4913] = {.lex_state = 495, .external_lex_state = 3}, + [4914] = {.lex_state = 671}, + [4915] = {.lex_state = 541}, + [4916] = {.lex_state = 453}, + [4917] = {.lex_state = 485}, + [4918] = {.lex_state = 585}, + [4919] = {.lex_state = 673}, + [4920] = {.lex_state = 675}, + [4921] = {.lex_state = 676}, + [4922] = {.lex_state = 541}, + [4923] = {.lex_state = 453}, + [4924] = {.lex_state = 485}, + [4925] = {.lex_state = 585}, + [4926] = {.lex_state = 678}, + [4927] = {.lex_state = 680}, + [4928] = {.lex_state = 836}, + [4929] = {.lex_state = 554}, + [4930] = {.lex_state = 485}, + [4931] = {.lex_state = 453}, + [4932] = {.lex_state = 585}, + [4933] = {.lex_state = 461}, + [4934] = {.lex_state = 844, .external_lex_state = 3}, + [4935] = {.lex_state = 461}, + [4936] = {.lex_state = 461}, + [4937] = {.lex_state = 461}, + [4938] = {.lex_state = 485}, + [4939] = {.lex_state = 541}, + [4940] = {.lex_state = 846, .external_lex_state = 3}, + [4941] = {.lex_state = 541}, + [4942] = {.lex_state = 461}, + [4943] = {.lex_state = 686, .external_lex_state = 3}, + [4944] = {.lex_state = 688, .external_lex_state = 3}, + [4945] = {.lex_state = 453}, + [4946] = {.lex_state = 485}, + [4947] = {.lex_state = 485}, + [4948] = {.lex_state = 688, .external_lex_state = 3}, + [4949] = {.lex_state = 485}, + [4950] = {.lex_state = 669, .external_lex_state = 3}, + [4951] = {.lex_state = 485}, + [4952] = {.lex_state = 485}, + [4953] = {.lex_state = 715}, + [4954] = {.lex_state = 553}, + [4955] = {.lex_state = 553}, + [4956] = {.lex_state = 541}, + [4957] = {.lex_state = 543}, + [4958] = {.lex_state = 553}, + [4959] = {.lex_state = 716}, + [4960] = {.lex_state = 627, .external_lex_state = 3}, + [4961] = {.lex_state = 461}, + [4962] = {.lex_state = 453}, + [4963] = {.lex_state = 585}, + [4964] = {.lex_state = 461}, + [4965] = {.lex_state = 850}, + [4966] = {.lex_state = 461}, + [4967] = {.lex_state = 461}, + [4968] = {.lex_state = 461}, + [4969] = {.lex_state = 485}, + [4970] = {.lex_state = 541}, + [4971] = {.lex_state = 461}, + [4972] = {.lex_state = 908}, + [4973] = {.lex_state = 461}, + [4974] = {.lex_state = 656}, + [4975] = {.lex_state = 644}, + [4976] = {.lex_state = 495}, + [4977] = {.lex_state = 585}, + [4978] = {.lex_state = 461}, + [4979] = {.lex_state = 908}, + [4980] = {.lex_state = 461}, + [4981] = {.lex_state = 656}, + [4982] = {.lex_state = 461}, + [4983] = {.lex_state = 495, .external_lex_state = 3}, + [4984] = {.lex_state = 461}, + [4985] = {.lex_state = 717}, + [4986] = {.lex_state = 485}, + [4987] = {.lex_state = 545}, + [4988] = {.lex_state = 461}, + [4989] = {.lex_state = 495, .external_lex_state = 3}, + [4990] = {.lex_state = 718}, + [4991] = {.lex_state = 541}, + [4992] = {.lex_state = 485}, + [4993] = {.lex_state = 461}, + [4994] = {.lex_state = 718, .external_lex_state = 3}, + [4995] = {.lex_state = 541}, + [4996] = {.lex_state = 0, .external_lex_state = 3}, + [4997] = {.lex_state = 721}, + [4998] = {.lex_state = 545}, + [4999] = {.lex_state = 461}, + [5000] = {.lex_state = 844}, + [5001] = {.lex_state = 461}, + [5002] = {.lex_state = 656}, + [5003] = {.lex_state = 644}, + [5004] = {.lex_state = 495}, + [5005] = {.lex_state = 585}, + [5006] = {.lex_state = 461}, + [5007] = {.lex_state = 844}, + [5008] = {.lex_state = 461}, + [5009] = {.lex_state = 656}, + [5010] = {.lex_state = 846}, + [5011] = {.lex_state = 846}, + [5012] = {.lex_state = 541}, + [5013] = {.lex_state = 543}, + [5014] = {.lex_state = 846}, + [5015] = {.lex_state = 461}, + [5016] = {.lex_state = 495, .external_lex_state = 3}, + [5017] = {.lex_state = 777}, + [5018] = {.lex_state = 541}, + [5019] = {.lex_state = 686}, + [5020] = {.lex_state = 686}, + [5021] = {.lex_state = 541}, + [5022] = {.lex_state = 543}, + [5023] = {.lex_state = 686}, + [5024] = {.lex_state = 495, .external_lex_state = 3}, + [5025] = {.lex_state = 635}, + [5026] = {.lex_state = 733, .external_lex_state = 3}, + [5027] = {.lex_state = 637}, + [5028] = {.lex_state = 688, .external_lex_state = 3}, + [5029] = {.lex_state = 541}, + [5030] = {.lex_state = 453}, + [5031] = {.lex_state = 485}, + [5032] = {.lex_state = 585}, + [5033] = {.lex_state = 535}, + [5034] = {.lex_state = 541}, + [5035] = {.lex_state = 453}, + [5036] = {.lex_state = 485}, + [5037] = {.lex_state = 585}, + [5038] = {.lex_state = 453}, + [5039] = {.lex_state = 585}, + [5040] = {.lex_state = 461}, + [5041] = {.lex_state = 856, .external_lex_state = 3}, + [5042] = {.lex_state = 461}, + [5043] = {.lex_state = 461}, + [5044] = {.lex_state = 461}, + [5045] = {.lex_state = 485}, + [5046] = {.lex_state = 541}, + [5047] = {.lex_state = 858, .external_lex_state = 3}, + [5048] = {.lex_state = 541}, + [5049] = {.lex_state = 461}, + [5050] = {.lex_state = 734, .external_lex_state = 3}, + [5051] = {.lex_state = 860, .external_lex_state = 3}, + [5052] = {.lex_state = 541}, + [5053] = {.lex_state = 453}, + [5054] = {.lex_state = 585}, + [5055] = {.lex_state = 461}, + [5056] = {.lex_state = 861, .external_lex_state = 3}, + [5057] = {.lex_state = 461}, + [5058] = {.lex_state = 461}, + [5059] = {.lex_state = 461}, + [5060] = {.lex_state = 485}, + [5061] = {.lex_state = 541}, + [5062] = {.lex_state = 863, .external_lex_state = 3}, + [5063] = {.lex_state = 541}, + [5064] = {.lex_state = 461}, + [5065] = {.lex_state = 735, .external_lex_state = 3}, + [5066] = {.lex_state = 910, .external_lex_state = 3}, + [5067] = {.lex_state = 910, .external_lex_state = 3}, + [5068] = {.lex_state = 541}, + [5069] = {.lex_state = 543}, + [5070] = {.lex_state = 910, .external_lex_state = 3}, + [5071] = {.lex_state = 453}, + [5072] = {.lex_state = 585}, + [5073] = {.lex_state = 461}, + [5074] = {.lex_state = 865, .external_lex_state = 3}, + [5075] = {.lex_state = 461}, + [5076] = {.lex_state = 461}, + [5077] = {.lex_state = 461}, + [5078] = {.lex_state = 485}, + [5079] = {.lex_state = 541}, + [5080] = {.lex_state = 867, .external_lex_state = 3}, + [5081] = {.lex_state = 541}, + [5082] = {.lex_state = 461}, + [5083] = {.lex_state = 736, .external_lex_state = 3}, + [5084] = {.lex_state = 869, .external_lex_state = 3}, + [5085] = {.lex_state = 541}, + [5086] = {.lex_state = 453}, + [5087] = {.lex_state = 585}, + [5088] = {.lex_state = 461}, + [5089] = {.lex_state = 870, .external_lex_state = 3}, + [5090] = {.lex_state = 461}, + [5091] = {.lex_state = 461}, + [5092] = {.lex_state = 461}, + [5093] = {.lex_state = 485}, + [5094] = {.lex_state = 541}, + [5095] = {.lex_state = 872, .external_lex_state = 3}, + [5096] = {.lex_state = 541}, + [5097] = {.lex_state = 461}, + [5098] = {.lex_state = 737, .external_lex_state = 3}, + [5099] = {.lex_state = 911, .external_lex_state = 3}, + [5100] = {.lex_state = 911, .external_lex_state = 3}, + [5101] = {.lex_state = 541}, + [5102] = {.lex_state = 543}, + [5103] = {.lex_state = 911, .external_lex_state = 3}, + [5104] = {.lex_state = 453}, + [5105] = {.lex_state = 585}, + [5106] = {.lex_state = 461}, + [5107] = {.lex_state = 874, .external_lex_state = 3}, + [5108] = {.lex_state = 461}, + [5109] = {.lex_state = 461}, + [5110] = {.lex_state = 461}, + [5111] = {.lex_state = 485}, + [5112] = {.lex_state = 541}, + [5113] = {.lex_state = 876, .external_lex_state = 3}, + [5114] = {.lex_state = 541}, + [5115] = {.lex_state = 461}, + [5116] = {.lex_state = 738, .external_lex_state = 3}, + [5117] = {.lex_state = 878, .external_lex_state = 3}, + [5118] = {.lex_state = 541}, + [5119] = {.lex_state = 453}, + [5120] = {.lex_state = 585}, + [5121] = {.lex_state = 461}, + [5122] = {.lex_state = 635, .external_lex_state = 3}, + [5123] = {.lex_state = 461}, + [5124] = {.lex_state = 461}, + [5125] = {.lex_state = 461}, + [5126] = {.lex_state = 485}, + [5127] = {.lex_state = 541}, + [5128] = {.lex_state = 721, .external_lex_state = 3}, + [5129] = {.lex_state = 541}, + [5130] = {.lex_state = 461}, + [5131] = {.lex_state = 572, .external_lex_state = 3}, + [5132] = {.lex_state = 545, .external_lex_state = 3}, + [5133] = {.lex_state = 541}, + [5134] = {.lex_state = 554}, + [5135] = {.lex_state = 741}, + [5136] = {.lex_state = 541}, + [5137] = {.lex_state = 453}, + [5138] = {.lex_state = 485}, + [5139] = {.lex_state = 585}, + [5140] = {.lex_state = 745}, + [5141] = {.lex_state = 912}, + [5142] = {.lex_state = 912}, + [5143] = {.lex_state = 541}, + [5144] = {.lex_state = 543}, + [5145] = {.lex_state = 912}, + [5146] = {.lex_state = 568}, + [5147] = {.lex_state = 879}, + [5148] = {.lex_state = 753}, + [5149] = {.lex_state = 541}, + [5150] = {.lex_state = 453}, + [5151] = {.lex_state = 485}, + [5152] = {.lex_state = 585}, + [5153] = {.lex_state = 755}, + [5154] = {.lex_state = 913}, + [5155] = {.lex_state = 913}, + [5156] = {.lex_state = 541}, + [5157] = {.lex_state = 543}, + [5158] = {.lex_state = 913}, + [5159] = {.lex_state = 461}, + [5160] = {.lex_state = 914, .external_lex_state = 3}, + [5161] = {.lex_state = 461}, + [5162] = {.lex_state = 656}, + [5163] = {.lex_state = 644}, + [5164] = {.lex_state = 495}, + [5165] = {.lex_state = 585}, + [5166] = {.lex_state = 461}, + [5167] = {.lex_state = 914, .external_lex_state = 3}, + [5168] = {.lex_state = 461}, + [5169] = {.lex_state = 656}, + [5170] = {.lex_state = 916, .external_lex_state = 3}, + [5171] = {.lex_state = 916, .external_lex_state = 3}, + [5172] = {.lex_state = 541}, + [5173] = {.lex_state = 543}, + [5174] = {.lex_state = 916, .external_lex_state = 3}, + [5175] = {.lex_state = 461}, + [5176] = {.lex_state = 495, .external_lex_state = 3}, + [5177] = {.lex_state = 883, .external_lex_state = 3}, + [5178] = {.lex_state = 541}, + [5179] = {.lex_state = 918, .external_lex_state = 3}, + [5180] = {.lex_state = 918, .external_lex_state = 3}, + [5181] = {.lex_state = 541}, + [5182] = {.lex_state = 543}, + [5183] = {.lex_state = 918, .external_lex_state = 3}, + [5184] = {.lex_state = 461}, + [5185] = {.lex_state = 919, .external_lex_state = 3}, + [5186] = {.lex_state = 461}, + [5187] = {.lex_state = 656}, + [5188] = {.lex_state = 644}, + [5189] = {.lex_state = 495}, + [5190] = {.lex_state = 585}, + [5191] = {.lex_state = 461}, + [5192] = {.lex_state = 919, .external_lex_state = 3}, + [5193] = {.lex_state = 461}, + [5194] = {.lex_state = 656}, + [5195] = {.lex_state = 921, .external_lex_state = 3}, + [5196] = {.lex_state = 921, .external_lex_state = 3}, + [5197] = {.lex_state = 541}, + [5198] = {.lex_state = 543}, + [5199] = {.lex_state = 921, .external_lex_state = 3}, + [5200] = {.lex_state = 461}, + [5201] = {.lex_state = 495, .external_lex_state = 3}, + [5202] = {.lex_state = 884, .external_lex_state = 3}, + [5203] = {.lex_state = 541}, + [5204] = {.lex_state = 923, .external_lex_state = 3}, + [5205] = {.lex_state = 923, .external_lex_state = 3}, + [5206] = {.lex_state = 541}, + [5207] = {.lex_state = 543}, + [5208] = {.lex_state = 923, .external_lex_state = 3}, + [5209] = {.lex_state = 688, .external_lex_state = 3}, + [5210] = {.lex_state = 763, .external_lex_state = 3}, + [5211] = {.lex_state = 663, .external_lex_state = 3}, + [5212] = {.lex_state = 765, .external_lex_state = 3}, + [5213] = {.lex_state = 453}, + [5214] = {.lex_state = 585}, + [5215] = {.lex_state = 461}, + [5216] = {.lex_state = 885, .external_lex_state = 3}, + [5217] = {.lex_state = 461}, + [5218] = {.lex_state = 461}, + [5219] = {.lex_state = 461}, + [5220] = {.lex_state = 485}, + [5221] = {.lex_state = 541}, + [5222] = {.lex_state = 887, .external_lex_state = 3}, + [5223] = {.lex_state = 541}, + [5224] = {.lex_state = 461}, + [5225] = {.lex_state = 766, .external_lex_state = 3}, + [5226] = {.lex_state = 889, .external_lex_state = 3}, + [5227] = {.lex_state = 541}, + [5228] = {.lex_state = 453}, + [5229] = {.lex_state = 585}, + [5230] = {.lex_state = 461}, + [5231] = {.lex_state = 890, .external_lex_state = 3}, + [5232] = {.lex_state = 461}, + [5233] = {.lex_state = 461}, + [5234] = {.lex_state = 461}, + [5235] = {.lex_state = 485}, + [5236] = {.lex_state = 541}, + [5237] = {.lex_state = 892, .external_lex_state = 3}, + [5238] = {.lex_state = 541}, + [5239] = {.lex_state = 461}, + [5240] = {.lex_state = 767, .external_lex_state = 3}, + [5241] = {.lex_state = 924, .external_lex_state = 3}, + [5242] = {.lex_state = 924, .external_lex_state = 3}, + [5243] = {.lex_state = 541}, + [5244] = {.lex_state = 543}, + [5245] = {.lex_state = 924, .external_lex_state = 3}, + [5246] = {.lex_state = 453}, + [5247] = {.lex_state = 585}, + [5248] = {.lex_state = 461}, + [5249] = {.lex_state = 894, .external_lex_state = 3}, + [5250] = {.lex_state = 461}, + [5251] = {.lex_state = 461}, + [5252] = {.lex_state = 461}, + [5253] = {.lex_state = 485}, + [5254] = {.lex_state = 541}, + [5255] = {.lex_state = 896, .external_lex_state = 3}, + [5256] = {.lex_state = 541}, + [5257] = {.lex_state = 461}, + [5258] = {.lex_state = 768, .external_lex_state = 3}, + [5259] = {.lex_state = 898, .external_lex_state = 3}, + [5260] = {.lex_state = 541}, + [5261] = {.lex_state = 453}, + [5262] = {.lex_state = 585}, + [5263] = {.lex_state = 461}, + [5264] = {.lex_state = 899, .external_lex_state = 3}, + [5265] = {.lex_state = 461}, + [5266] = {.lex_state = 461}, + [5267] = {.lex_state = 461}, + [5268] = {.lex_state = 485}, + [5269] = {.lex_state = 541}, + [5270] = {.lex_state = 901, .external_lex_state = 3}, + [5271] = {.lex_state = 541}, + [5272] = {.lex_state = 461}, + [5273] = {.lex_state = 769, .external_lex_state = 3}, + [5274] = {.lex_state = 925, .external_lex_state = 3}, + [5275] = {.lex_state = 925, .external_lex_state = 3}, + [5276] = {.lex_state = 541}, + [5277] = {.lex_state = 543}, + [5278] = {.lex_state = 925, .external_lex_state = 3}, + [5279] = {.lex_state = 453}, + [5280] = {.lex_state = 585}, + [5281] = {.lex_state = 461}, + [5282] = {.lex_state = 903, .external_lex_state = 3}, + [5283] = {.lex_state = 461}, + [5284] = {.lex_state = 461}, + [5285] = {.lex_state = 461}, + [5286] = {.lex_state = 485}, + [5287] = {.lex_state = 541}, + [5288] = {.lex_state = 905, .external_lex_state = 3}, + [5289] = {.lex_state = 541}, + [5290] = {.lex_state = 461}, + [5291] = {.lex_state = 770, .external_lex_state = 3}, + [5292] = {.lex_state = 907, .external_lex_state = 3}, + [5293] = {.lex_state = 541}, + [5294] = {.lex_state = 773}, + [5295] = {.lex_state = 771}, + [5296] = {.lex_state = 777, .external_lex_state = 3}, + [5297] = {.lex_state = 578}, + [5298] = {.lex_state = 0, .external_lex_state = 3}, + [5299] = {.lex_state = 0, .external_lex_state = 3}, + [5300] = {.lex_state = 930, .external_lex_state = 4}, + [5301] = {.lex_state = 930}, + [5302] = {.lex_state = 671}, + [5303] = {.lex_state = 676}, + [5304] = {.lex_state = 554}, + [5305] = {.lex_state = 844, .external_lex_state = 3}, + [5306] = {.lex_state = 541}, + [5307] = {.lex_state = 453}, + [5308] = {.lex_state = 485}, + [5309] = {.lex_state = 585}, + [5310] = {.lex_state = 846, .external_lex_state = 3}, + [5311] = {.lex_state = 485}, + [5312] = {.lex_state = 553}, + [5313] = {.lex_state = 541}, + [5314] = {.lex_state = 850}, + [5315] = {.lex_state = 541}, + [5316] = {.lex_state = 453}, + [5317] = {.lex_state = 485}, + [5318] = {.lex_state = 585}, + [5319] = {.lex_state = 453}, + [5320] = {.lex_state = 585}, + [5321] = {.lex_state = 461}, + [5322] = {.lex_state = 908}, + [5323] = {.lex_state = 461}, + [5324] = {.lex_state = 461}, + [5325] = {.lex_state = 461}, + [5326] = {.lex_state = 485}, + [5327] = {.lex_state = 541}, + [5328] = {.lex_state = 461}, + [5329] = {.lex_state = 461}, + [5330] = {.lex_state = 718}, + [5331] = {.lex_state = 718, .external_lex_state = 3}, + [5332] = {.lex_state = 453}, + [5333] = {.lex_state = 585}, + [5334] = {.lex_state = 461}, + [5335] = {.lex_state = 844}, + [5336] = {.lex_state = 461}, + [5337] = {.lex_state = 461}, + [5338] = {.lex_state = 461}, + [5339] = {.lex_state = 485}, + [5340] = {.lex_state = 541}, + [5341] = {.lex_state = 846}, + [5342] = {.lex_state = 541}, + [5343] = {.lex_state = 461}, + [5344] = {.lex_state = 777}, + [5345] = {.lex_state = 686}, + [5346] = {.lex_state = 541}, + [5347] = {.lex_state = 637}, + [5348] = {.lex_state = 535}, + [5349] = {.lex_state = 856, .external_lex_state = 3}, + [5350] = {.lex_state = 541}, + [5351] = {.lex_state = 453}, + [5352] = {.lex_state = 485}, + [5353] = {.lex_state = 585}, + [5354] = {.lex_state = 858, .external_lex_state = 3}, + [5355] = {.lex_state = 860, .external_lex_state = 3}, + [5356] = {.lex_state = 861, .external_lex_state = 3}, + [5357] = {.lex_state = 541}, + [5358] = {.lex_state = 453}, + [5359] = {.lex_state = 485}, + [5360] = {.lex_state = 585}, + [5361] = {.lex_state = 863, .external_lex_state = 3}, + [5362] = {.lex_state = 910, .external_lex_state = 3}, + [5363] = {.lex_state = 541}, + [5364] = {.lex_state = 865, .external_lex_state = 3}, + [5365] = {.lex_state = 541}, + [5366] = {.lex_state = 453}, + [5367] = {.lex_state = 485}, + [5368] = {.lex_state = 585}, + [5369] = {.lex_state = 867, .external_lex_state = 3}, + [5370] = {.lex_state = 869, .external_lex_state = 3}, + [5371] = {.lex_state = 870, .external_lex_state = 3}, + [5372] = {.lex_state = 541}, + [5373] = {.lex_state = 453}, + [5374] = {.lex_state = 485}, + [5375] = {.lex_state = 585}, + [5376] = {.lex_state = 872, .external_lex_state = 3}, + [5377] = {.lex_state = 911, .external_lex_state = 3}, + [5378] = {.lex_state = 541}, + [5379] = {.lex_state = 874, .external_lex_state = 3}, + [5380] = {.lex_state = 541}, + [5381] = {.lex_state = 453}, + [5382] = {.lex_state = 485}, + [5383] = {.lex_state = 585}, + [5384] = {.lex_state = 876, .external_lex_state = 3}, + [5385] = {.lex_state = 878, .external_lex_state = 3}, + [5386] = {.lex_state = 635, .external_lex_state = 3}, + [5387] = {.lex_state = 541}, + [5388] = {.lex_state = 453}, + [5389] = {.lex_state = 485}, + [5390] = {.lex_state = 585}, + [5391] = {.lex_state = 721, .external_lex_state = 3}, + [5392] = {.lex_state = 545, .external_lex_state = 3}, + [5393] = {.lex_state = 741}, + [5394] = {.lex_state = 912}, + [5395] = {.lex_state = 541}, + [5396] = {.lex_state = 753}, + [5397] = {.lex_state = 913}, + [5398] = {.lex_state = 541}, + [5399] = {.lex_state = 453}, + [5400] = {.lex_state = 585}, + [5401] = {.lex_state = 461}, + [5402] = {.lex_state = 914, .external_lex_state = 3}, + [5403] = {.lex_state = 461}, + [5404] = {.lex_state = 461}, + [5405] = {.lex_state = 461}, + [5406] = {.lex_state = 485}, + [5407] = {.lex_state = 541}, + [5408] = {.lex_state = 916, .external_lex_state = 3}, + [5409] = {.lex_state = 541}, + [5410] = {.lex_state = 461}, + [5411] = {.lex_state = 883, .external_lex_state = 3}, + [5412] = {.lex_state = 918, .external_lex_state = 3}, + [5413] = {.lex_state = 541}, + [5414] = {.lex_state = 453}, + [5415] = {.lex_state = 585}, + [5416] = {.lex_state = 461}, + [5417] = {.lex_state = 919, .external_lex_state = 3}, + [5418] = {.lex_state = 461}, + [5419] = {.lex_state = 461}, + [5420] = {.lex_state = 461}, + [5421] = {.lex_state = 485}, + [5422] = {.lex_state = 541}, + [5423] = {.lex_state = 921, .external_lex_state = 3}, + [5424] = {.lex_state = 541}, + [5425] = {.lex_state = 461}, + [5426] = {.lex_state = 884, .external_lex_state = 3}, + [5427] = {.lex_state = 923, .external_lex_state = 3}, + [5428] = {.lex_state = 541}, + [5429] = {.lex_state = 885, .external_lex_state = 3}, + [5430] = {.lex_state = 541}, + [5431] = {.lex_state = 453}, + [5432] = {.lex_state = 485}, + [5433] = {.lex_state = 585}, + [5434] = {.lex_state = 887, .external_lex_state = 3}, + [5435] = {.lex_state = 889, .external_lex_state = 3}, + [5436] = {.lex_state = 890, .external_lex_state = 3}, + [5437] = {.lex_state = 541}, + [5438] = {.lex_state = 453}, + [5439] = {.lex_state = 485}, + [5440] = {.lex_state = 585}, + [5441] = {.lex_state = 892, .external_lex_state = 3}, + [5442] = {.lex_state = 924, .external_lex_state = 3}, + [5443] = {.lex_state = 541}, + [5444] = {.lex_state = 894, .external_lex_state = 3}, + [5445] = {.lex_state = 541}, + [5446] = {.lex_state = 453}, + [5447] = {.lex_state = 485}, + [5448] = {.lex_state = 585}, + [5449] = {.lex_state = 896, .external_lex_state = 3}, + [5450] = {.lex_state = 898, .external_lex_state = 3}, + [5451] = {.lex_state = 899, .external_lex_state = 3}, + [5452] = {.lex_state = 541}, + [5453] = {.lex_state = 453}, + [5454] = {.lex_state = 485}, + [5455] = {.lex_state = 585}, + [5456] = {.lex_state = 901, .external_lex_state = 3}, + [5457] = {.lex_state = 925, .external_lex_state = 3}, + [5458] = {.lex_state = 541}, + [5459] = {.lex_state = 903, .external_lex_state = 3}, + [5460] = {.lex_state = 541}, + [5461] = {.lex_state = 453}, + [5462] = {.lex_state = 485}, + [5463] = {.lex_state = 585}, + [5464] = {.lex_state = 905, .external_lex_state = 3}, + [5465] = {.lex_state = 907, .external_lex_state = 3}, + [5466] = {.lex_state = 930, .external_lex_state = 4}, + [5467] = {.lex_state = 844, .external_lex_state = 3}, + [5468] = {.lex_state = 553}, + [5469] = {.lex_state = 850}, + [5470] = {.lex_state = 908}, + [5471] = {.lex_state = 541}, + [5472] = {.lex_state = 453}, + [5473] = {.lex_state = 485}, + [5474] = {.lex_state = 585}, + [5475] = {.lex_state = 844}, + [5476] = {.lex_state = 541}, + [5477] = {.lex_state = 453}, + [5478] = {.lex_state = 485}, + [5479] = {.lex_state = 585}, + [5480] = {.lex_state = 846}, + [5481] = {.lex_state = 686}, + [5482] = {.lex_state = 856, .external_lex_state = 3}, + [5483] = {.lex_state = 861, .external_lex_state = 3}, + [5484] = {.lex_state = 910, .external_lex_state = 3}, + [5485] = {.lex_state = 865, .external_lex_state = 3}, + [5486] = {.lex_state = 870, .external_lex_state = 3}, + [5487] = {.lex_state = 911, .external_lex_state = 3}, + [5488] = {.lex_state = 874, .external_lex_state = 3}, + [5489] = {.lex_state = 635, .external_lex_state = 3}, + [5490] = {.lex_state = 912}, + [5491] = {.lex_state = 913}, + [5492] = {.lex_state = 914, .external_lex_state = 3}, + [5493] = {.lex_state = 541}, + [5494] = {.lex_state = 453}, + [5495] = {.lex_state = 485}, + [5496] = {.lex_state = 585}, + [5497] = {.lex_state = 916, .external_lex_state = 3}, + [5498] = {.lex_state = 918, .external_lex_state = 3}, + [5499] = {.lex_state = 919, .external_lex_state = 3}, + [5500] = {.lex_state = 541}, + [5501] = {.lex_state = 453}, + [5502] = {.lex_state = 485}, + [5503] = {.lex_state = 585}, + [5504] = {.lex_state = 921, .external_lex_state = 3}, + [5505] = {.lex_state = 923, .external_lex_state = 3}, + [5506] = {.lex_state = 885, .external_lex_state = 3}, + [5507] = {.lex_state = 890, .external_lex_state = 3}, + [5508] = {.lex_state = 924, .external_lex_state = 3}, + [5509] = {.lex_state = 894, .external_lex_state = 3}, + [5510] = {.lex_state = 899, .external_lex_state = 3}, + [5511] = {.lex_state = 925, .external_lex_state = 3}, + [5512] = {.lex_state = 903, .external_lex_state = 3}, + [5513] = {.lex_state = 908}, + [5514] = {.lex_state = 844}, + [5515] = {.lex_state = 914, .external_lex_state = 3}, + [5516] = {.lex_state = 919, .external_lex_state = 3}, }; enum { @@ -27413,34 +27591,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_primitive] = ACTIONS(1), - [anon_sym_CATCHALL] = ACTIONS(1), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), - [anon_sym_PIPE_RPAREN] = ACTIONS(1), - [anon_sym_4] = ACTIONS(1), + [anon_sym_LPAREN_PIPE] = ACTIONS(1), + [anon_sym_3] = ACTIONS(1), [sym__const_right_arrow] = ACTIONS(1), - [anon_sym_quote] = ACTIONS(1), + [anon_sym_Prop] = ACTIONS(1), [sym__const_ellipsis] = ACTIONS(1), [anon_sym_using] = ACTIONS(1), [anon_sym_] = ACTIONS(1), [sym__indent] = ACTIONS(1), [anon_sym_coinductive] = ACTIONS(1), [anon_sym_hiding] = ACTIONS(1), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1), - [anon_sym_POUND_DASH_RBRACE] = ACTIONS(1), + [sym_test2] = ACTIONS(1), + [anon_sym_CATCHALL] = ACTIONS(1), [anon_sym_private] = ACTIONS(1), [anon_sym__] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), + [anon_sym_4] = ACTIONS(1), + [anon_sym_quoteGoal] = ACTIONS(1), [aux_sym_integer_token1] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_2] = ACTIONS(1), [sym__dedent] = ACTIONS(1), [anon_sym_renaming] = ACTIONS(1), [anon_sym_to] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_POUND_DASH_RBRACE] = ACTIONS(1), [anon_sym_eta_DASHequality] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_tactic] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), [aux_sym_string_token1] = ACTIONS(1), [anon_sym_data] = ACTIONS(1), [anon_sym_rewrite] = ACTIONS(1), @@ -27448,14 +27627,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pattern] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), [anon_sym_no_DASHeta_DASHequality] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_quoteTerm] = ACTIONS(1), + [anon_sym_quote] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), + [anon_sym_tactic] = ACTIONS(1), [sym_name] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), [anon_sym_record] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), @@ -27463,11 +27642,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_macro] = ACTIONS(1), [anon_sym_field] = ACTIONS(1), [anon_sym_generalize] = ACTIONS(1), - [anon_sym_unquote] = ACTIONS(1), + [anon_sym_quoteTerm] = ACTIONS(1), [anon_sym_LBRACE_LBRACE] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [anon_sym_Set] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), [anon_sym_open] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), [anon_sym_where] = ACTIONS(1), @@ -27477,147929 +27656,148371 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_overlap] = ACTIONS(1), [anon_sym_mutual] = ACTIONS(1), - [anon_sym_LPAREN_PIPE] = ACTIONS(1), + [anon_sym_unquote] = ACTIONS(1), [anon_sym_RBRACE_RBRACE] = ACTIONS(1), - [anon_sym_3] = ACTIONS(1), + [anon_sym_PIPE_RPAREN] = ACTIONS(1), [sym__const_forall] = ACTIONS(1), - [anon_sym_Prop] = ACTIONS(1), + [anon_sym_Set] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_public] = ACTIONS(1), [anon_sym_module] = ACTIONS(1), }, [1] = { [sym_primitive] = STATE(35), - [sym_literal] = STATE(7), + [sym_literal] = STATE(6), [sym__declaration] = STATE(35), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), [sym_module_macro] = STATE(35), - [aux_sym_source_file_repeat1] = STATE(38), - [aux_sym__open_args1_repeat1] = STATE(39), - [sym__atom_no_curly] = STATE(40), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), [sym_field] = STATE(35), [sym_abstract] = STATE(35), [sym_private] = STATE(35), - [sym_source_file] = STATE(41), + [sym_source_file] = STATE(40), [sym_function_clause] = STATE(35), - [sym_lhs_decl] = STATE(42), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), [sym_open] = STATE(35), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), + [sym_let] = STATE(43), [sym_infix] = STATE(35), [sym_data] = STATE(35), - [aux_sym__with_expr_repeat1] = STATE(45), + [aux_sym_source_file_repeat1] = STATE(44), [sym_instance] = STATE(35), [sym_macro] = STATE(35), - [sym_lhs_defn] = STATE(46), + [sym_test] = STATE(35), + [sym_lhs_defn] = STATE(45), [sym_data_signature_only] = STATE(35), [sym_record_signature_only] = STATE(35), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), [sym_pattern] = STATE(35), [sym_syntax] = STATE(35), [sym_record] = STATE(35), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), [sym_module] = STATE(35), + [aux_sym__with_expr_repeat1] = STATE(48), [sym_generalize] = STATE(35), [sym_mutual] = STATE(35), [sym_postulate] = STATE(35), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [ts_builtin_sym_end] = ACTIONS(53), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [ts_builtin_sym_end] = ACTIONS(59), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), [aux_sym_string_token1] = ACTIONS(69), [anon_sym_import] = ACTIONS(71), [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [2] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(66), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(77), }, [3] = { + [sym__simple_type_sig_block] = STATE(51), [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(79), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(111), }, [4] = { - [sym__simple_type_sig_block] = STATE(78), + [sym__declaration_block] = STATE(53), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(113), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), }, [5] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(74), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(115), }, [6] = { - [sym__declaration_block] = STATE(81), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), - [sym_pragma] = ACTIONS(3), - }, - [7] = { [anon_sym_COLON] = ACTIONS(119), [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_rewrite] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [8] = { - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(123), - [sym_pragma] = ACTIONS(3), - }, - [9] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(94), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(137), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [7] = { + [sym__atom_curly] = STATE(92), + [sym__atom_no_curly] = STATE(92), + [sym_literal] = STATE(82), + [aux_sym__open_args1_repeat1] = STATE(93), + [sym_record_assignments] = STATE(82), + [sym_atom] = STATE(93), + [sym__atoms1] = STATE(94), + [anon_sym__] = ACTIONS(123), + [anon_sym_quoteTerm] = ACTIONS(123), + [anon_sym_LBRACE_LBRACE] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(131), + [sym_qualified_name] = ACTIONS(123), + [anon_sym_quote] = ACTIONS(123), + [anon_sym_3] = ACTIONS(133), + [anon_sym_Prop] = ACTIONS(123), + [sym__const_ellipsis] = ACTIONS(123), + [anon_sym_record] = ACTIONS(135), + [anon_sym_] = ACTIONS(137), + [anon_sym_unquote] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(141), + [aux_sym_string_token1] = ACTIONS(143), + [anon_sym_Set] = ACTIONS(123), }, - [10] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(112), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [8] = { + [sym_primitive] = STATE(118), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(118), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(118), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(118), + [sym_abstract] = STATE(118), + [sym_private] = STATE(118), + [sym_function_clause] = STATE(118), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(118), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(124), + [sym_infix] = STATE(118), + [sym_data] = STATE(118), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(118), + [sym_macro] = STATE(118), + [sym_test] = STATE(118), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(118), + [sym_record_signature_only] = STATE(118), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(118), + [sym_syntax] = STATE(118), + [sym_record] = STATE(118), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(118), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(118), + [sym_mutual] = STATE(118), + [sym_postulate] = STATE(118), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(161), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(165), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [11] = { - [sym_comment] = ACTIONS(3), + [9] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(139), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(213), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [10] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(156), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(181), + }, + [11] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(179), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [12] = { - [sym__declaration_block] = STATE(119), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(283), }, [13] = { - [sym_integer] = STATE(121), + [sym__declaration_block] = STATE(186), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(183), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), }, [14] = { - [sym__declaration_block] = STATE(122), + [sym_integer] = STATE(188), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), + [aux_sym_integer_token1] = ACTIONS(285), [sym_pragma] = ACTIONS(3), }, [15] = { - [sym__type_sig_block] = STATE(124), + [sym__declaration_block] = STATE(189), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(185), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), }, [16] = { - [sym__declaration_block] = STATE(125), + [sym__type_sig_block] = STATE(191), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), + [sym__indent] = ACTIONS(287), [sym_pragma] = ACTIONS(3), }, [17] = { - [sym__type_sig_block] = STATE(126), + [sym__declaration_block] = STATE(192), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(185), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), }, [18] = { - [sym_primitive] = STATE(150), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(150), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(150), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(154), - [sym_field] = STATE(150), - [sym_abstract] = STATE(150), - [sym_private] = STATE(150), - [sym_function_clause] = STATE(150), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(150), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(150), - [sym_data] = STATE(150), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(150), - [sym_macro] = STATE(150), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(150), - [sym_record_signature_only] = STATE(150), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(150), - [sym_syntax] = STATE(150), - [sym_record] = STATE(150), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(150), - [sym_generalize] = STATE(150), - [sym_mutual] = STATE(150), - [sym_postulate] = STATE(150), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(199), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__type_sig_block] = STATE(193), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(287), + [sym_pragma] = ACTIONS(3), }, [19] = { - [sym_typed_binding] = STATE(167), - [sym_anonymous_name] = STATE(166), - [sym_untyped_binding] = STATE(167), - [sym__lambda_binding] = STATE(168), - [sym__binding_name] = STATE(169), - [anon_sym__] = ACTIONS(235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(237), - [anon_sym_] = ACTIONS(239), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(241), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), + [sym__indent] = ACTIONS(289), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(249), - [sym_name] = ACTIONS(251), }, [20] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [21] = { - [sym__module_name] = STATE(173), - [anon_sym_import] = ACTIONS(257), - [sym_qualified_name] = ACTIONS(259), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(261), + [sym_name] = ACTIONS(291), }, - [22] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(190), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [21] = { + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, - [23] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(203), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(295), + [22] = { + [sym__module_name] = STATE(199), + [anon_sym_import] = ACTIONS(297), + [sym_qualified_name] = ACTIONS(299), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_module] = ACTIONS(301), + }, + [23] = { + [sym_anonymous_name] = STATE(207), + [sym_typed_binding] = STATE(208), + [sym_untyped_binding] = STATE(208), + [sym__lambda_binding] = STATE(209), + [sym__binding_name] = STATE(210), + [anon_sym__] = ACTIONS(303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(305), + [anon_sym_] = ACTIONS(307), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(317), + [sym_name] = ACTIONS(319), }, [24] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(309), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(227), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(353), }, [25] = { - [sym__declaration_block] = STATE(208), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(239), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(353), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [26] = { - [sym__declaration_block] = STATE(209), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(367), }, [27] = { - [sym__atom_no_curly] = STATE(40), - [sym_literal] = STATE(7), - [sym_record_assignments] = STATE(7), - [sym__atom_curly] = STATE(40), - [sym_atom] = STATE(102), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(47), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_3] = ACTIONS(61), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_Prop] = ACTIONS(15), + [sym__declaration_block] = STATE(245), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [28] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(227), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__declaration_block] = STATE(246), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [29] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(241), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(37), + [sym__atom_no_curly] = STATE(37), + [sym_literal] = STATE(6), + [sym_record_assignments] = STATE(6), + [sym_atom] = STATE(168), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(53), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_Prop] = ACTIONS(13), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_record] = ACTIONS(369), + [anon_sym_] = ACTIONS(23), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_Set] = ACTIONS(13), }, [30] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(254), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(255), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [31] = { - [sym__atom_no_curly] = STATE(266), - [sym_literal] = STATE(256), - [aux_sym__open_args1_repeat1] = STATE(267), - [sym__atom_curly] = STATE(266), - [sym_record_assignments] = STATE(256), - [sym_atom] = STATE(267), - [sym__atoms1] = STATE(268), - [anon_sym__] = ACTIONS(375), - [anon_sym_unquote] = ACTIONS(375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(379), - [anon_sym_Set] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(381), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(375), - [anon_sym_quoteTerm] = ACTIONS(375), - [anon_sym_quote] = ACTIONS(375), - [sym__const_ellipsis] = ACTIONS(375), - [anon_sym_record] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_LPAREN_PIPE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_3] = ACTIONS(393), - [aux_sym_string_token1] = ACTIONS(395), - [anon_sym_Prop] = ACTIONS(375), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(269), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [32] = { - [sym__module_name] = STATE(173), - [sym_qualified_name] = ACTIONS(259), + [sym__module_name] = STATE(199), + [sym_qualified_name] = ACTIONS(299), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [33] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(397), + [sym_name] = ACTIONS(401), }, [34] = { - [sym_anonymous_name] = STATE(272), - [anon_sym__] = ACTIONS(399), - [sym_qualified_name] = ACTIONS(401), + [sym_anonymous_name] = STATE(274), + [anon_sym__] = ACTIONS(403), + [sym_qualified_name] = ACTIONS(405), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [35] = { - [sym__newline] = ACTIONS(403), + [sym__newline] = ACTIONS(407), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [36] = { - [sym_rewrite_equations] = STATE(276), - [sym_with_expressions] = STATE(277), - [sym__newline] = ACTIONS(405), - [anon_sym_with] = ACTIONS(407), + [sym__newline] = ACTIONS(409), + [anon_sym_COLON] = ACTIONS(409), + [anon_sym_with] = ACTIONS(409), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(409), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(405), + [anon_sym_in] = ACTIONS(409), + [anon_sym_where] = ACTIONS(409), [anon_sym_rewrite] = ACTIONS(409), - [anon_sym_module] = ACTIONS(405), + [anon_sym_module] = ACTIONS(409), }, [37] = { - [sym__newline] = ACTIONS(411), [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), [anon_sym_with] = ACTIONS(411), - [sym_comment] = ACTIONS(3), + [anon_sym_] = ACTIONS(411), [anon_sym_EQ] = ACTIONS(411), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), [anon_sym_rewrite] = ACTIONS(411), [anon_sym_module] = ACTIONS(411), }, [38] = { + [sym_literal] = STATE(276), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(287), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(288), + [sym__atom_no_curly] = STATE(288), + [sym_record_assignments] = STATE(276), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(415), + [anon_sym_quoteTerm] = ACTIONS(415), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(417), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_LPAREN_PIPE] = ACTIONS(425), + [sym_qualified_name] = ACTIONS(415), + [anon_sym_quote] = ACTIONS(415), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(415), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(427), + [sym__const_ellipsis] = ACTIONS(415), + [anon_sym_3] = ACTIONS(429), + [anon_sym_] = ACTIONS(431), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(437), + [anon_sym_Set] = ACTIONS(415), + [sym_pragma] = ACTIONS(3), + }, + [39] = { + [aux_sym_test_repeat1] = STATE(290), + [sym__newline] = ACTIONS(439), + [sym_test2] = ACTIONS(441), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [40] = { + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(443), + }, + [41] = { + [sym_where_clause] = STATE(294), + [sym_rhs_decl] = STATE(295), + [sym__newline] = ACTIONS(445), + [anon_sym_COLON] = ACTIONS(447), + [anon_sym_where] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(451), + }, + [42] = { + [sym_rewrite_equations] = STATE(298), + [sym_with_expressions] = STATE(299), + [sym__newline] = ACTIONS(453), + [anon_sym_with] = ACTIONS(455), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(453), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(453), + [anon_sym_rewrite] = ACTIONS(457), + [anon_sym_module] = ACTIONS(453), + }, + [43] = { + [sym__newline] = ACTIONS(459), + [anon_sym_COLON] = ACTIONS(459), + [anon_sym_with] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(459), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(459), + [anon_sym_where] = ACTIONS(459), + [anon_sym_rewrite] = ACTIONS(459), + [anon_sym_module] = ACTIONS(459), + }, + [44] = { [sym_primitive] = STATE(35), - [sym_literal] = STATE(7), + [sym_literal] = STATE(6), [sym__declaration] = STATE(35), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), [sym_module_macro] = STATE(35), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(278), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), [sym_field] = STATE(35), [sym_abstract] = STATE(35), [sym_private] = STATE(35), [sym_function_clause] = STATE(35), - [sym_lhs_decl] = STATE(42), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), [sym_open] = STATE(35), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(300), [sym_infix] = STATE(35), [sym_data] = STATE(35), - [aux_sym__with_expr_repeat1] = STATE(45), + [sym_lambda] = STATE(43), [sym_instance] = STATE(35), [sym_macro] = STATE(35), - [sym_lhs_defn] = STATE(46), + [sym_test] = STATE(35), + [sym_lhs_defn] = STATE(45), [sym_data_signature_only] = STATE(35), [sym_record_signature_only] = STATE(35), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), [sym_pattern] = STATE(35), [sym_syntax] = STATE(35), [sym_record] = STATE(35), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), [sym_module] = STATE(35), + [aux_sym__with_expr_repeat1] = STATE(48), [sym_generalize] = STATE(35), [sym_mutual] = STATE(35), [sym_postulate] = STATE(35), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [ts_builtin_sym_end] = ACTIONS(413), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [ts_builtin_sym_end] = ACTIONS(461), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), [aux_sym_string_token1] = ACTIONS(69), [anon_sym_import] = ACTIONS(71), [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), - }, - [39] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(289), - [sym__atom_curly] = STATE(290), - [sym_literal] = STATE(279), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(290), - [sym_record_assignments] = STATE(279), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(415), - [anon_sym_unquote] = ACTIONS(415), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(417), - [anon_sym_Set] = ACTIONS(415), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_LBRACE_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(421), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(415), - [anon_sym_quoteTerm] = ACTIONS(415), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(415), - [sym__const_ellipsis] = ACTIONS(415), - [anon_sym_record] = ACTIONS(423), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [anon_sym_LPAREN_PIPE] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(435), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(415), - [anon_sym_3] = ACTIONS(437), - }, - [40] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), - }, - [41] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [ts_builtin_sym_end] = ACTIONS(443), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, - [42] = { - [sym_where_clause] = STATE(296), - [sym_rhs_decl] = STATE(297), + [45] = { + [sym_where_clause] = STATE(294), + [sym_rhs_defn] = STATE(295), [sym__newline] = ACTIONS(445), - [anon_sym_COLON] = ACTIONS(447), [anon_sym_where] = ACTIONS(449), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(463), [sym_pragma] = ACTIONS(3), [anon_sym_module] = ACTIONS(451), }, - [43] = { - [sym__newline] = ACTIONS(453), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_with] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(453), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(453), - [anon_sym_where] = ACTIONS(453), - [anon_sym_rewrite] = ACTIONS(453), - [anon_sym_module] = ACTIONS(453), + [46] = { + [sym_rewrite_equations] = STATE(304), + [sym_with_expressions] = STATE(305), + [anon_sym_COLON] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(473), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(477), + [anon_sym_module] = ACTIONS(465), }, - [44] = { + [47] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_PIPE] = ACTIONS(479), }, - [45] = { - [sym_literal] = STATE(279), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(290), - [aux_sym__open_args1_repeat1] = STATE(39), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(289), - [sym__atom_curly] = STATE(290), - [sym_record_assignments] = STATE(279), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), + [48] = { + [sym_literal] = STATE(276), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(288), + [sym__atom_no_curly] = STATE(288), + [aux_sym__open_args1_repeat1] = STATE(38), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(287), + [sym_record_assignments] = STATE(276), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), [anon_sym__] = ACTIONS(415), - [anon_sym_unquote] = ACTIONS(415), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), + [anon_sym_quoteTerm] = ACTIONS(415), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), [aux_sym_integer_token1] = ACTIONS(417), - [anon_sym_Set] = ACTIONS(415), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_LBRACE_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(421), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(423), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(425), [sym_qualified_name] = ACTIONS(415), - [anon_sym_quoteTerm] = ACTIONS(415), - [anon_sym_do] = ACTIONS(17), [anon_sym_quote] = ACTIONS(415), - [sym__const_ellipsis] = ACTIONS(415), - [anon_sym_record] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [anon_sym_LPAREN_PIPE] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(435), - [sym__const_forall] = ACTIONS(65), + [anon_sym_tactic] = ACTIONS(17), [anon_sym_Prop] = ACTIONS(415), - [anon_sym_3] = ACTIONS(437), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(427), + [sym__const_ellipsis] = ACTIONS(415), + [anon_sym_3] = ACTIONS(429), + [anon_sym_] = ACTIONS(431), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(437), + [anon_sym_Set] = ACTIONS(415), }, - [46] = { - [sym_where_clause] = STATE(296), - [sym_rhs_defn] = STATE(297), - [sym__newline] = ACTIONS(445), - [anon_sym_where] = ACTIONS(449), + [49] = { + [sym_anonymous_name] = STATE(316), + [sym_typed_binding] = STATE(317), + [sym_untyped_binding] = STATE(317), + [sym__lambda_binding] = STATE(318), + [sym__binding_name] = STATE(319), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(483), + [anon_sym_] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), + }, + [50] = { + [aux_sym_syntax_repeat2] = STATE(320), + [sym_simple_type_sig] = STATE(321), + [aux_sym__simple_type_sig_block_repeat1] = STATE(322), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(457), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(451), + [sym_name] = ACTIONS(499), }, - [47] = { - [sym_rewrite_equations] = STATE(304), - [sym_with_expressions] = STATE(305), - [anon_sym_COLON] = ACTIONS(459), - [sym__newline] = ACTIONS(461), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(465), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), + [51] = { + [sym__newline] = ACTIONS(501), + [anon_sym_in] = ACTIONS(501), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(471), - [anon_sym_module] = ACTIONS(459), + [sym_pragma] = ACTIONS(3), }, - [48] = { + [52] = { + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(324), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), + }, + [53] = { + [sym__newline] = ACTIONS(503), + [anon_sym_in] = ACTIONS(503), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + }, + [54] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_4] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [49] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(322), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(505), - }, - [50] = { - [sym_primitive] = STATE(328), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(328), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(328), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(329), - [sym_field] = STATE(328), - [sym_abstract] = STATE(328), - [sym_private] = STATE(328), - [sym_function_clause] = STATE(328), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(328), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(328), - [sym_data] = STATE(328), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(328), - [sym_macro] = STATE(328), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(328), - [sym_record_signature_only] = STATE(328), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(328), - [sym_syntax] = STATE(328), - [sym_record] = STATE(328), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(328), - [sym_generalize] = STATE(328), - [sym_mutual] = STATE(328), - [sym_postulate] = STATE(328), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(507), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [51] = { - [sym_typed_binding] = STATE(338), - [sym_anonymous_name] = STATE(337), - [sym_untyped_binding] = STATE(338), - [sym__lambda_binding] = STATE(339), - [sym__binding_name] = STATE(340), - [anon_sym__] = ACTIONS(509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(511), - [anon_sym_] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(519), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(523), - [sym_name] = ACTIONS(525), - }, - [52] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_4] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - }, - [53] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(349), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [54] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(543), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_PIPE_RPAREN] = ACTIONS(121), }, [55] = { - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(547), - [anon_sym_] = ACTIONS(549), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(551), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(342), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(537), }, [56] = { [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(553), + [sym__indent] = ACTIONS(539), [sym_pragma] = ACTIONS(3), }, [57] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(361), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(557), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(541), }, [58] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(377), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(295), }, [59] = { - [sym__atom_no_curly] = STATE(70), - [sym_literal] = STATE(48), - [sym_record_assignments] = STATE(48), - [sym__atom_curly] = STATE(70), - [sym_atom] = STATE(321), - [anon_sym__] = ACTIONS(75), - [anon_sym_unquote] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(595), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_3] = ACTIONS(109), - [aux_sym_string_token1] = ACTIONS(105), - [anon_sym_Prop] = ACTIONS(75), + [sym_anonymous_name] = STATE(355), + [sym_typed_binding] = STATE(356), + [sym_untyped_binding] = STATE(356), + [sym__lambda_binding] = STATE(357), + [sym__binding_name] = STATE(358), + [anon_sym__] = ACTIONS(543), + [anon_sym_LBRACE_LBRACE] = ACTIONS(545), + [anon_sym_] = ACTIONS(547), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(553), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(557), + [sym_name] = ACTIONS(559), }, [60] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(387), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(368), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(537), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [61] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(395), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(577), + [anon_sym_LBRACE_LBRACE] = ACTIONS(579), + [anon_sym_] = ACTIONS(581), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(583), }, [62] = { - [sym__atom_no_curly] = STATE(408), - [sym_literal] = STATE(398), - [aux_sym__open_args1_repeat1] = STATE(409), - [sym__atom_curly] = STATE(408), - [sym_record_assignments] = STATE(398), - [sym_atom] = STATE(409), - [sym__atoms1] = STATE(410), - [anon_sym__] = ACTIONS(617), - [anon_sym_unquote] = ACTIONS(617), - [anon_sym_LBRACE_LBRACE] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(621), - [anon_sym_Set] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(623), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(617), - [anon_sym_quoteTerm] = ACTIONS(617), - [anon_sym_quote] = ACTIONS(617), - [sym__const_ellipsis] = ACTIONS(617), - [anon_sym_record] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_LPAREN_PIPE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_3] = ACTIONS(635), - [aux_sym_string_token1] = ACTIONS(637), - [anon_sym_Prop] = ACTIONS(617), + [sym__atom_curly] = STATE(385), + [sym__atom_no_curly] = STATE(385), + [sym_literal] = STATE(375), + [aux_sym__open_args1_repeat1] = STATE(386), + [sym_record_assignments] = STATE(375), + [sym_atom] = STATE(386), + [sym__atoms1] = STATE(387), + [anon_sym__] = ACTIONS(585), + [anon_sym_quoteTerm] = ACTIONS(585), + [anon_sym_LBRACE_LBRACE] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(593), + [sym_qualified_name] = ACTIONS(585), + [anon_sym_quote] = ACTIONS(585), + [anon_sym_3] = ACTIONS(595), + [anon_sym_Prop] = ACTIONS(585), + [sym__const_ellipsis] = ACTIONS(585), + [anon_sym_record] = ACTIONS(597), + [anon_sym_] = ACTIONS(599), + [anon_sym_unquote] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(603), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_Set] = ACTIONS(585), }, [63] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(411), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_primitive] = STATE(389), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(389), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(389), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(389), + [sym_abstract] = STATE(389), + [sym_private] = STATE(389), + [sym_function_clause] = STATE(389), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(389), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(390), + [sym_infix] = STATE(389), + [sym_data] = STATE(389), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(389), + [sym_macro] = STATE(389), + [sym_test] = STATE(389), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(389), + [sym_record_signature_only] = STATE(389), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(389), + [sym_syntax] = STATE(389), + [sym_record] = STATE(389), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(389), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(389), + [sym_mutual] = STATE(389), + [sym_postulate] = STATE(389), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(607), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [64] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(412), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(393), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [65] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(394), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(639), }, [66] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(641), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(411), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [67] = { - [sym_literal] = STATE(415), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(425), - [aux_sym__open_args1_repeat1] = STATE(426), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(427), - [sym__atom_curly] = STATE(425), - [sym_record_assignments] = STATE(415), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(643), - [anon_sym_unquote] = ACTIONS(643), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(645), - [anon_sym_Set] = ACTIONS(643), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_LBRACE_LBRACE] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(415), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(643), - [anon_sym_quoteTerm] = ACTIONS(643), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(643), - [sym__const_ellipsis] = ACTIONS(643), - [anon_sym_record] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(643), - [anon_sym_] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_LPAREN_PIPE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(661), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(643), - [anon_sym_3] = ACTIONS(663), }, [68] = { - [anon_sym_COLON] = ACTIONS(665), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_RPAREN] = ACTIONS(665), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_literal] = STATE(54), + [sym_record_assignments] = STATE(54), + [sym_atom] = STATE(340), + [anon_sym__] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(647), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(649), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(665), - [anon_sym_2] = ACTIONS(665), - [anon_sym_where] = ACTIONS(665), - [anon_sym_PIPE_RPAREN] = ACTIONS(665), - [anon_sym_4] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_3] = ACTIONS(109), + [anon_sym_Prop] = ACTIONS(83), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_record] = ACTIONS(103), + [anon_sym_] = ACTIONS(651), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(655), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), }, [69] = { - [anon_sym_COLON] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(411), - [anon_sym_RPAREN] = ACTIONS(411), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(411), - [anon_sym_2] = ACTIONS(411), - [anon_sym_where] = ACTIONS(411), - [anon_sym_PIPE_RPAREN] = ACTIONS(411), - [anon_sym_4] = ACTIONS(411), - [anon_sym_RBRACE] = ACTIONS(669), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(428), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [70] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_4] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(431), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [71] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_literal] = STATE(48), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(70), - [sym_record_assignments] = STATE(48), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(87), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_] = ACTIONS(671), - [anon_sym__] = ACTIONS(75), - [anon_sym_unquote] = ACTIONS(75), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(673), - [anon_sym_LPAREN] = ACTIONS(675), + [sym_typed_binding] = STATE(436), + [aux_sym__typed_bindings1_repeat1] = STATE(436), + [anon_sym_LBRACE_LBRACE] = ACTIONS(671), + [anon_sym_] = ACTIONS(673), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_LPAREN] = ACTIONS(675), [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(679), + [sym__const_right_arrow] = ACTIONS(681), }, [72] = { - [aux_sym__typed_bindings1_repeat1] = STATE(439), - [sym_typed_binding] = STATE(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(679), - [anon_sym_] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(409), + [anon_sym_4] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(409), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(685), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(687), - [sym__const_right_arrow] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(409), + [anon_sym_RBRACE_RBRACE] = ACTIONS(409), + [anon_sym_PIPE_RPAREN] = ACTIONS(409), + [anon_sym_2] = ACTIONS(409), + [anon_sym_where] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(683), }, [73] = { [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_4] = ACTIONS(467), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_PIPE_RPAREN] = ACTIONS(413), }, [74] = { - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(453), + [anon_sym_PIPE_RPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(453), - [anon_sym_2] = ACTIONS(453), - [anon_sym_where] = ACTIONS(453), - [anon_sym_PIPE_RPAREN] = ACTIONS(453), - [anon_sym_4] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(691), }, [75] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(639), + [sym_literal] = STATE(54), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(77), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_record_assignments] = STATE(54), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_3] = ACTIONS(109), + [anon_sym_] = ACTIONS(687), + [anon_sym__] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(691), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(693), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), }, [76] = { - [sym_typed_binding] = STATE(448), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(448), - [sym__lambda_binding] = STATE(449), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(695), - [anon_sym_] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), + [sym__const_right_arrow] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(479), }, [77] = { - [aux_sym_syntax_repeat2] = STATE(451), - [sym_simple_type_sig] = STATE(452), - [aux_sym__simple_type_sig_block_repeat1] = STATE(453), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_PIPE_RPAREN] = ACTIONS(697), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_Set] = ACTIONS(469), }, [78] = { - [sym__newline] = ACTIONS(713), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(713), + [sym__const_right_arrow] = ACTIONS(695), }, [79] = { - [anon_sym_in] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_4] = ACTIONS(699), + [anon_sym_SEMI] = ACTIONS(699), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_RBRACE_RBRACE] = ACTIONS(699), + [anon_sym_PIPE_RPAREN] = ACTIONS(699), + [anon_sym_2] = ACTIONS(699), + [anon_sym_where] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(701), }, [80] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(456), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), - }, - [81] = { - [sym__newline] = ACTIONS(717), + [anon_sym_COLON] = ACTIONS(459), + [anon_sym_4] = ACTIONS(459), + [anon_sym_SEMI] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RBRACE_RBRACE] = ACTIONS(459), + [anon_sym_PIPE_RPAREN] = ACTIONS(459), + [anon_sym_2] = ACTIONS(459), + [anon_sym_where] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(703), }, - [82] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__with_expr] = STATE(473), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym__do_stmt] = STATE(476), - [sym__do_stmt_where] = STATE(476), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [aux_sym_do_repeat1] = STATE(478), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [81] = { + [sym_literal] = STATE(445), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(455), + [sym__atom_no_curly] = STATE(455), + [aux_sym__open_args1_repeat1] = STATE(456), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(457), + [sym_record_assignments] = STATE(445), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(705), + [anon_sym_quoteTerm] = ACTIONS(705), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(707), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_LBRACE_LBRACE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(713), + [sym_qualified_name] = ACTIONS(705), + [anon_sym_quote] = ACTIONS(705), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(705), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(715), + [sym__const_ellipsis] = ACTIONS(705), + [anon_sym_3] = ACTIONS(717), + [anon_sym_] = ACTIONS(719), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(725), + [anon_sym_Set] = ACTIONS(705), }, - [83] = { - [anon_sym_COLON] = ACTIONS(119), + [82] = { + [sym__newline] = ACTIONS(121), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), [anon_sym_where] = ACTIONS(119), - [anon_sym_DOT_DOT] = ACTIONS(121), - [sym_name] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), + }, + [83] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(460), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(727), }, [84] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(480), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(751), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [85] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_DOT_DOT] = ACTIONS(255), - [sym_name] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(461), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(727), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [86] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(481), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(751), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(462), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [87] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(483), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(753), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(463), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [88] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(484), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(755), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(465), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(729), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [89] = { - [sym__atom_no_curly] = STATE(486), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__atom_curly] = STATE(486), - [sym_atom] = STATE(479), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(137), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_3] = ACTIONS(141), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(466), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(731), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [90] = { + [sym__atom_curly] = STATE(92), + [sym__atom_no_curly] = STATE(92), + [sym_literal] = STATE(82), + [sym_record_assignments] = STATE(82), + [sym_atom] = STATE(459), + [anon_sym__] = ACTIONS(123), + [anon_sym_quoteTerm] = ACTIONS(123), + [anon_sym_LBRACE_LBRACE] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(131), + [sym_qualified_name] = ACTIONS(123), + [anon_sym_quote] = ACTIONS(123), + [anon_sym_3] = ACTIONS(133), + [anon_sym_Prop] = ACTIONS(123), + [sym__const_ellipsis] = ACTIONS(123), + [anon_sym_record] = ACTIONS(135), + [anon_sym_] = ACTIONS(137), + [anon_sym_unquote] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(141), + [aux_sym_string_token1] = ACTIONS(143), + [anon_sym_Set] = ACTIONS(123), + }, + [91] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(487), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(468), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [91] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(488), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [92] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(493), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(761), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [93] = { - [anon_sym_COLON] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - [anon_sym_LBRACE_LBRACE] = ACTIONS(765), - [anon_sym_] = ACTIONS(763), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(763), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(763), - [anon_sym_DOT_DOT] = ACTIONS(765), - [sym_name] = ACTIONS(763), + [sym__atom_curly] = STATE(92), + [sym__atom_no_curly] = STATE(92), + [sym_literal] = STATE(82), + [sym_record_assignments] = STATE(82), + [sym_atom] = STATE(469), + [aux_sym__open_args1_repeat1] = STATE(469), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(123), + [anon_sym_quoteTerm] = ACTIONS(123), + [anon_sym_LBRACE_LBRACE] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(123), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(131), + [sym_qualified_name] = ACTIONS(123), + [anon_sym_quote] = ACTIONS(123), + [anon_sym_3] = ACTIONS(133), + [anon_sym_Prop] = ACTIONS(123), + [sym__const_ellipsis] = ACTIONS(123), + [anon_sym_record] = ACTIONS(135), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(141), + [aux_sym_string_token1] = ACTIONS(143), + [anon_sym_Set] = ACTIONS(123), + [anon_sym_rewrite] = ACTIONS(419), + [anon_sym_module] = ACTIONS(419), }, [94] = { - [sym_typed_binding] = STATE(504), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(504), - [sym__typed_untyped_binding1] = STATE(503), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(504), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(779), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(737), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_where] = ACTIONS(737), + [anon_sym_rewrite] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), }, [95] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [sym_name] = ACTIONS(741), + }, + [96] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(472), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), + }, + [97] = { + [anon_sym_COLON] = ACTIONS(119), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_2] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, - [96] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(507), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), + [98] = { + [sym__atom_curly] = STATE(483), + [sym__atom_no_curly] = STATE(483), + [sym_literal] = STATE(473), + [aux_sym__open_args1_repeat1] = STATE(484), + [sym_record_assignments] = STATE(473), + [sym_atom] = STATE(484), + [sym__atoms1] = STATE(485), + [anon_sym__] = ACTIONS(743), + [anon_sym_quoteTerm] = ACTIONS(743), + [anon_sym_LBRACE_LBRACE] = ACTIONS(745), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(749), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(751), + [sym_qualified_name] = ACTIONS(743), + [anon_sym_quote] = ACTIONS(743), + [anon_sym_3] = ACTIONS(753), + [anon_sym_Prop] = ACTIONS(743), + [sym__const_ellipsis] = ACTIONS(743), + [anon_sym_record] = ACTIONS(755), + [anon_sym_] = ACTIONS(757), + [anon_sym_unquote] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [aux_sym_string_token1] = ACTIONS(763), + [anon_sym_Set] = ACTIONS(743), }, - [97] = { - [sym_primitive] = STATE(509), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(509), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(509), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(510), - [sym_field] = STATE(509), - [sym_abstract] = STATE(509), - [sym_private] = STATE(509), - [sym_function_clause] = STATE(509), - [sym_lhs_decl] = STATE(155), + [99] = { + [sym_primitive] = STATE(487), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(487), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(487), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(487), + [sym_abstract] = STATE(487), + [sym_private] = STATE(487), + [sym_function_clause] = STATE(487), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(509), + [sym_open] = STATE(487), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(488), + [sym_infix] = STATE(487), + [sym_data] = STATE(487), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(509), - [sym_data] = STATE(509), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(509), - [sym_macro] = STATE(509), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(509), - [sym_record_signature_only] = STATE(509), - [sym_atom] = STATE(158), + [sym_instance] = STATE(487), + [sym_macro] = STATE(487), + [sym_test] = STATE(487), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(487), + [sym_record_signature_only] = STATE(487), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(487), + [sym_syntax] = STATE(487), + [sym_record] = STATE(487), [sym_do] = STATE(43), - [sym_pattern] = STATE(509), - [sym_syntax] = STATE(509), - [sym_record] = STATE(509), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(509), - [sym_generalize] = STATE(509), - [sym_mutual] = STATE(509), - [sym_postulate] = STATE(509), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(789), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [98] = { - [sym_typed_binding] = STATE(518), - [sym_anonymous_name] = STATE(517), - [sym_untyped_binding] = STATE(518), - [sym__lambda_binding] = STATE(519), - [sym__binding_name] = STATE(520), - [anon_sym__] = ACTIONS(791), - [anon_sym_LBRACE_LBRACE] = ACTIONS(793), - [anon_sym_] = ACTIONS(795), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(801), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(803), - [sym_name] = ACTIONS(805), - }, - [99] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_2] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(487), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(487), + [sym_mutual] = STATE(487), + [sym_postulate] = STATE(487), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(765), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [100] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(521), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(787), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(490), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(767), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [101] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(491), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(807), }, [102] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(493), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(769), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [103] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(524), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(813), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_primitive] = STATE(494), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(494), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(494), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(494), + [sym_abstract] = STATE(494), + [sym_private] = STATE(494), + [sym_function_clause] = STATE(494), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(494), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(495), + [sym_infix] = STATE(494), + [sym_data] = STATE(494), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(494), + [sym_macro] = STATE(494), + [sym_test] = STATE(494), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(494), + [sym_record_signature_only] = STATE(494), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(494), + [sym_syntax] = STATE(494), + [sym_record] = STATE(494), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(494), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(494), + [sym_mutual] = STATE(494), + [sym_postulate] = STATE(494), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [104] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(525), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(771), }, [105] = { - [sym__atom_no_curly] = STATE(114), - [sym_literal] = STATE(95), - [sym_record_assignments] = STATE(95), - [sym__atom_curly] = STATE(114), - [sym_atom] = STATE(506), - [anon_sym__] = ACTIONS(149), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(817), + [sym_integer] = STATE(497), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(819), + [aux_sym_integer_token1] = ACTIONS(285), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_3] = ACTIONS(179), - [aux_sym_string_token1] = ACTIONS(175), - [anon_sym_Prop] = ACTIONS(149), }, [106] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(531), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(773), }, [107] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(533), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [108] = { - [sym__atom_no_curly] = STATE(544), - [sym_literal] = STATE(534), - [aux_sym__open_args1_repeat1] = STATE(545), - [sym__atom_curly] = STATE(544), - [sym_record_assignments] = STATE(534), - [sym_atom] = STATE(545), - [sym__atoms1] = STATE(546), - [anon_sym__] = ACTIONS(829), - [anon_sym_unquote] = ACTIONS(829), - [anon_sym_LBRACE_LBRACE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(833), - [anon_sym_Set] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(835), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(829), - [anon_sym_quoteTerm] = ACTIONS(829), - [anon_sym_quote] = ACTIONS(829), - [sym__const_ellipsis] = ACTIONS(829), - [anon_sym_record] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(841), - [anon_sym_LPAREN_PIPE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_3] = ACTIONS(847), - [aux_sym_string_token1] = ACTIONS(849), - [anon_sym_Prop] = ACTIONS(829), + [sym__module_name] = STATE(502), + [anon_sym_import] = ACTIONS(775), + [sym_qualified_name] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(779), }, [109] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(547), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_anonymous_name] = STATE(509), + [sym_typed_binding] = STATE(510), + [sym_untyped_binding] = STATE(510), + [sym__lambda_binding] = STATE(511), + [sym__binding_name] = STATE(512), + [anon_sym__] = ACTIONS(781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(783), + [anon_sym_] = ACTIONS(785), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(791), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(793), + [sym_name] = ACTIONS(795), }, [110] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(548), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(513), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(797), }, [111] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(851), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(514), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [112] = { + [sym__atom_curly] = STATE(119), + [sym__atom_no_curly] = STATE(119), + [sym_literal] = STATE(97), + [sym_record_assignments] = STATE(97), + [sym_atom] = STATE(492), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(641), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(179), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_Prop] = ACTIONS(149), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_record] = ACTIONS(799), + [anon_sym_] = ACTIONS(159), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_Set] = ACTIONS(149), }, [113] = { - [sym_literal] = STATE(550), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(560), - [aux_sym__open_args1_repeat1] = STATE(561), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(562), - [sym__atom_curly] = STATE(560), - [sym_record_assignments] = STATE(550), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(853), - [anon_sym_unquote] = ACTIONS(853), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(855), - [anon_sym_Set] = ACTIONS(853), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_LBRACE_LBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(853), - [anon_sym_quoteTerm] = ACTIONS(853), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(853), - [sym__const_ellipsis] = ACTIONS(853), - [anon_sym_record] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(865), - [anon_sym_LPAREN_PIPE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(871), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(853), - [anon_sym_3] = ACTIONS(873), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(517), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [114] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_2] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(518), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [115] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_literal] = STATE(95), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(114), - [sym_record_assignments] = STATE(95), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(875), - [anon_sym__] = ACTIONS(149), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(879), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__module_name] = STATE(502), + [sym_qualified_name] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [116] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_2] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_name] = ACTIONS(803), }, [117] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym_anonymous_name] = STATE(274), + [anon_sym__] = ACTIONS(403), + [sym_qualified_name] = ACTIONS(805), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(851), }, [118] = { - [sym_hole_name] = STATE(572), - [aux_sym_syntax_repeat1] = STATE(572), - [anon_sym_LBRACE] = ACTIONS(883), - [sym_name] = ACTIONS(885), - [anon_sym_LBRACE_LBRACE] = ACTIONS(887), - [anon_sym_] = ACTIONS(889), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(807), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(891), }, [119] = { - [sym__newline] = ACTIONS(893), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [120] = { - [anon_sym__] = ACTIONS(895), + [sym_literal] = STATE(522), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(532), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(533), + [sym__atom_no_curly] = STATE(533), + [sym_record_assignments] = STATE(522), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(809), + [anon_sym_quoteTerm] = ACTIONS(809), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(811), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_LBRACE_LBRACE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LPAREN_PIPE] = ACTIONS(817), + [sym_qualified_name] = ACTIONS(809), + [anon_sym_quote] = ACTIONS(809), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(809), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(819), + [sym__const_ellipsis] = ACTIONS(809), + [anon_sym_3] = ACTIONS(821), + [anon_sym_] = ACTIONS(823), [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(827), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(829), + [anon_sym_Set] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(895), }, [121] = { - [sym__binding_name] = STATE(575), - [aux_sym_infix_repeat1] = STATE(575), - [sym_anonymous_name] = STATE(574), - [anon_sym__] = ACTIONS(897), + [aux_sym_test_repeat1] = STATE(534), + [sym__newline] = ACTIONS(439), + [anon_sym_in] = ACTIONS(439), + [sym_test2] = ACTIONS(831), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(899), }, [122] = { - [sym__newline] = ACTIONS(901), + [sym_where_clause] = STATE(294), + [sym_rhs_decl] = STATE(295), + [sym__newline] = ACTIONS(445), + [anon_sym_in] = ACTIONS(445), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_where] = ACTIONS(449), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(901), + [anon_sym_module] = ACTIONS(451), }, [123] = { - [sym__field_name] = STATE(586), - [sym_type_sig_instance] = STATE(583), - [aux_sym__type_sig_block_repeat1] = STATE(584), - [aux_sym__arg_names_repeat1] = STATE(586), - [sym__arg_names] = STATE(585), - [sym__arg_name] = STATE(586), - [sym_type_sig] = STATE(583), - [anon_sym_LBRACE_LBRACE] = ACTIONS(903), - [anon_sym_overlap] = ACTIONS(905), - [anon_sym_] = ACTIONS(907), + [sym_rewrite_equations] = STATE(538), + [sym_with_expressions] = STATE(299), + [sym__newline] = ACTIONS(453), + [anon_sym_with] = ACTIONS(835), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(453), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_instance] = ACTIONS(913), - [anon_sym_DOT_DOT] = ACTIONS(915), - [sym_name] = ACTIONS(917), + [anon_sym_in] = ACTIONS(453), + [anon_sym_where] = ACTIONS(453), + [anon_sym_rewrite] = ACTIONS(837), + [anon_sym_module] = ACTIONS(453), }, [124] = { - [sym__newline] = ACTIONS(919), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(919), + [sym_primitive] = STATE(539), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(539), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(539), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(539), + [sym_abstract] = STATE(539), + [sym_private] = STATE(539), + [sym_function_clause] = STATE(539), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(539), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(539), + [sym_data] = STATE(539), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(539), + [sym_macro] = STATE(539), + [sym_test] = STATE(539), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(539), + [sym_record_signature_only] = STATE(539), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(539), + [sym_syntax] = STATE(539), + [sym_record] = STATE(539), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(539), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(539), + [sym_mutual] = STATE(539), + [sym_postulate] = STATE(539), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [125] = { - [sym__newline] = ACTIONS(921), + [sym_where_clause] = STATE(294), + [sym_rhs_defn] = STATE(295), + [sym__newline] = ACTIONS(445), + [anon_sym_in] = ACTIONS(445), + [anon_sym_where] = ACTIONS(449), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(839), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(921), + [anon_sym_module] = ACTIONS(451), }, [126] = { - [sym__newline] = ACTIONS(923), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(923), + [sym_rewrite_equations] = STATE(544), + [sym_with_expressions] = STATE(305), + [anon_sym_COLON] = ACTIONS(465), + [sym__newline] = ACTIONS(467), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(841), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(465), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(465), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(843), + [anon_sym_module] = ACTIONS(465), }, [127] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(587), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_literal] = STATE(522), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(533), + [sym__atom_no_curly] = STATE(533), + [aux_sym__open_args1_repeat1] = STATE(120), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(532), + [sym_record_assignments] = STATE(522), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(809), + [anon_sym_quoteTerm] = ACTIONS(809), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(811), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_LBRACE_LBRACE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(815), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(817), + [sym_qualified_name] = ACTIONS(809), + [anon_sym_quote] = ACTIONS(809), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(809), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(819), + [sym__const_ellipsis] = ACTIONS(809), + [anon_sym_3] = ACTIONS(821), + [anon_sym_] = ACTIONS(823), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(827), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(829), + [anon_sym_Set] = ACTIONS(809), }, [128] = { + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(925), + [anon_sym_where] = ACTIONS(119), + [anon_sym_DOT_DOT] = ACTIONS(121), + [sym_name] = ACTIONS(119), }, [129] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(546), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(845), + }, + [130] = { + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_] = ACTIONS(293), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(927), + [anon_sym_where] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(295), + [sym_name] = ACTIONS(293), }, - [130] = { - [anon_sym_COLON] = ACTIONS(119), - [sym__newline] = ACTIONS(121), + [131] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(547), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(845), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [132] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(548), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + }, + [133] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(549), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), + }, + [134] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(551), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(847), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [135] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(552), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(849), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [136] = { + [sym__atom_curly] = STATE(554), + [sym__atom_no_curly] = STATE(554), + [sym_literal] = STATE(128), + [sym_record_assignments] = STATE(128), + [sym_atom] = STATE(545), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(851), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [137] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(559), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(855), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [138] = { + [anon_sym_COLON] = ACTIONS(857), + [anon_sym__] = ACTIONS(857), + [anon_sym_LBRACE_LBRACE] = ACTIONS(859), + [anon_sym_] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(859), + [sym_name] = ACTIONS(857), + }, + [139] = { + [sym__binding_name] = STATE(571), + [sym_anonymous_name] = STATE(568), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(570), + [sym_untyped_binding] = STATE(570), + [sym_typed_binding] = STATE(570), + [sym__typed_untyped_binding1] = STATE(569), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(873), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), + }, + [140] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_4] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), - }, - [131] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(591), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(137), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(929), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [132] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(593), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(931), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [133] = { - [sym_primitive] = STATE(594), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(594), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(594), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(595), - [sym_field] = STATE(594), - [sym_abstract] = STATE(594), - [sym_private] = STATE(594), - [sym_function_clause] = STATE(594), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(594), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(594), - [sym_data] = STATE(594), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(594), - [sym_macro] = STATE(594), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(594), - [sym_record_signature_only] = STATE(594), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(594), - [sym_syntax] = STATE(594), - [sym_record] = STATE(594), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(594), - [sym_generalize] = STATE(594), - [sym_mutual] = STATE(594), - [sym_postulate] = STATE(594), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [134] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(933), - }, - [135] = { - [sym_integer] = STATE(597), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(183), - [sym_pragma] = ACTIONS(3), + [anon_sym_Set] = ACTIONS(119), }, - [136] = { - [sym_primitive] = STATE(599), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(599), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(599), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(600), - [sym_field] = STATE(599), - [sym_abstract] = STATE(599), - [sym_private] = STATE(599), - [sym_function_clause] = STATE(599), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(599), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(599), - [sym_data] = STATE(599), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(599), - [sym_macro] = STATE(599), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(599), - [sym_record_signature_only] = STATE(599), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(599), - [sym_syntax] = STATE(599), - [sym_record] = STATE(599), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(599), - [sym_generalize] = STATE(599), - [sym_mutual] = STATE(599), - [sym_postulate] = STATE(599), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(935), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [141] = { + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(573), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(881), }, - [137] = { - [sym_typed_binding] = STATE(608), - [sym_anonymous_name] = STATE(607), - [sym_untyped_binding] = STATE(608), - [sym__lambda_binding] = STATE(609), - [sym__binding_name] = STATE(610), - [anon_sym__] = ACTIONS(937), - [anon_sym_LBRACE_LBRACE] = ACTIONS(939), - [anon_sym_] = ACTIONS(941), + [142] = { [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(947), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(949), - [sym_name] = ACTIONS(951), + [sym_name] = ACTIONS(883), }, - [138] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [139] = { - [sym__module_name] = STATE(614), - [anon_sym_import] = ACTIONS(953), - [sym_qualified_name] = ACTIONS(955), - [sym_comment] = ACTIONS(3), + [143] = { [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(957), - }, - [140] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(615), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(959), - }, - [141] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(616), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(959), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [142] = { - [sym__atom_no_curly] = STATE(152), - [sym_literal] = STATE(130), - [sym_record_assignments] = STATE(130), - [sym__atom_curly] = STATE(152), - [sym_atom] = STATE(592), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_3] = ACTIONS(221), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_Prop] = ACTIONS(193), - }, - [143] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(618), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_4] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [144] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(620), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_anonymous_name] = STATE(581), + [sym_typed_binding] = STATE(582), + [sym_untyped_binding] = STATE(582), + [sym__lambda_binding] = STATE(583), + [sym__binding_name] = STATE(584), + [anon_sym__] = ACTIONS(885), + [anon_sym_LBRACE_LBRACE] = ACTIONS(887), + [anon_sym_] = ACTIONS(889), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(895), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(897), + [sym_name] = ACTIONS(899), }, [145] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(621), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(585), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(881), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [146] = { - [sym__atom_no_curly] = STATE(632), - [sym_literal] = STATE(622), - [aux_sym__open_args1_repeat1] = STATE(633), - [sym__atom_curly] = STATE(632), - [sym_record_assignments] = STATE(622), - [sym_atom] = STATE(633), - [sym__atoms1] = STATE(634), - [anon_sym__] = ACTIONS(965), - [anon_sym_unquote] = ACTIONS(965), - [anon_sym_LBRACE_LBRACE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(969), - [anon_sym_Set] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(971), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(965), - [anon_sym_quoteTerm] = ACTIONS(965), - [anon_sym_quote] = ACTIONS(965), - [sym__const_ellipsis] = ACTIONS(965), - [anon_sym_record] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_LPAREN_PIPE] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_3] = ACTIONS(983), - [aux_sym_string_token1] = ACTIONS(985), - [anon_sym_Prop] = ACTIONS(965), + [sym__atom_curly] = STATE(596), + [sym__atom_no_curly] = STATE(596), + [sym_literal] = STATE(586), + [aux_sym__open_args1_repeat1] = STATE(597), + [sym_record_assignments] = STATE(586), + [sym_atom] = STATE(597), + [sym__atoms1] = STATE(598), + [anon_sym__] = ACTIONS(901), + [anon_sym_quoteTerm] = ACTIONS(901), + [anon_sym_LBRACE_LBRACE] = ACTIONS(903), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(907), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(909), + [sym_qualified_name] = ACTIONS(901), + [anon_sym_quote] = ACTIONS(901), + [anon_sym_3] = ACTIONS(911), + [anon_sym_Prop] = ACTIONS(901), + [sym__const_ellipsis] = ACTIONS(901), + [anon_sym_record] = ACTIONS(913), + [anon_sym_] = ACTIONS(915), + [anon_sym_unquote] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(919), + [aux_sym_string_token1] = ACTIONS(921), + [anon_sym_Set] = ACTIONS(901), }, [147] = { - [sym__module_name] = STATE(614), - [sym_qualified_name] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(600), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(600), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(600), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(600), + [sym_abstract] = STATE(600), + [sym_private] = STATE(600), + [sym_function_clause] = STATE(600), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(600), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(601), + [sym_infix] = STATE(600), + [sym_data] = STATE(600), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(600), + [sym_macro] = STATE(600), + [sym_test] = STATE(600), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(600), + [sym_record_signature_only] = STATE(600), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(600), + [sym_syntax] = STATE(600), + [sym_record] = STATE(600), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(600), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(600), + [sym_mutual] = STATE(600), + [sym_postulate] = STATE(600), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(923), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [148] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(987), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(603), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(925), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [149] = { - [sym_anonymous_name] = STATE(272), - [anon_sym__] = ACTIONS(399), - [sym_qualified_name] = ACTIONS(989), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(604), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [150] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(991), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(605), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [151] = { - [sym_rewrite_equations] = STATE(640), - [sym_with_expressions] = STATE(277), - [sym__newline] = ACTIONS(405), - [anon_sym_with] = ACTIONS(993), - [anon_sym_in] = ACTIONS(405), - [anon_sym_EQ] = ACTIONS(405), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(606), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(405), - [anon_sym_rewrite] = ACTIONS(995), - [anon_sym_module] = ACTIONS(405), }, [152] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_literal] = STATE(140), + [sym_record_assignments] = STATE(140), + [sym_atom] = STATE(572), + [anon_sym__] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(931), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_3] = ACTIONS(239), + [anon_sym_Prop] = ACTIONS(217), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_record] = ACTIONS(233), + [anon_sym_] = ACTIONS(933), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), }, [153] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(651), - [sym__atom_curly] = STATE(652), - [sym_literal] = STATE(641), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(652), - [sym_record_assignments] = STATE(641), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(997), - [anon_sym_unquote] = ACTIONS(997), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(999), - [anon_sym_Set] = ACTIONS(997), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(997), - [anon_sym_quoteTerm] = ACTIONS(997), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(997), - [sym__const_ellipsis] = ACTIONS(997), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_LPAREN_PIPE] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(1015), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(997), - [anon_sym_3] = ACTIONS(1017), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(613), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [154] = { - [sym_primitive] = STATE(653), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(653), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(653), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(653), - [sym_abstract] = STATE(653), - [sym_private] = STATE(653), - [sym_function_clause] = STATE(653), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(653), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(653), - [sym_data] = STATE(653), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(653), - [sym_macro] = STATE(653), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(653), - [sym_record_signature_only] = STATE(653), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(653), - [sym_syntax] = STATE(653), - [sym_record] = STATE(653), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(653), - [sym_generalize] = STATE(653), - [sym_mutual] = STATE(653), - [sym_postulate] = STATE(653), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(614), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [155] = { - [sym_where_clause] = STATE(296), - [sym_rhs_decl] = STATE(297), - [sym__newline] = ACTIONS(445), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_where] = ACTIONS(449), - [anon_sym_in] = ACTIONS(445), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(451), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_4] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [156] = { - [sym_literal] = STATE(641), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(652), - [aux_sym__open_args1_repeat1] = STATE(153), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(651), - [sym__atom_curly] = STATE(652), - [sym_record_assignments] = STATE(641), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(997), - [anon_sym_unquote] = ACTIONS(997), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(999), - [anon_sym_Set] = ACTIONS(997), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(997), - [anon_sym_quoteTerm] = ACTIONS(997), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(997), - [sym__const_ellipsis] = ACTIONS(997), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_LPAREN_PIPE] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(1015), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(997), - [anon_sym_3] = ACTIONS(1017), + [anon_sym_4] = ACTIONS(685), }, [157] = { - [sym_where_clause] = STATE(296), - [sym_rhs_defn] = STATE(297), - [sym__newline] = ACTIONS(445), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(449), - [anon_sym_in] = ACTIONS(445), - [anon_sym_EQ] = ACTIONS(1021), + [sym_literal] = STATE(140), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(159), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_record_assignments] = STATE(140), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_3] = ACTIONS(239), + [anon_sym_] = ACTIONS(941), + [anon_sym__] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(451), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(947), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), }, [158] = { - [sym_rewrite_equations] = STATE(659), - [sym_with_expressions] = STATE(305), - [anon_sym_COLON] = ACTIONS(459), - [sym__newline] = ACTIONS(461), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(1023), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(459), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(459), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(1025), - [anon_sym_module] = ACTIONS(459), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(479), }, [159] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_rewrite] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_4] = ACTIONS(475), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [160] = { - [sym_do] = STATE(674), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(674), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(674), - [sym_lambda] = STATE(674), - [sym__application] = STATE(674), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(949), }, [161] = { - [sym_do] = STATE(688), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(688), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(688), - [sym_lambda] = STATE(688), - [sym__application] = STATE(688), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_literal] = STATE(620), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(630), + [sym__atom_no_curly] = STATE(630), + [aux_sym__open_args1_repeat1] = STATE(631), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(632), + [sym_record_assignments] = STATE(620), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(951), + [anon_sym_quoteTerm] = ACTIONS(951), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(953), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_LBRACE_LBRACE] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(959), + [sym_qualified_name] = ACTIONS(951), + [anon_sym_quote] = ACTIONS(951), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(951), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(961), + [sym__const_ellipsis] = ACTIONS(951), + [anon_sym_3] = ACTIONS(963), + [anon_sym_] = ACTIONS(965), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(971), + [anon_sym_Set] = ACTIONS(951), }, [162] = { - [sym_anonymous_name] = STATE(166), - [sym__binding_name] = STATE(693), - [anon_sym__] = ACTIONS(235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1079), - [anon_sym_] = ACTIONS(1081), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [sym_name] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [163] = { - [sym_do] = STATE(702), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(702), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(702), - [sym_lambda] = STATE(702), - [sym_open] = STATE(701), - [sym__application] = STATE(702), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(634), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(973), }, [164] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(726), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(726), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(726), - [sym__expr2] = STATE(726), - [sym_lambda] = STATE(726), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(975), }, [165] = { - [sym__lambda_where_block] = STATE(728), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(1135), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [166] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_rewrite] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_anonymous_name] = STATE(642), + [sym_typed_binding] = STATE(643), + [sym_untyped_binding] = STATE(643), + [sym__lambda_binding] = STATE(644), + [sym__binding_name] = STATE(645), + [anon_sym__] = ACTIONS(977), + [anon_sym_LBRACE_LBRACE] = ACTIONS(979), + [anon_sym_] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(987), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(989), + [sym_name] = ACTIONS(991), }, [167] = { - [sym_typed_binding] = STATE(167), - [sym_anonymous_name] = STATE(166), - [sym_untyped_binding] = STATE(167), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(169), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(235), - [anon_sym_LBRACE_LBRACE] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(249), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(251), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(241), - [anon_sym_LBRACE] = ACTIONS(1145), - [anon_sym_rewrite] = ACTIONS(1143), - [anon_sym_module] = ACTIONS(1143), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(646), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [168] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_module] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1147), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(1149), - [anon_sym_rewrite] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [169] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_rewrite] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym__atom_curly] = STATE(657), + [sym__atom_no_curly] = STATE(657), + [sym_literal] = STATE(647), + [aux_sym__open_args1_repeat1] = STATE(658), + [sym_record_assignments] = STATE(647), + [sym_atom] = STATE(658), + [sym__atoms1] = STATE(659), + [anon_sym__] = ACTIONS(997), + [anon_sym_quoteTerm] = ACTIONS(997), + [anon_sym_LBRACE_LBRACE] = ACTIONS(999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1005), + [sym_qualified_name] = ACTIONS(997), + [anon_sym_quote] = ACTIONS(997), + [anon_sym_3] = ACTIONS(1007), + [anon_sym_Prop] = ACTIONS(997), + [sym__const_ellipsis] = ACTIONS(997), + [anon_sym_record] = ACTIONS(1009), + [anon_sym_] = ACTIONS(1011), + [anon_sym_unquote] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1017), + [anon_sym_Set] = ACTIONS(997), }, [170] = { - [sym__newline] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_as] = ACTIONS(1157), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [sym_primitive] = STATE(661), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(661), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(661), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(661), + [sym_abstract] = STATE(661), + [sym_private] = STATE(661), + [sym_function_clause] = STATE(661), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(661), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(662), + [sym_infix] = STATE(661), + [sym_data] = STATE(661), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(661), + [sym_macro] = STATE(661), + [sym_test] = STATE(661), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(661), + [sym_record_signature_only] = STATE(661), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(661), + [sym_syntax] = STATE(661), + [sym_record] = STATE(661), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(661), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(661), + [sym_mutual] = STATE(661), + [sym_postulate] = STATE(661), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(1019), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [171] = { - [sym__module_name] = STATE(731), - [sym_qualified_name] = ACTIONS(259), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(664), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(1021), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [172] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(665), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1159), }, [173] = { - [sym_literal] = STATE(733), - [sym_atom] = STATE(750), - [sym__atom_curly] = STATE(747), - [sym_import_directive] = STATE(748), - [aux_sym_module_macro_repeat1] = STATE(748), - [sym__open_args1] = STATE(749), - [sym__atom_no_curly] = STATE(747), - [sym_record_assignments] = STATE(733), - [aux_sym__open_args1_repeat1] = STATE(750), - [sym__open_as] = STATE(751), - [sym__newline] = ACTIONS(1161), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_as] = ACTIONS(1171), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_3] = ACTIONS(1189), - [anon_sym_public] = ACTIONS(1191), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(666), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1023), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [174] = { - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(667), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), }, [175] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(753), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1193), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_literal] = STATE(162), + [sym_record_assignments] = STATE(162), + [sym_atom] = STATE(633), + [anon_sym__] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1027), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_3] = ACTIONS(261), + [anon_sym_Prop] = ACTIONS(249), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_record] = ACTIONS(255), + [anon_sym_] = ACTIONS(1029), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [176] = { - [sym_primitive] = STATE(755), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(755), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(755), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(756), - [sym_field] = STATE(755), - [sym_abstract] = STATE(755), - [sym_private] = STATE(755), - [sym_function_clause] = STATE(755), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(755), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(755), - [sym_data] = STATE(755), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(755), - [sym_macro] = STATE(755), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(755), - [sym_record_signature_only] = STATE(755), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(755), - [sym_syntax] = STATE(755), - [sym_record] = STATE(755), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(755), - [sym_generalize] = STATE(755), - [sym_mutual] = STATE(755), - [sym_postulate] = STATE(755), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1195), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(674), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [177] = { - [sym_typed_binding] = STATE(761), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(761), - [sym__lambda_binding] = STATE(762), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(675), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [178] = { - [anon_sym_SEMI] = ACTIONS(255), - [anon_sym_RPAREN] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_3] = ACTIONS(253), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [179] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(763), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(1193), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [180] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(685), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1205), + }, + [180] = { + [sym_literal] = STATE(162), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(182), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_record_assignments] = STATE(162), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_3] = ACTIONS(261), + [anon_sym_] = ACTIONS(1037), + [anon_sym__] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1041), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1043), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [181] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(766), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1207), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(479), }, [182] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(767), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_2] = ACTIONS(475), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [183] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(1217), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1045), }, [184] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(773), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_literal] = STATE(681), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(691), + [sym__atom_no_curly] = STATE(691), + [aux_sym__open_args1_repeat1] = STATE(692), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(693), + [sym_record_assignments] = STATE(681), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1047), + [anon_sym_quoteTerm] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(1049), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1055), + [sym_qualified_name] = ACTIONS(1047), + [anon_sym_quote] = ACTIONS(1047), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(1057), + [sym__const_ellipsis] = ACTIONS(1047), + [anon_sym_3] = ACTIONS(1059), + [anon_sym_] = ACTIONS(1061), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(1067), + [anon_sym_Set] = ACTIONS(1047), }, [185] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(775), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [aux_sym_syntax_repeat1] = STATE(699), + [sym_hole_name] = STATE(699), + [anon_sym_LBRACE] = ACTIONS(1069), + [sym_name] = ACTIONS(1071), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1073), + [anon_sym_] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1077), }, [186] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(787), - [sym__atom_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [sym_atom] = STATE(787), - [sym__atoms1] = STATE(788), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__newline] = ACTIONS(1079), + [anon_sym_in] = ACTIONS(1079), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [187] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(789), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [anon_sym__] = ACTIONS(1081), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1081), }, [188] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(790), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__binding_name] = STATE(702), + [sym_anonymous_name] = STATE(701), + [aux_sym_infix_repeat1] = STATE(702), + [anon_sym__] = ACTIONS(1083), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1085), }, [189] = { + [sym__newline] = ACTIONS(1087), + [anon_sym_in] = ACTIONS(1087), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1245), }, [190] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(641), + [aux_sym__arg_names_repeat1] = STATE(710), + [sym__field_name] = STATE(710), + [sym_type_sig_instance] = STATE(711), + [aux_sym__type_sig_block_repeat1] = STATE(712), + [sym__arg_names] = STATE(713), + [sym__arg_name] = STATE(710), + [sym_type_sig] = STATE(711), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1089), + [anon_sym_overlap] = ACTIONS(1091), + [anon_sym_] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1095), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_instance] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [sym_name] = ACTIONS(1103), }, [191] = { - [sym_literal] = STATE(792), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(802), - [aux_sym__open_args1_repeat1] = STATE(803), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym__newline] = ACTIONS(1105), + [anon_sym_in] = ACTIONS(1105), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [192] = { - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_3] = ACTIONS(439), + [sym__newline] = ACTIONS(1107), + [anon_sym_in] = ACTIONS(1107), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [193] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(192), - [sym_record_assignments] = STATE(174), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(1217), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1109), + [anon_sym_in] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [194] = { - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_RPAREN] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_3] = ACTIONS(463), + [sym_literal] = STATE(714), + [sym__do_stmt_where] = STATE(729), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__do_stmt] = STATE(729), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [aux_sym_do_repeat1] = STATE(733), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(734), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [sym_let] = STATE(43), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), }, [195] = { - [anon_sym_PIPE] = ACTIONS(455), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1143), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1245), }, [196] = { - [sym_primitive] = STATE(810), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(810), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(810), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(811), - [sym_field] = STATE(810), - [sym_abstract] = STATE(810), - [sym_private] = STATE(810), - [sym_function_clause] = STATE(810), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(810), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(810), - [sym_data] = STATE(810), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(810), - [sym_macro] = STATE(810), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(810), - [sym_record_signature_only] = STATE(810), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(810), - [sym_syntax] = STATE(810), - [sym_record] = STATE(810), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(810), - [sym_generalize] = STATE(810), - [sym_mutual] = STATE(810), - [sym_postulate] = STATE(810), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1279), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1147), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, [197] = { - [sym_typed_binding] = STATE(812), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(812), - [sym__lambda_binding] = STATE(813), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__module_name] = STATE(737), + [sym_qualified_name] = ACTIONS(299), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [198] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1281), + [sym_name] = ACTIONS(1149), }, [199] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [sym_literal] = STATE(739), + [sym__open_args1] = STATE(753), + [sym_import_directive] = STATE(756), + [sym_atom] = STATE(755), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_record_assignments] = STATE(739), + [aux_sym__open_args1_repeat1] = STATE(755), + [aux_sym_module_macro_repeat1] = STATE(756), + [sym__open_as] = STATE(757), + [sym__newline] = ACTIONS(1151), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1161), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(1181), }, [200] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(817), - [sym__atom_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [sym_atom] = STATE(817), - [sym__atoms1] = STATE(818), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_rewrite] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [201] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(819), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__expr2] = STATE(772), + [sym_do] = STATE(772), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(772), + [sym_lambda] = STATE(772), + [sym__application] = STATE(772), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [202] = { - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(786), + [sym_do] = STATE(786), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(786), + [sym_lambda] = STATE(786), + [sym__application] = STATE(786), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1287), }, [203] = { - [anon_sym_RPAREN] = ACTIONS(641), + [sym_anonymous_name] = STATE(207), + [sym__binding_name] = STATE(791), + [anon_sym__] = ACTIONS(303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1235), + [anon_sym_] = ACTIONS(1237), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1241), + [sym_name] = ACTIONS(319), }, [204] = { - [sym_literal] = STATE(792), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(802), - [aux_sym__open_args1_repeat1] = STATE(822), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym_open] = STATE(800), + [sym__expr2] = STATE(798), + [sym_do] = STATE(798), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(798), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(798), + [sym_lambda] = STATE(798), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [205] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(192), - [sym_record_assignments] = STATE(174), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(824), + [sym_do] = STATE(824), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(824), + [sym_let] = STATE(824), + [sym_lambda] = STATE(824), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), [anon_sym_] = ACTIONS(1269), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [206] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__lambda_where_block] = STATE(826), [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(1291), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1287), }, [207] = { - [sym_typed_binding] = STATE(504), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(504), - [sym__typed_untyped_binding1] = STATE(826), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(504), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(1291), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), [anon_sym_where] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_rewrite] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [208] = { + [sym_anonymous_name] = STATE(207), + [sym_typed_binding] = STATE(208), + [sym_untyped_binding] = STATE(208), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(210), [sym__newline] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1297), + [anon_sym__] = ACTIONS(303), + [anon_sym_LBRACE_LBRACE] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(311), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(317), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(319), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(307), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_rewrite] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [209] = { - [sym__newline] = ACTIONS(1299), + [sym__newline] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1303), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1299), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(1305), + [anon_sym_rewrite] = ACTIONS(1303), }, [210] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(827), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_rewrite] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [211] = { + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [anon_sym_PIPE_RPAREN] = ACTIONS(121), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, [212] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(829), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1301), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(830), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1311), }, [213] = { - [sym_primitive] = STATE(831), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(831), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(831), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(832), - [sym_field] = STATE(831), - [sym_abstract] = STATE(831), - [sym_private] = STATE(831), - [sym_function_clause] = STATE(831), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(831), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(831), - [sym_data] = STATE(831), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(831), - [sym_macro] = STATE(831), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(831), - [sym_record_signature_only] = STATE(831), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(831), - [sym_syntax] = STATE(831), - [sym_record] = STATE(831), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(831), - [sym_generalize] = STATE(831), - [sym_mutual] = STATE(831), - [sym_postulate] = STATE(831), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1303), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1313), }, [214] = { - [sym_typed_binding] = STATE(840), - [sym_anonymous_name] = STATE(839), - [sym_untyped_binding] = STATE(840), - [sym__lambda_binding] = STATE(841), - [sym__binding_name] = STATE(842), - [anon_sym__] = ACTIONS(1305), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), - [anon_sym_] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [sym_name] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), }, [215] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [anon_sym_PIPE_RPAREN] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(836), + [sym_untyped_binding] = STATE(836), + [sym__lambda_binding] = STATE(837), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [216] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(843), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(838), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [217] = { - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(850), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(850), + [sym__atoms1] = STATE(851), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1321), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [218] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(846), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1323), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_primitive] = STATE(853), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(853), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(853), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(853), + [sym_abstract] = STATE(853), + [sym_private] = STATE(853), + [sym_function_clause] = STATE(853), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(853), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(854), + [sym_infix] = STATE(853), + [sym_data] = STATE(853), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(853), + [sym_macro] = STATE(853), + [sym_test] = STATE(853), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(853), + [sym_record_signature_only] = STATE(853), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(853), + [sym_syntax] = STATE(853), + [sym_record] = STATE(853), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(853), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(853), + [sym_mutual] = STATE(853), + [sym_postulate] = STATE(853), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(1345), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [219] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(847), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(856), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(1347), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [220] = { - [sym__atom_no_curly] = STATE(229), - [sym_literal] = STATE(211), - [sym_record_assignments] = STATE(211), - [sym__atom_curly] = STATE(229), - [sym_atom] = STATE(828), - [anon_sym__] = ACTIONS(313), - [anon_sym_unquote] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1327), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(1329), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(857), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [anon_sym_] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_3] = ACTIONS(343), - [aux_sym_string_token1] = ACTIONS(339), - [anon_sym_Prop] = ACTIONS(313), }, [221] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(853), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(858), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [222] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(855), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(859), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [223] = { - [sym__atom_no_curly] = STATE(866), - [sym_literal] = STATE(856), - [aux_sym__open_args1_repeat1] = STATE(867), - [sym__atom_curly] = STATE(866), - [sym_record_assignments] = STATE(856), - [sym_atom] = STATE(867), - [sym__atoms1] = STATE(868), - [anon_sym__] = ACTIONS(1339), - [anon_sym_unquote] = ACTIONS(1339), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1343), - [anon_sym_Set] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1345), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1339), - [anon_sym_quoteTerm] = ACTIONS(1339), - [anon_sym_quote] = ACTIONS(1339), - [sym__const_ellipsis] = ACTIONS(1339), - [anon_sym_record] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1339), - [anon_sym_] = ACTIONS(1349), - [anon_sym_DOT] = ACTIONS(1351), - [anon_sym_LPAREN_PIPE] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_3] = ACTIONS(1357), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_Prop] = ACTIONS(1339), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1355), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [224] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(869), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(866), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [225] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(870), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(867), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [226] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), }, [227] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(641), + [anon_sym_RBRACE_RBRACE] = ACTIONS(685), }, [228] = { - [sym_literal] = STATE(872), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(882), - [aux_sym__open_args1_repeat1] = STATE(883), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(884), - [sym__atom_curly] = STATE(882), - [sym_record_assignments] = STATE(872), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1363), - [anon_sym_unquote] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(1365), - [anon_sym_Set] = ACTIONS(1363), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1363), - [anon_sym_quoteTerm] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1363), - [sym__const_ellipsis] = ACTIONS(1363), - [anon_sym_record] = ACTIONS(1371), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_] = ACTIONS(1373), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN_PIPE] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(1381), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(1363), - [anon_sym_3] = ACTIONS(1383), + [sym_literal] = STATE(211), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(230), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_record_assignments] = STATE(211), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_] = ACTIONS(1363), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1369), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [229] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [anon_sym_PIPE_RPAREN] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__const_right_arrow] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(479), }, [230] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_literal] = STATE(211), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(229), - [sym_record_assignments] = STATE(211), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(325), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [anon_sym_] = ACTIONS(1385), - [anon_sym__] = ACTIONS(313), - [anon_sym_unquote] = ACTIONS(313), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_RBRACE_RBRACE] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), }, [231] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [anon_sym_PIPE_RPAREN] = ACTIONS(1277), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym__const_right_arrow] = ACTIONS(1371), }, [232] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1361), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(884), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [233] = { - [sym_primitive] = STATE(890), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(890), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(890), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(891), - [sym_field] = STATE(890), - [sym_abstract] = STATE(890), - [sym_private] = STATE(890), - [sym_function_clause] = STATE(890), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(890), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(890), - [sym_data] = STATE(890), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(890), - [sym_macro] = STATE(890), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(890), - [sym_record_signature_only] = STATE(890), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(890), - [sym_syntax] = STATE(890), - [sym_record] = STATE(890), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(890), - [sym_generalize] = STATE(890), - [sym_mutual] = STATE(890), - [sym_postulate] = STATE(890), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1393), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1395), }, [234] = { - [sym_typed_binding] = STATE(892), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(892), - [sym__lambda_binding] = STATE(893), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1203), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(887), + [sym_untyped_binding] = STATE(887), + [sym__lambda_binding] = STATE(888), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [235] = { - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(890), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(890), + [sym__atoms1] = STATE(891), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1395), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [236] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_primitive] = STATE(893), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(893), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(893), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(893), + [sym_abstract] = STATE(893), + [sym_private] = STATE(893), + [sym_function_clause] = STATE(893), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(893), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(894), + [sym_infix] = STATE(893), + [sym_data] = STATE(893), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(893), + [sym_macro] = STATE(893), + [sym_test] = STATE(893), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(893), + [sym_record_signature_only] = STATE(893), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(893), + [sym_syntax] = STATE(893), + [sym_record] = STATE(893), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(893), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(893), + [sym_mutual] = STATE(893), + [sym_postulate] = STATE(893), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(1399), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [237] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1215), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1355), + [anon_sym_unquote] = ACTIONS(321), [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [238] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(897), - [sym__atom_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [sym_atom] = STATE(897), - [sym__atoms1] = STATE(898), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(896), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [239] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(899), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), - }, - [240] = { + [anon_sym_RPAREN] = ACTIONS(685), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1405), + }, + [240] = { + [sym_literal] = STATE(211), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(230), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_record_assignments] = STATE(211), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_] = ACTIONS(1363), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1369), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [241] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1407), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(479), }, [242] = { - [sym_literal] = STATE(792), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(802), - [aux_sym__open_args1_repeat1] = STATE(903), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1403), }, [243] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(192), - [sym_record_assignments] = STATE(174), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(899), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [244] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1405), + [sym__binding_name] = STATE(571), + [sym_anonymous_name] = STATE(568), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(570), + [sym_untyped_binding] = STATE(570), + [sym_typed_binding] = STATE(570), + [sym__typed_untyped_binding1] = STATE(903), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1409), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), }, [245] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), + [sym__newline] = ACTIONS(1413), + [anon_sym_in] = ACTIONS(1413), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), }, [246] = { - [sym_do] = STATE(904), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(904), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(904), - [sym_lambda] = STATE(904), - [sym__application] = STATE(904), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1415), + [anon_sym_in] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [247] = { - [sym_do] = STATE(905), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(905), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(905), - [sym_lambda] = STATE(905), - [sym__application] = STATE(905), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(904), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(213), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [248] = { - [sym_anonymous_name] = STATE(251), - [sym__binding_name] = STATE(910), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1411), - [anon_sym_] = ACTIONS(1413), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1417), - [sym_name] = ACTIONS(373), + [sym_name] = ACTIONS(1417), }, [249] = { - [sym_do] = STATE(912), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(912), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(912), - [sym_lambda] = STATE(912), - [sym_open] = STATE(911), - [sym__application] = STATE(912), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(906), + [sym_untyped_binding] = STATE(906), + [sym__lambda_binding] = STATE(907), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1321), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [250] = { - [sym_do] = STATE(915), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(915), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(915), - [sym_lambda] = STATE(915), - [sym__application] = STATE(915), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(909), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(909), + [sym__atoms1] = STATE(910), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [251] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1139), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - }, - [252] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1421), + [sym_primitive] = STATE(912), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(912), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(912), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(912), + [sym_abstract] = STATE(912), + [sym_private] = STATE(912), + [sym_function_clause] = STATE(912), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(912), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(913), + [sym_infix] = STATE(912), + [sym_data] = STATE(912), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(912), + [sym_macro] = STATE(912), + [sym_test] = STATE(912), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(912), + [sym_record_signature_only] = STATE(912), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(912), + [sym_syntax] = STATE(912), + [sym_record] = STATE(912), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(912), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(912), + [sym_mutual] = STATE(912), + [sym_postulate] = STATE(912), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(1421), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [252] = { + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1355), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [253] = { - [sym_typed_binding] = STATE(917), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(917), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(917), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym__const_right_arrow] = ACTIONS(1423), - [sym_name] = ACTIONS(373), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(915), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [254] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), [anon_sym_QMARK] = ACTIONS(1425), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [255] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1429), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1151), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1153), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), }, [256] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_literal] = STATE(211), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(230), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_record_assignments] = STATE(211), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_] = ACTIONS(1363), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1369), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [257] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(936), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1447), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(479), }, [258] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1431), }, [259] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(937), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1447), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(919), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [260] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(939), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1449), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1185), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [261] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(940), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1451), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__expr2] = STATE(920), + [sym_do] = STATE(920), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(920), + [sym_lambda] = STATE(920), + [sym__application] = STATE(920), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [262] = { - [sym__atom_no_curly] = STATE(266), - [sym_literal] = STATE(256), - [sym_record_assignments] = STATE(256), - [sym__atom_curly] = STATE(266), - [sym_atom] = STATE(935), - [anon_sym__] = ACTIONS(375), - [anon_sym_unquote] = ACTIONS(375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(379), - [anon_sym_Set] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(381), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(375), - [anon_sym_quoteTerm] = ACTIONS(375), - [anon_sym_quote] = ACTIONS(375), - [sym__const_ellipsis] = ACTIONS(375), - [anon_sym_record] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_LPAREN_PIPE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_3] = ACTIONS(393), - [aux_sym_string_token1] = ACTIONS(395), - [anon_sym_Prop] = ACTIONS(375), + [sym__expr2] = STATE(921), + [sym_do] = STATE(921), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(921), + [sym_lambda] = STATE(921), + [sym__application] = STATE(921), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [263] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(941), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_anonymous_name] = STATE(266), + [sym__binding_name] = STATE(926), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1435), + [anon_sym_] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1441), + [sym_name] = ACTIONS(399), }, [264] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(943), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_open] = STATE(928), + [sym__expr2] = STATE(927), + [sym_do] = STATE(927), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(927), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(927), + [sym_lambda] = STATE(927), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [265] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(944), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__expr2] = STATE(931), + [sym_do] = STATE(931), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(931), + [sym_lambda] = STATE(931), + [sym__application] = STATE(931), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [266] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1295), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [267] = { - [sym__atom_no_curly] = STATE(266), - [sym_literal] = STATE(256), - [sym_record_assignments] = STATE(256), - [sym__atom_curly] = STATE(266), - [sym_atom] = STATE(945), - [aux_sym__open_args1_repeat1] = STATE(945), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(375), - [anon_sym_unquote] = ACTIONS(375), - [anon_sym_LBRACE_LBRACE] = ACTIONS(377), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(379), - [anon_sym_Set] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(381), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(375), - [anon_sym_quoteTerm] = ACTIONS(375), - [anon_sym_quote] = ACTIONS(375), - [sym__const_ellipsis] = ACTIONS(375), - [anon_sym_record] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_with] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_LPAREN_PIPE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_3] = ACTIONS(393), - [aux_sym_string_token1] = ACTIONS(395), - [anon_sym_Prop] = ACTIONS(375), - [anon_sym_rewrite] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), - }, - [268] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_with] = ACTIONS(1457), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1457), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_rewrite] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [sym__const_right_arrow] = ACTIONS(1445), + }, + [268] = { + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(933), + [sym_untyped_binding] = STATE(933), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(933), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym__const_right_arrow] = ACTIONS(1447), + [sym_name] = ACTIONS(399), }, [269] = { - [sym_typed_binding] = STATE(504), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(504), - [sym__typed_untyped_binding1] = STATE(948), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(504), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(1461), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(1293), + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), }, [270] = { - [sym_typed_binding] = STATE(959), - [sym_anonymous_name] = STATE(957), - [sym_untyped_binding] = STATE(959), - [sym__typed_untyped_binding1] = STATE(958), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(959), - [sym__binding_name] = STATE(960), - [anon_sym__] = ACTIONS(1463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1465), - [anon_sym_] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1481), - }, - [271] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym_name] = ACTIONS(1029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1309), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + }, + [271] = { + [sym__binding_name] = STATE(571), + [sym_anonymous_name] = STATE(568), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(570), + [sym_untyped_binding] = STATE(570), + [sym_typed_binding] = STATE(570), + [sym__typed_untyped_binding1] = STATE(952), + [anon_sym_COLON] = ACTIONS(1471), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1409), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), }, [272] = { - [sym_typed_binding] = STATE(968), - [sym_anonymous_name] = STATE(966), - [sym_untyped_binding] = STATE(968), - [sym__typed_untyped_binding1] = STATE(967), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(968), - [sym__binding_name] = STATE(969), - [anon_sym__] = ACTIONS(399), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1483), - [anon_sym_] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [sym_name] = ACTIONS(1495), + [sym__binding_name] = STATE(964), + [sym_anonymous_name] = STATE(961), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(963), + [sym_untyped_binding] = STATE(963), + [sym_typed_binding] = STATE(963), + [sym__typed_untyped_binding1] = STATE(962), + [anon_sym__] = ACTIONS(1473), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1475), + [anon_sym_] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1491), }, [273] = { - [anon_sym_3] = ACTIONS(1497), - [anon_sym_pattern] = ACTIONS(1497), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(1497), - [anon_sym_quoteGoal] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [sym_qualified_name] = ACTIONS(1497), - [anon_sym_quoteTerm] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_quote] = ACTIONS(1497), - [sym__const_ellipsis] = ACTIONS(1497), - [anon_sym_record] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_] = ACTIONS(1497), - [anon_sym_syntax] = ACTIONS(1497), - [anon_sym_instance] = ACTIONS(1497), - [anon_sym_infix] = ACTIONS(1497), - [anon_sym_macro] = ACTIONS(1497), - [anon_sym_field] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_generalize] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1497), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1499), - [sym__const_lambda] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [aux_sym_integer_token1] = ACTIONS(1497), - [anon_sym_open] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_Set] = ACTIONS(1497), - [anon_sym_unquote] = ACTIONS(1497), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(1497), - [anon_sym_infixr] = ACTIONS(1497), - [anon_sym_infixl] = ACTIONS(1497), - [anon_sym_postulate] = ACTIONS(1497), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_mutual] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_LPAREN_PIPE] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1497), - [sym__const_forall] = ACTIONS(1497), - [aux_sym_string_token1] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_data] = ACTIONS(1497), - [anon_sym_tactic] = ACTIONS(1497), - [anon_sym_Prop] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - }, - [274] = { - [sym_literal] = STATE(970), - [sym__with_expr] = STATE(987), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(986), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(988), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(989), - [sym__atom_curly] = STATE(986), - [sym_record_assignments] = STATE(970), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1501), - [anon_sym_unquote] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(1507), - [anon_sym_Set] = ACTIONS(1501), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1501), - [anon_sym_quoteTerm] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1501), - [sym__const_ellipsis] = ACTIONS(1501), - [anon_sym_record] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_LPAREN_PIPE] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(1527), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(1501), - [anon_sym_3] = ACTIONS(1531), - }, - [275] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(1006), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), - }, - [276] = { - [sym_with_expressions] = STATE(1012), - [sym__newline] = ACTIONS(1565), - [anon_sym_where] = ACTIONS(1565), - [anon_sym_with] = ACTIONS(407), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1565), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym_name] = ACTIONS(1185), }, - [277] = { - [sym__newline] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_where] = ACTIONS(1565), + [274] = { + [sym__binding_name] = STATE(973), + [sym_anonymous_name] = STATE(970), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(972), + [sym_untyped_binding] = STATE(972), + [sym_typed_binding] = STATE(972), + [sym__typed_untyped_binding1] = STATE(971), + [anon_sym__] = ACTIONS(403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1493), + [anon_sym_] = ACTIONS(1495), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1565), + [anon_sym_where] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [sym_name] = ACTIONS(1505), }, - [278] = { - [sym_primitive] = STATE(35), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(35), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(35), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(278), - [sym_field] = STATE(35), - [sym_abstract] = STATE(35), - [sym_private] = STATE(35), - [sym_function_clause] = STATE(35), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(35), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(35), - [sym_data] = STATE(35), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(35), - [sym_macro] = STATE(35), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(35), - [sym_record_signature_only] = STATE(35), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(35), - [sym_syntax] = STATE(35), - [sym_record] = STATE(35), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(35), - [sym_generalize] = STATE(35), - [sym_mutual] = STATE(35), - [sym_postulate] = STATE(35), - [anon_sym_3] = ACTIONS(1567), - [anon_sym_pattern] = ACTIONS(1570), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(1573), - [anon_sym_quoteGoal] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1579), - [sym_qualified_name] = ACTIONS(1582), - [anon_sym_quoteTerm] = ACTIONS(1582), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_quote] = ACTIONS(1582), - [sym__const_ellipsis] = ACTIONS(1582), - [anon_sym_record] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1582), - [anon_sym_] = ACTIONS(1591), - [anon_sym_syntax] = ACTIONS(1594), - [anon_sym_instance] = ACTIONS(1597), - [anon_sym_infix] = ACTIONS(1600), - [anon_sym_macro] = ACTIONS(1603), - [anon_sym_field] = ACTIONS(1606), - [anon_sym_private] = ACTIONS(1609), - [anon_sym_generalize] = ACTIONS(1612), - [anon_sym__] = ACTIONS(1582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1615), - [sym__const_lambda] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1621), - [aux_sym_integer_token1] = ACTIONS(1624), - [anon_sym_open] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_Set] = ACTIONS(1582), - [anon_sym_unquote] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(1633), - [anon_sym_infixr] = ACTIONS(1600), - [anon_sym_infixl] = ACTIONS(1600), - [anon_sym_postulate] = ACTIONS(1636), - [ts_builtin_sym_end] = ACTIONS(1499), - [anon_sym_mutual] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1642), - [anon_sym_LPAREN_PIPE] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1648), - [sym__const_forall] = ACTIONS(1651), - [aux_sym_string_token1] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_data] = ACTIONS(1660), - [anon_sym_tactic] = ACTIONS(1663), - [anon_sym_Prop] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1666), + [275] = { + [anon_sym_pattern] = ACTIONS(1507), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(1507), + [anon_sym_abstract] = ACTIONS(1507), + [anon_sym_LPAREN_PIPE] = ACTIONS(1509), + [sym_qualified_name] = ACTIONS(1507), + [anon_sym_quote] = ACTIONS(1507), + [anon_sym_tactic] = ACTIONS(1507), + [anon_sym_Prop] = ACTIONS(1507), + [sym__const_ellipsis] = ACTIONS(1507), + [anon_sym_record] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_3] = ACTIONS(1507), + [anon_sym_] = ACTIONS(1507), + [anon_sym_syntax] = ACTIONS(1507), + [anon_sym_instance] = ACTIONS(1507), + [anon_sym_infix] = ACTIONS(1507), + [sym_test2] = ACTIONS(1507), + [anon_sym_macro] = ACTIONS(1507), + [anon_sym_field] = ACTIONS(1507), + [anon_sym_private] = ACTIONS(1507), + [anon_sym_generalize] = ACTIONS(1507), + [anon_sym__] = ACTIONS(1507), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1509), + [sym__const_lambda] = ACTIONS(1507), + [anon_sym_quoteGoal] = ACTIONS(1507), + [aux_sym_integer_token1] = ACTIONS(1507), + [anon_sym_open] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_quoteTerm] = ACTIONS(1507), + [anon_sym_codata] = ACTIONS(1507), + [anon_sym_infixr] = ACTIONS(1507), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(1507), + [anon_sym_postulate] = ACTIONS(1507), + [ts_builtin_sym_end] = ACTIONS(1509), + [anon_sym_mutual] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_unquote] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [sym__const_forall] = ACTIONS(1507), + [aux_sym_string_token1] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1507), + [anon_sym_data] = ACTIONS(1507), + [anon_sym_Set] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), }, - [279] = { + [276] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_rewrite] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, + [277] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), + }, + [278] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(975), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1511), + }, + [279] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(976), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(1511), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, [280] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(977), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [281] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1014), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1669), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(979), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(1513), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [282] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1015), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1669), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(980), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [283] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1017), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1671), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(981), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(1515), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [284] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1018), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [285] = { - [sym__atom_no_curly] = STATE(290), - [sym_literal] = STATE(279), - [sym_record_assignments] = STATE(279), - [sym__atom_curly] = STATE(290), - [sym_atom] = STATE(1013), + [sym__atom_curly] = STATE(288), + [sym__atom_no_curly] = STATE(288), + [sym_literal] = STATE(276), + [sym_record_assignments] = STATE(276), + [sym_atom] = STATE(974), [anon_sym__] = ACTIONS(415), - [anon_sym_unquote] = ACTIONS(415), - [anon_sym_LBRACE_LBRACE] = ACTIONS(419), + [anon_sym_quoteTerm] = ACTIONS(415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(421), [sym_comment] = ACTIONS(3), [aux_sym_integer_token1] = ACTIONS(417), - [anon_sym_Set] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(423), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(425), [sym_qualified_name] = ACTIONS(415), - [anon_sym_quoteTerm] = ACTIONS(415), [anon_sym_quote] = ACTIONS(415), - [sym__const_ellipsis] = ACTIONS(415), - [anon_sym_record] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [anon_sym_LPAREN_PIPE] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_3] = ACTIONS(437), - [aux_sym_string_token1] = ACTIONS(435), + [anon_sym_3] = ACTIONS(429), [anon_sym_Prop] = ACTIONS(415), + [sym__const_ellipsis] = ACTIONS(415), + [anon_sym_record] = ACTIONS(427), + [anon_sym_] = ACTIONS(431), + [anon_sym_unquote] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [aux_sym_string_token1] = ACTIONS(437), + [anon_sym_Set] = ACTIONS(415), }, - [286] = { + [285] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1019), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(983), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [286] = { + [sym__newline] = ACTIONS(1519), + [anon_sym_COLON] = ACTIONS(1519), + [anon_sym_with] = ACTIONS(1519), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1519), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1519), + [anon_sym_where] = ACTIONS(1519), + [anon_sym_rewrite] = ACTIONS(1519), + [anon_sym_module] = ACTIONS(1519), }, [287] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1021), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(475), + [anon_sym_module] = ACTIONS(475), }, [288] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1022), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [289] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(289), + [aux_sym__open_args1_repeat1] = STATE(289), + [anon_sym__] = ACTIONS(1521), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1524), + [sym__const_lambda] = ACTIONS(1527), + [anon_sym_quoteGoal] = ACTIONS(1527), + [aux_sym_integer_token1] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1521), + [anon_sym_quoteTerm] = ACTIONS(1521), + [anon_sym_LPAREN_PIPE] = ACTIONS(1535), + [sym_qualified_name] = ACTIONS(1521), + [anon_sym_quote] = ACTIONS(1521), + [anon_sym_tactic] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(1521), + [sym__const_ellipsis] = ACTIONS(1521), + [anon_sym_record] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_3] = ACTIONS(1541), + [anon_sym_] = ACTIONS(1544), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1547), + [anon_sym_unquote] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1550), + [sym__const_forall] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(1553), + [anon_sym_Set] = ACTIONS(1521), + [sym_pragma] = ACTIONS(3), }, [290] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [aux_sym_test_repeat1] = STATE(290), + [sym__newline] = ACTIONS(1556), + [sym_test2] = ACTIONS(1558), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [291] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(291), - [aux_sym__open_args1_repeat1] = STATE(291), - [anon_sym__] = ACTIONS(1677), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1680), - [sym__const_lambda] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(1685), - [anon_sym_Set] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_quoteGoal] = ACTIONS(1683), - [anon_sym_unquote] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(1001), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1677), - [anon_sym_quoteTerm] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(1677), - [sym__const_ellipsis] = ACTIONS(1677), - [anon_sym_record] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1677), - [anon_sym_] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1697), - [anon_sym_LPAREN_PIPE] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1703), - [sym__const_forall] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(1706), - [anon_sym_tactic] = ACTIONS(1683), - [anon_sym_Prop] = ACTIONS(1677), - [anon_sym_3] = ACTIONS(1709), }, [292] = { - [sym__newline] = ACTIONS(1712), - [anon_sym_COLON] = ACTIONS(1712), - [anon_sym_with] = ACTIONS(1712), + [sym__declaration_block] = STATE(1007), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1712), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1712), - [anon_sym_where] = ACTIONS(1712), - [anon_sym_rewrite] = ACTIONS(1712), - [anon_sym_module] = ACTIONS(1712), }, [293] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(1040), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [sym_anonymous_name] = STATE(1009), + [anon_sym__] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1595), }, [294] = { - [sym__declaration_block] = STATE(1046), + [sym__newline] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), }, [295] = { - [sym_anonymous_name] = STATE(1048), - [anon_sym__] = ACTIONS(1746), + [sym_where_clause] = STATE(1010), + [sym__newline] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), + [anon_sym_where] = ACTIONS(449), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1748), + [anon_sym_module] = ACTIONS(451), }, [296] = { - [sym__newline] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1750), + [sym_literal] = STATE(1011), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1026), + [sym__atom_no_curly] = STATE(1026), + [aux_sym__open_args1_repeat1] = STATE(1027), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1028), + [sym_record_assignments] = STATE(1011), + [sym__with_expr] = STATE(1029), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1599), + [anon_sym_quoteTerm] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(1603), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1599), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1611), + [sym_qualified_name] = ACTIONS(1599), + [anon_sym_quote] = ACTIONS(1599), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(1617), + [sym__const_ellipsis] = ACTIONS(1599), + [anon_sym_3] = ACTIONS(1619), + [anon_sym_] = ACTIONS(1621), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(1629), + [anon_sym_Set] = ACTIONS(1599), }, [297] = { - [sym_where_clause] = STATE(1049), - [sym__newline] = ACTIONS(1750), - [anon_sym_where] = ACTIONS(449), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(1047), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_module] = ACTIONS(451), }, [298] = { - [anon_sym__] = ACTIONS(1752), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1754), - [sym__const_lambda] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [aux_sym_integer_token1] = ACTIONS(1752), - [anon_sym_Set] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_quoteGoal] = ACTIONS(1752), - [anon_sym_unquote] = ACTIONS(1752), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1752), - [anon_sym_quoteTerm] = ACTIONS(1752), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_quote] = ACTIONS(1752), - [sym__const_ellipsis] = ACTIONS(1752), - [anon_sym_record] = ACTIONS(1752), - [anon_sym_QMARK] = ACTIONS(1752), - [anon_sym_] = ACTIONS(1752), - [anon_sym_DOT] = ACTIONS(1752), - [anon_sym_LPAREN_PIPE] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1752), - [sym__const_forall] = ACTIONS(1752), - [aux_sym_string_token1] = ACTIONS(1754), - [anon_sym_tactic] = ACTIONS(1752), - [anon_sym_Prop] = ACTIONS(1752), - [anon_sym_3] = ACTIONS(1752), + [sym_with_expressions] = STATE(1053), + [sym__newline] = ACTIONS(1663), + [anon_sym_where] = ACTIONS(1663), + [anon_sym_with] = ACTIONS(455), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1663), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(1663), }, [299] = { - [sym_literal] = STATE(776), - [sym_atom] = STATE(1051), - [sym__atom_curly] = STATE(786), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__atom_no_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(1051), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1759), - [sym__const_lambda] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [aux_sym_integer_token1] = ACTIONS(1762), - [anon_sym_Set] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_quoteGoal] = ACTIONS(1752), - [anon_sym_unquote] = ACTIONS(1756), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1756), - [anon_sym_quoteTerm] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1752), - [anon_sym_quote] = ACTIONS(1756), - [sym__const_ellipsis] = ACTIONS(1756), - [anon_sym_record] = ACTIONS(1768), - [anon_sym_QMARK] = ACTIONS(1756), - [anon_sym_] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_LPAREN_PIPE] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1780), - [sym__const_forall] = ACTIONS(1752), - [aux_sym_string_token1] = ACTIONS(1783), - [anon_sym_tactic] = ACTIONS(1752), - [anon_sym_Prop] = ACTIONS(1756), - [anon_sym_3] = ACTIONS(1786), + [sym__newline] = ACTIONS(1663), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_where] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1663), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(1663), }, [300] = { - [sym__newline] = ACTIONS(1789), - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1789), + [sym_primitive] = STATE(35), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(35), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(35), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(35), + [sym_abstract] = STATE(35), + [sym_private] = STATE(35), + [sym_function_clause] = STATE(35), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(35), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(300), + [sym_infix] = STATE(35), + [sym_data] = STATE(35), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(35), + [sym_macro] = STATE(35), + [sym_test] = STATE(35), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(35), + [sym_record_signature_only] = STATE(35), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(35), + [sym_syntax] = STATE(35), + [sym_record] = STATE(35), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(35), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(35), + [sym_mutual] = STATE(35), + [sym_postulate] = STATE(35), + [anon_sym_pattern] = ACTIONS(1665), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1789), - [anon_sym_where] = ACTIONS(1789), - [anon_sym_rewrite] = ACTIONS(1789), - [anon_sym_module] = ACTIONS(1789), + [anon_sym_primitive] = ACTIONS(1668), + [anon_sym_abstract] = ACTIONS(1671), + [anon_sym_LPAREN_PIPE] = ACTIONS(1674), + [sym_qualified_name] = ACTIONS(1677), + [anon_sym_quote] = ACTIONS(1677), + [anon_sym_tactic] = ACTIONS(1680), + [anon_sym_Prop] = ACTIONS(1677), + [sym__const_ellipsis] = ACTIONS(1677), + [anon_sym_record] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_3] = ACTIONS(1689), + [anon_sym_] = ACTIONS(1692), + [anon_sym_syntax] = ACTIONS(1695), + [anon_sym_instance] = ACTIONS(1698), + [anon_sym_infix] = ACTIONS(1701), + [sym_test2] = ACTIONS(1704), + [anon_sym_macro] = ACTIONS(1707), + [anon_sym_field] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1713), + [anon_sym_generalize] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1719), + [sym__const_lambda] = ACTIONS(1722), + [anon_sym_quoteGoal] = ACTIONS(1725), + [aux_sym_integer_token1] = ACTIONS(1728), + [anon_sym_open] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_QMARK] = ACTIONS(1677), + [anon_sym_quoteTerm] = ACTIONS(1677), + [anon_sym_codata] = ACTIONS(1740), + [anon_sym_infixr] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(1701), + [anon_sym_postulate] = ACTIONS(1743), + [ts_builtin_sym_end] = ACTIONS(1509), + [anon_sym_mutual] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_unquote] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1752), + [sym__const_forall] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1758), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_data] = ACTIONS(1764), + [anon_sym_Set] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1767), }, [301] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(1052), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(1054), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), + [sym_pragma] = ACTIONS(3), }, [302] = { - [sym_literal] = STATE(1053), - [sym__with_expr] = STATE(987), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1069), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1070), + [sym_literal] = STATE(1055), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1070), + [sym__atom_no_curly] = STATE(1070), + [aux_sym__open_args1_repeat1] = STATE(1071), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1071), - [sym__atom_curly] = STATE(1069), - [sym_record_assignments] = STATE(1053), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1072), + [sym_record_assignments] = STATE(1055), + [sym__with_expr] = STATE(1029), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1791), - [anon_sym_unquote] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(1797), - [anon_sym_Set] = ACTIONS(1791), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1791), - [anon_sym_quoteTerm] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1791), - [sym__const_ellipsis] = ACTIONS(1791), - [anon_sym_record] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LPAREN_PIPE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(1817), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(1791), - [anon_sym_3] = ACTIONS(1821), + [anon_sym__] = ACTIONS(1770), + [anon_sym_quoteTerm] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(1774), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1782), + [sym_qualified_name] = ACTIONS(1770), + [anon_sym_quote] = ACTIONS(1770), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(1788), + [sym__const_ellipsis] = ACTIONS(1770), + [anon_sym_3] = ACTIONS(1790), + [anon_sym_] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1796), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(1800), + [anon_sym_Set] = ACTIONS(1770), }, [303] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(1006), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(1047), [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + [sym_pragma] = ACTIONS(3), }, [304] = { - [sym_with_expressions] = STATE(1093), - [anon_sym_COLON] = ACTIONS(1855), - [sym__newline] = ACTIONS(1855), - [anon_sym_where] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1857), + [sym_with_expressions] = STATE(1095), + [anon_sym_COLON] = ACTIONS(1834), + [sym__newline] = ACTIONS(1834), + [anon_sym_where] = ACTIONS(1834), + [anon_sym_with] = ACTIONS(1836), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1834), }, [305] = { - [anon_sym_COLON] = ACTIONS(1855), - [sym__newline] = ACTIONS(1855), - [anon_sym_where] = ACTIONS(1855), + [anon_sym_COLON] = ACTIONS(1834), + [sym__newline] = ACTIONS(1834), + [anon_sym_where] = ACTIONS(1834), + [anon_sym_in] = ACTIONS(1834), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1834), }, [306] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(1838), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1840), + [sym__const_lambda] = ACTIONS(1838), + [anon_sym_quoteGoal] = ACTIONS(1838), + [aux_sym_integer_token1] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_QMARK] = ACTIONS(1838), + [anon_sym_quoteTerm] = ACTIONS(1838), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1840), + [sym_qualified_name] = ACTIONS(1838), + [anon_sym_quote] = ACTIONS(1838), + [anon_sym_tactic] = ACTIONS(1838), + [anon_sym_Prop] = ACTIONS(1838), + [sym__const_ellipsis] = ACTIONS(1838), + [anon_sym_record] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_3] = ACTIONS(1838), + [anon_sym_] = ACTIONS(1838), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1838), + [anon_sym_unquote] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [sym__const_forall] = ACTIONS(1838), + [aux_sym_string_token1] = ACTIONS(1840), + [anon_sym_Set] = ACTIONS(1838), }, [307] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1095), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1859), + [sym_literal] = STATE(839), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1097), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_record_assignments] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(1097), + [aux_sym__with_expr_repeat1] = STATE(307), + [anon_sym__] = ACTIONS(1842), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1845), + [sym__const_lambda] = ACTIONS(1838), + [anon_sym_quoteGoal] = ACTIONS(1838), + [aux_sym_integer_token1] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_QMARK] = ACTIONS(1842), + [anon_sym_quoteTerm] = ACTIONS(1842), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1854), + [sym_qualified_name] = ACTIONS(1842), + [anon_sym_quote] = ACTIONS(1842), + [anon_sym_tactic] = ACTIONS(1838), + [anon_sym_Prop] = ACTIONS(1842), + [sym__const_ellipsis] = ACTIONS(1842), + [anon_sym_record] = ACTIONS(1857), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_3] = ACTIONS(1860), + [anon_sym_] = ACTIONS(1863), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1866), + [anon_sym_unquote] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1869), + [sym__const_forall] = ACTIONS(1838), + [aux_sym_string_token1] = ACTIONS(1872), + [anon_sym_Set] = ACTIONS(1842), }, [308] = { - [sym_primitive] = STATE(1097), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1097), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1097), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1098), - [sym_field] = STATE(1097), - [sym_abstract] = STATE(1097), - [sym_private] = STATE(1097), - [sym_function_clause] = STATE(1097), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1097), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1097), - [sym_data] = STATE(1097), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1097), - [sym_macro] = STATE(1097), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1097), - [sym_record_signature_only] = STATE(1097), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1097), - [sym_syntax] = STATE(1097), - [sym_record] = STATE(1097), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1097), - [sym_generalize] = STATE(1097), - [sym_mutual] = STATE(1097), - [sym_postulate] = STATE(1097), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1861), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(1875), + [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_with] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1875), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1875), + [anon_sym_where] = ACTIONS(1875), + [anon_sym_rewrite] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), }, [309] = { - [sym_typed_binding] = STATE(1106), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1106), - [sym__lambda_binding] = STATE(1107), - [sym__binding_name] = STATE(1108), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym_name] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym_name] = ACTIONS(1185), }, [310] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_SEMI] = ACTIONS(255), - [anon_sym_RPAREN] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_3] = ACTIONS(253), + [sym__expr2] = STATE(1099), + [sym_do] = STATE(1099), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1099), + [sym_lambda] = STATE(1099), + [sym__application] = STATE(1099), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [311] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1109), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(1859), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(1100), + [sym_do] = STATE(1100), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1100), + [sym_lambda] = STATE(1100), + [sym__application] = STATE(1100), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [312] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(1117), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1879), }, [313] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1112), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1881), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_anonymous_name] = STATE(316), + [sym__binding_name] = STATE(1127), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1913), + [anon_sym_] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1919), + [sym_name] = ACTIONS(497), }, [314] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1113), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_open] = STATE(1129), + [sym__expr2] = STATE(1128), + [sym_do] = STATE(1128), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1128), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1128), + [sym_lambda] = STATE(1128), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [315] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1887), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [sym__expr2] = STATE(1130), + [sym_do] = STATE(1130), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1130), + [sym_lambda] = STATE(1130), + [sym__application] = STATE(1130), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [316] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1119), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym_name] = ACTIONS(1295), }, [317] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1121), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_anonymous_name] = STATE(316), + [sym_typed_binding] = STATE(317), + [sym_untyped_binding] = STATE(317), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(319), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(483), + [anon_sym_] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), }, [318] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [aux_sym__open_args1_repeat1] = STATE(1133), - [sym__atom_curly] = STATE(1132), - [sym_record_assignments] = STATE(1122), - [sym_atom] = STATE(1133), - [sym__atoms1] = STATE(1134), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1921), + [sym_pragma] = ACTIONS(3), }, [319] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1135), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym_name] = ACTIONS(1309), }, [320] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1136), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [aux_sym_syntax_repeat2] = STATE(1133), + [anon_sym_COLON] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1925), }, [321] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_4] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__newline] = ACTIONS(1927), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), }, [322] = { + [aux_sym_syntax_repeat2] = STATE(320), + [sym_simple_type_sig] = STATE(321), + [aux_sym__simple_type_sig_block_repeat1] = STATE(1136), + [sym__dedent] = ACTIONS(1929), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1919), + [sym_name] = ACTIONS(499), }, [323] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_3] = ACTIONS(439), + [sym__newline] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [324] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(323), - [sym_record_assignments] = STATE(306), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym__dedent] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [325] = { - [anon_sym_COLON] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_RPAREN] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_3] = ACTIONS(463), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, [326] = { - [anon_sym_COLON] = ACTIONS(1929), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(453), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1141), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1935), }, [327] = { - [sym_primitive] = STATE(1143), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1143), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1143), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1144), - [sym_field] = STATE(1143), - [sym_abstract] = STATE(1143), - [sym_private] = STATE(1143), - [sym_function_clause] = STATE(1143), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1143), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1143), - [sym_data] = STATE(1143), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1143), - [sym_macro] = STATE(1143), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1143), - [sym_record_signature_only] = STATE(1143), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1143), - [sym_syntax] = STATE(1143), - [sym_record] = STATE(1143), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1143), - [sym_generalize] = STATE(1143), - [sym_mutual] = STATE(1143), - [sym_postulate] = STATE(1143), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1937), }, [328] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(1931), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), }, [329] = { - [sym_primitive] = STATE(1146), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1146), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1146), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1146), - [sym_abstract] = STATE(1146), - [sym_private] = STATE(1146), - [sym_function_clause] = STATE(1146), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1146), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1146), - [sym_data] = STATE(1146), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1146), - [sym_macro] = STATE(1146), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1146), - [sym_record_signature_only] = STATE(1146), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1146), - [sym_syntax] = STATE(1146), - [sym_record] = STATE(1146), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1146), - [sym_generalize] = STATE(1146), - [sym_mutual] = STATE(1146), - [sym_postulate] = STATE(1146), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1150), + [sym_untyped_binding] = STATE(1150), + [sym__lambda_binding] = STATE(1151), + [sym__binding_name] = STATE(1152), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym_name] = ACTIONS(1953), }, [330] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_4] = ACTIONS(1029), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1153), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(1935), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [331] = { - [sym_do] = STATE(1148), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1148), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1148), - [sym_lambda] = STATE(1148), - [sym__application] = STATE(1148), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [aux_sym__open_args1_repeat1] = STATE(1165), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(1165), + [sym__atoms1] = STATE(1166), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [332] = { - [sym_do] = STATE(1149), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1149), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1149), - [sym_lambda] = STATE(1149), - [sym__application] = STATE(1149), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [333] = { - [sym_anonymous_name] = STATE(337), - [sym__binding_name] = STATE(1154), - [anon_sym__] = ACTIONS(509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1937), - [anon_sym_] = ACTIONS(1939), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [sym_name] = ACTIONS(525), + [sym_primitive] = STATE(1168), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1168), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1168), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1168), + [sym_abstract] = STATE(1168), + [sym_private] = STATE(1168), + [sym_function_clause] = STATE(1168), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1168), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1169), + [sym_infix] = STATE(1168), + [sym_data] = STATE(1168), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1168), + [sym_macro] = STATE(1168), + [sym_test] = STATE(1168), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1168), + [sym_record_signature_only] = STATE(1168), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1168), + [sym_syntax] = STATE(1168), + [sym_record] = STATE(1168), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1168), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1168), + [sym_mutual] = STATE(1168), + [sym_postulate] = STATE(1168), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(1977), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [333] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1171), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(1979), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [334] = { - [sym_do] = STATE(1156), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1156), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1156), - [sym_lambda] = STATE(1156), - [sym_open] = STATE(1155), - [sym__application] = STATE(1156), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1172), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [335] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1158), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(1158), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(1158), - [sym__expr2] = STATE(1158), - [sym_lambda] = STATE(1158), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1173), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [336] = { - [sym__lambda_where_block] = STATE(1160), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(1945), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1174), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [337] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(1985), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_4] = ACTIONS(1139), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1987), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1991), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [338] = { - [sym_typed_binding] = STATE(338), - [sym_anonymous_name] = STATE(337), - [sym_untyped_binding] = STATE(338), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(340), - [anon_sym__] = ACTIONS(509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(511), - [anon_sym_] = ACTIONS(513), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(515), - [anon_sym_LPAREN] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(1947), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(523), - [anon_sym_4] = ACTIONS(1143), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(525), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1181), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [339] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(1949), - [sym_pragma] = ACTIONS(3), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1182), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [340] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_4] = ACTIONS(1153), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_PIPE_RPAREN] = ACTIONS(995), }, [341] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), }, [342] = { - [sym_primitive] = STATE(1165), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1165), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1165), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1166), - [sym_field] = STATE(1165), - [sym_abstract] = STATE(1165), - [sym_private] = STATE(1165), - [sym_function_clause] = STATE(1165), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1165), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1165), - [sym_data] = STATE(1165), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1165), - [sym_macro] = STATE(1165), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1165), - [sym_record_signature_only] = STATE(1165), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1165), - [sym_syntax] = STATE(1165), - [sym_record] = STATE(1165), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1165), - [sym_generalize] = STATE(1165), - [sym_mutual] = STATE(1165), - [sym_postulate] = STATE(1165), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1953), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1995), }, [343] = { - [sym_typed_binding] = STATE(1167), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1167), - [sym__lambda_binding] = STATE(1168), - [sym__binding_name] = STATE(1108), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym_name] = ACTIONS(1877), + [sym_literal] = STATE(325), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(344), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_record_assignments] = STATE(325), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_] = ACTIONS(1997), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(2003), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [344] = { - [sym__module_name] = STATE(1171), - [anon_sym_import] = ACTIONS(1955), - [sym_qualified_name] = ACTIONS(1957), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_RBRACE_RBRACE] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), }, [345] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1887), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [anon_sym_COLON] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(459), }, [346] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [aux_sym__open_args1_repeat1] = STATE(1174), - [sym__atom_curly] = STATE(1132), - [sym_record_assignments] = STATE(1122), - [sym_atom] = STATE(1174), - [sym__atoms1] = STATE(1175), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1961), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_literal] = STATE(714), + [sym__do_stmt_where] = STATE(729), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__do_stmt] = STATE(729), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [aux_sym_do_repeat1] = STATE(1189), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(734), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [sym_let] = STATE(43), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), }, [347] = { - [sym__module_name] = STATE(1171), - [sym_qualified_name] = ACTIONS(1957), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2007), [sym_pragma] = ACTIONS(3), }, [348] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1176), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), - }, - [349] = { - [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE_RPAREN] = ACTIONS(1183), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + }, + [349] = { + [sym__expr2] = STATE(1191), + [sym_do] = STATE(1191), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1191), + [sym_lambda] = STATE(1191), + [sym__application] = STATE(1191), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [350] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(323), - [sym_record_assignments] = STATE(306), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(1192), + [sym_do] = STATE(1192), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1192), + [sym_lambda] = STATE(1192), + [sym__application] = STATE(1192), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [351] = { - [anon_sym_COLON] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(453), + [sym_anonymous_name] = STATE(355), + [sym__binding_name] = STATE(1197), + [anon_sym__] = ACTIONS(543), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2009), + [anon_sym_] = ACTIONS(2011), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [sym_name] = ACTIONS(559), }, [352] = { - [anon_sym_RPAREN] = ACTIONS(1965), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(1199), + [sym__expr2] = STATE(1198), + [sym_do] = STATE(1198), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1198), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1198), + [sym_lambda] = STATE(1198), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [353] = { - [anon_sym_in] = ACTIONS(1967), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(1201), + [sym_do] = STATE(1201), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(1201), + [sym_let] = STATE(1201), + [sym_lambda] = STATE(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [354] = { - [sym_do] = STATE(1180), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1180), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1180), - [sym_lambda] = STATE(1180), - [sym__application] = STATE(1180), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__lambda_where_block] = STATE(1203), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(2017), + [sym_pragma] = ACTIONS(3), }, [355] = { - [sym_do] = STATE(1181), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1181), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1181), - [sym_lambda] = STATE(1181), - [sym__application] = STATE(1181), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_PIPE_RPAREN] = ACTIONS(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [356] = { - [sym_do] = STATE(1182), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1182), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1182), - [sym_lambda] = STATE(1182), - [sym__application] = STATE(1182), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_anonymous_name] = STATE(355), + [sym_typed_binding] = STATE(356), + [sym_untyped_binding] = STATE(356), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(358), + [anon_sym__] = ACTIONS(543), + [anon_sym_LBRACE_LBRACE] = ACTIONS(545), + [anon_sym_] = ACTIONS(547), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_PIPE_RPAREN] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(2019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(557), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(559), }, [357] = { - [sym_do] = STATE(1183), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1183), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1183), - [sym_lambda] = STATE(1183), - [sym__application] = STATE(1183), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_PIPE_RPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(2021), }, [358] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__with_expr] = STATE(473), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym__do_stmt] = STATE(476), - [sym__do_stmt_where] = STATE(476), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [aux_sym_do_repeat1] = STATE(1184), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_PIPE_RPAREN] = ACTIONS(1307), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [359] = { - [sym__atom_no_curly] = STATE(408), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__atom_curly] = STATE(408), - [sym_atom] = STATE(479), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_3] = ACTIONS(141), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [aux_sym__open_args1_repeat1] = STATE(1207), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(1207), + [sym__atoms1] = STATE(1208), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [360] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1186), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(1969), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(1210), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1210), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1210), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1210), + [sym_abstract] = STATE(1210), + [sym_private] = STATE(1210), + [sym_function_clause] = STATE(1210), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1210), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1211), + [sym_infix] = STATE(1210), + [sym_data] = STATE(1210), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1210), + [sym_macro] = STATE(1210), + [sym_test] = STATE(1210), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1210), + [sym_record_signature_only] = STATE(1210), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1210), + [sym_syntax] = STATE(1210), + [sym_record] = STATE(1210), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1210), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1210), + [sym_mutual] = STATE(1210), + [sym_postulate] = STATE(1210), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2025), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [361] = { - [anon_sym_LBRACE] = ACTIONS(1971), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2027), }, [362] = { - [anon_sym_COLON] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_2] = ACTIONS(119), + [sym__module_name] = STATE(1215), + [anon_sym_import] = ACTIONS(2029), + [sym_qualified_name] = ACTIONS(2031), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), }, [363] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1189), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1973), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1216), + [sym_untyped_binding] = STATE(1216), + [sym__lambda_binding] = STATE(1217), + [sym__binding_name] = STATE(1152), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym_name] = ACTIONS(1953), }, [364] = { - [sym_primitive] = STATE(1191), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1191), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1191), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1192), - [sym_field] = STATE(1191), - [sym_abstract] = STATE(1191), - [sym_private] = STATE(1191), - [sym_function_clause] = STATE(1191), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1191), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1191), - [sym_data] = STATE(1191), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1191), - [sym_macro] = STATE(1191), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1191), - [sym_record_signature_only] = STATE(1191), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1191), - [sym_syntax] = STATE(1191), - [sym_record] = STATE(1191), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1191), - [sym_generalize] = STATE(1191), - [sym_mutual] = STATE(1191), - [sym_postulate] = STATE(1191), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(1975), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [365] = { - [sym_typed_binding] = STATE(1200), - [sym_anonymous_name] = STATE(1199), - [sym_untyped_binding] = STATE(1200), - [sym__lambda_binding] = STATE(1201), - [sym__binding_name] = STATE(1202), - [anon_sym__] = ACTIONS(1977), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1979), - [anon_sym_] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1983), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [sym_name] = ACTIONS(1991), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1987), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(1991), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + }, + [365] = { + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1219), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [366] = { - [anon_sym_COLON] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_2] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__module_name] = STATE(1215), + [sym_qualified_name] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [367] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1203), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(1973), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(2035), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [368] = { + [anon_sym_RPAREN] = ACTIONS(1995), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1993), }, [369] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1206), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(1995), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_literal] = STATE(325), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(344), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_record_assignments] = STATE(325), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_] = ACTIONS(1997), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2003), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [370] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1207), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), - }, - [371] = { - [sym__atom_no_curly] = STATE(378), - [sym_literal] = STATE(362), - [sym_record_assignments] = STATE(362), - [sym__atom_curly] = STATE(378), - [sym_atom] = STATE(1188), - [anon_sym__] = ACTIONS(561), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_COLON] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(459), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(2001), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(2003), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_3] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(587), - [anon_sym_Prop] = ACTIONS(561), + }, + [371] = { + [sym__expr2] = STATE(1222), + [sym_do] = STATE(1222), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1222), + [sym_lambda] = STATE(1222), + [sym__application] = STATE(1222), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [372] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1213), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__expr2] = STATE(1223), + [sym_do] = STATE(1223), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1223), + [sym_lambda] = STATE(1223), + [sym__application] = STATE(1223), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [373] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1215), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(1224), + [sym_do] = STATE(1224), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1224), + [sym_lambda] = STATE(1224), + [sym__application] = STATE(1224), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [374] = { - [sym__atom_no_curly] = STATE(1226), - [sym_literal] = STATE(1216), - [aux_sym__open_args1_repeat1] = STATE(1227), - [sym__atom_curly] = STATE(1226), - [sym_record_assignments] = STATE(1216), - [sym_atom] = STATE(1227), - [sym__atoms1] = STATE(1228), - [anon_sym__] = ACTIONS(2011), - [anon_sym_unquote] = ACTIONS(2011), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2015), - [anon_sym_Set] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2017), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2011), - [anon_sym_quoteTerm] = ACTIONS(2011), - [anon_sym_quote] = ACTIONS(2011), - [sym__const_ellipsis] = ACTIONS(2011), - [anon_sym_record] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2011), - [anon_sym_] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_LPAREN_PIPE] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_3] = ACTIONS(2029), - [aux_sym_string_token1] = ACTIONS(2031), - [anon_sym_Prop] = ACTIONS(2011), + [sym__expr2] = STATE(1225), + [sym_do] = STATE(1225), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1225), + [sym_lambda] = STATE(1225), + [sym__application] = STATE(1225), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [375] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1229), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_PIPE_RPAREN] = ACTIONS(121), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [376] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1230), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1227), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2039), }, [377] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(1919), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(295), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [378] = { - [anon_sym_COLON] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_2] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1228), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2039), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [379] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_literal] = STATE(362), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(378), - [sym_record_assignments] = STATE(362), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(2033), - [anon_sym__] = ACTIONS(561), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2037), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1229), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [380] = { - [anon_sym_COLON] = ACTIONS(467), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_2] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1230), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [381] = { - [anon_sym_COLON] = ACTIONS(2041), - [anon_sym_2] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1232), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2041), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [382] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(322), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(505), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1233), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2043), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [383] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(349), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__atom_curly] = STATE(385), + [sym__atom_no_curly] = STATE(385), + [sym_literal] = STATE(375), + [sym_record_assignments] = STATE(375), + [sym_atom] = STATE(1226), + [anon_sym__] = ACTIONS(585), + [anon_sym_quoteTerm] = ACTIONS(585), + [anon_sym_LBRACE_LBRACE] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(593), + [sym_qualified_name] = ACTIONS(585), + [anon_sym_quote] = ACTIONS(585), + [anon_sym_3] = ACTIONS(595), + [anon_sym_Prop] = ACTIONS(585), + [sym__const_ellipsis] = ACTIONS(585), + [anon_sym_record] = ACTIONS(597), + [anon_sym_] = ACTIONS(599), + [anon_sym_unquote] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(603), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_Set] = ACTIONS(585), }, [384] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(377), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1235), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [385] = { - [sym__atom_no_curly] = STATE(70), - [sym_literal] = STATE(48), - [sym_record_assignments] = STATE(48), - [sym__atom_curly] = STATE(70), - [sym_atom] = STATE(321), - [anon_sym__] = ACTIONS(75), - [anon_sym_unquote] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(673), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(675), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [anon_sym_] = ACTIONS(671), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_3] = ACTIONS(109), - [aux_sym_string_token1] = ACTIONS(105), - [anon_sym_Prop] = ACTIONS(75), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_PIPE_RPAREN] = ACTIONS(413), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [386] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(395), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__atom_curly] = STATE(385), + [sym__atom_no_curly] = STATE(385), + [sym_literal] = STATE(375), + [sym_record_assignments] = STATE(375), + [sym_atom] = STATE(1236), + [aux_sym__open_args1_repeat1] = STATE(1236), + [anon_sym__] = ACTIONS(585), + [anon_sym_quoteTerm] = ACTIONS(585), + [anon_sym_LBRACE_LBRACE] = ACTIONS(587), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(593), + [sym_qualified_name] = ACTIONS(585), + [anon_sym_quote] = ACTIONS(585), + [anon_sym_3] = ACTIONS(595), + [anon_sym_Prop] = ACTIONS(585), + [sym__const_ellipsis] = ACTIONS(585), + [anon_sym_record] = ACTIONS(597), + [anon_sym_] = ACTIONS(599), + [anon_sym_unquote] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_PIPE_RPAREN] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(603), + [aux_sym_string_token1] = ACTIONS(605), + [anon_sym_Set] = ACTIONS(585), }, [387] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(2047), }, [388] = { + [sym_primitive] = STATE(1238), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1238), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1238), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1238), + [sym_abstract] = STATE(1238), + [sym_private] = STATE(1238), + [sym_function_clause] = STATE(1238), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1238), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1239), + [sym_infix] = STATE(1238), + [sym_data] = STATE(1238), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1238), + [sym_macro] = STATE(1238), + [sym_test] = STATE(1238), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1238), + [sym_record_signature_only] = STATE(1238), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1238), + [sym_syntax] = STATE(1238), + [sym_record] = STATE(1238), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1238), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1238), + [sym_mutual] = STATE(1238), + [sym_postulate] = STATE(1238), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [389] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [390] = { [sym_primitive] = STATE(1241), - [sym_literal] = STATE(130), + [sym_literal] = STATE(97), [sym__declaration] = STATE(1241), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), [sym_module_macro] = STATE(1241), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1242), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), [sym_field] = STATE(1241), [sym_abstract] = STATE(1241), [sym_private] = STATE(1241), [sym_function_clause] = STATE(1241), - [sym_lhs_decl] = STATE(155), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), [sym_open] = STATE(1241), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), [sym_infix] = STATE(1241), [sym_data] = STATE(1241), - [aux_sym__with_expr_repeat1] = STATE(156), + [sym_lambda] = STATE(43), [sym_instance] = STATE(1241), [sym_macro] = STATE(1241), - [sym_lhs_defn] = STATE(157), + [sym_test] = STATE(1241), + [sym_lhs_defn] = STATE(125), [sym_data_signature_only] = STATE(1241), [sym_record_signature_only] = STATE(1241), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), [sym_pattern] = STATE(1241), [sym_syntax] = STATE(1241), [sym_record] = STATE(1241), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), [sym_module] = STATE(1241), + [aux_sym__with_expr_repeat1] = STATE(127), [sym_generalize] = STATE(1241), [sym_mutual] = STATE(1241), [sym_postulate] = STATE(1241), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(2043), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [389] = { - [sym_typed_binding] = STATE(1243), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1243), - [sym__lambda_binding] = STATE(1244), - [sym__binding_name] = STATE(1108), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym_name] = ACTIONS(1877), - }, - [390] = { - [sym_comment] = ACTIONS(3), + [anon_sym_pattern] = ACTIONS(145), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2045), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [391] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_4] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__atom_curly] = STATE(385), + [sym__atom_no_curly] = STATE(385), + [sym_literal] = STATE(128), + [sym_record_assignments] = STATE(128), + [sym_atom] = STATE(545), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(603), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [392] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1887), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1243), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [393] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [aux_sym__open_args1_repeat1] = STATE(1248), - [sym__atom_curly] = STATE(1132), - [sym_record_assignments] = STATE(1122), - [sym_atom] = STATE(1248), - [sym__atoms1] = STATE(1249), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2049), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), - }, - [394] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1250), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), - }, - [395] = { + [anon_sym_LBRACE] = ACTIONS(2053), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2051), [sym_pragma] = ACTIONS(3), }, - [396] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(323), - [sym_record_assignments] = STATE(306), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [397] = { - [anon_sym_COLON] = ACTIONS(2053), + [394] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(1995), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(453), [sym_pragma] = ACTIONS(3), }, - [398] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), + [395] = { + [anon_sym_COLON] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_4] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, - [399] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1254), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [396] = { + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1246), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [anon_sym_RBRACE_RBRACE] = ACTIONS(2055), }, - [400] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_4] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - }, - [401] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1255), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2055), + [397] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), + [sym_name] = ACTIONS(2057), + }, + [398] = { + [anon_sym_COLON] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, - [402] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1257), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2057), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [399] = { + [sym_anonymous_name] = STATE(1254), + [sym_typed_binding] = STATE(1255), + [sym_untyped_binding] = STATE(1255), + [sym__lambda_binding] = STATE(1256), + [sym__binding_name] = STATE(1257), + [anon_sym__] = ACTIONS(2059), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), + [anon_sym_] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [sym_name] = ACTIONS(2073), }, - [403] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), + [400] = { + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), [sym_expr] = STATE(1258), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(2055), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), + }, + [401] = { + [sym__atom_curly] = STATE(1269), + [sym__atom_no_curly] = STATE(1269), + [sym_literal] = STATE(1259), + [aux_sym__open_args1_repeat1] = STATE(1270), + [sym_record_assignments] = STATE(1259), + [sym_atom] = STATE(1270), + [sym__atoms1] = STATE(1271), + [anon_sym__] = ACTIONS(2075), + [anon_sym_quoteTerm] = ACTIONS(2075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2079), + [anon_sym_QMARK] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2081), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2083), + [sym_qualified_name] = ACTIONS(2075), + [anon_sym_quote] = ACTIONS(2075), + [anon_sym_3] = ACTIONS(2085), + [anon_sym_Prop] = ACTIONS(2075), + [sym__const_ellipsis] = ACTIONS(2075), + [anon_sym_record] = ACTIONS(2087), + [anon_sym_] = ACTIONS(2089), + [anon_sym_unquote] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_string_token1] = ACTIONS(2095), + [anon_sym_Set] = ACTIONS(2075), + }, + [402] = { + [sym_primitive] = STATE(1273), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1273), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1273), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1273), + [sym_abstract] = STATE(1273), + [sym_private] = STATE(1273), + [sym_function_clause] = STATE(1273), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1273), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1274), + [sym_infix] = STATE(1273), + [sym_data] = STATE(1273), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1273), + [sym_macro] = STATE(1273), + [sym_test] = STATE(1273), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1273), + [sym_record_signature_only] = STATE(1273), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1273), + [sym_syntax] = STATE(1273), + [sym_record] = STATE(1273), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1273), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1273), + [sym_mutual] = STATE(1273), + [sym_postulate] = STATE(1273), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2097), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2059), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [403] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1276), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2099), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [404] = { - [sym__atom_no_curly] = STATE(408), - [sym_literal] = STATE(398), - [sym_record_assignments] = STATE(398), - [sym__atom_curly] = STATE(408), - [sym_atom] = STATE(1253), - [anon_sym__] = ACTIONS(617), - [anon_sym_unquote] = ACTIONS(617), - [anon_sym_LBRACE_LBRACE] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(621), - [anon_sym_Set] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(623), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(617), - [anon_sym_quoteTerm] = ACTIONS(617), - [anon_sym_quote] = ACTIONS(617), - [sym__const_ellipsis] = ACTIONS(617), - [anon_sym_record] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_LPAREN_PIPE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_3] = ACTIONS(635), - [aux_sym_string_token1] = ACTIONS(637), - [anon_sym_Prop] = ACTIONS(617), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1277), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [405] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1259), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1278), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [406] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1261), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1279), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [407] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1262), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_literal] = STATE(395), + [sym_record_assignments] = STATE(395), + [sym_atom] = STATE(1245), + [anon_sym__] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(2105), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_3] = ACTIONS(625), + [anon_sym_Prop] = ACTIONS(613), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_record] = ACTIONS(619), + [anon_sym_] = ACTIONS(2107), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2111), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [408] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_4] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1286), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [409] = { - [sym__atom_no_curly] = STATE(408), - [sym_literal] = STATE(398), - [sym_record_assignments] = STATE(398), - [sym__atom_curly] = STATE(408), - [sym_atom] = STATE(1263), - [aux_sym__open_args1_repeat1] = STATE(1263), - [anon_sym__] = ACTIONS(617), - [anon_sym_unquote] = ACTIONS(617), - [anon_sym_LBRACE_LBRACE] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(621), - [anon_sym_Set] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(623), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(617), - [anon_sym_4] = ACTIONS(425), - [anon_sym_quoteTerm] = ACTIONS(617), - [anon_sym_quote] = ACTIONS(617), - [sym__const_ellipsis] = ACTIONS(617), - [anon_sym_record] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(629), - [anon_sym_LPAREN_PIPE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_3] = ACTIONS(635), - [aux_sym_string_token1] = ACTIONS(637), - [anon_sym_Prop] = ACTIONS(617), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1287), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [410] = { - [anon_sym_PIPE] = ACTIONS(2063), - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(411), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [411] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [412] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(1919), + [anon_sym_2] = ACTIONS(1995), [sym_pragma] = ACTIONS(3), }, + [412] = { + [sym_literal] = STATE(395), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(413), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_record_assignments] = STATE(395), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_3] = ACTIONS(625), + [anon_sym_] = ACTIONS(2115), + [anon_sym__] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2121), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + }, [413] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(475), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_2] = ACTIONS(475), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [414] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2123), + [anon_sym_2] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [415] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_4] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(1995), }, [416] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_4] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(342), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(537), }, [417] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1268), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2069), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(368), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(537), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [418] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1269), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2069), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(411), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [419] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1271), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2071), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_literal] = STATE(54), + [sym_record_assignments] = STATE(54), + [sym_atom] = STATE(340), + [anon_sym__] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(689), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(91), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(691), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_3] = ACTIONS(109), + [anon_sym_Prop] = ACTIONS(83), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_record] = ACTIONS(103), + [anon_sym_] = ACTIONS(687), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_LBRACE] = ACTIONS(693), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), }, [420] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1272), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2073), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(428), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [421] = { - [sym__atom_no_curly] = STATE(425), - [sym_literal] = STATE(415), - [sym_record_assignments] = STATE(415), - [sym__atom_curly] = STATE(425), - [sym_atom] = STATE(1267), - [anon_sym__] = ACTIONS(643), - [anon_sym_unquote] = ACTIONS(643), - [anon_sym_LBRACE_LBRACE] = ACTIONS(647), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(645), - [anon_sym_Set] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(649), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(643), - [anon_sym_quoteTerm] = ACTIONS(643), - [anon_sym_quote] = ACTIONS(643), - [sym__const_ellipsis] = ACTIONS(643), - [anon_sym_record] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(643), - [anon_sym_] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_LPAREN_PIPE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_3] = ACTIONS(663), - [aux_sym_string_token1] = ACTIONS(661), - [anon_sym_Prop] = ACTIONS(643), + [sym_name] = ACTIONS(2125), }, [422] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1273), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1298), + [sym_untyped_binding] = STATE(1298), + [sym__lambda_binding] = STATE(1299), + [sym__binding_name] = STATE(1152), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym_name] = ACTIONS(1953), }, [423] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1275), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [aux_sym__open_args1_repeat1] = STATE(1301), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(1301), + [sym__atoms1] = STATE(1302), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [424] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1276), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_primitive] = STATE(1304), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1304), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1304), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1304), + [sym_abstract] = STATE(1304), + [sym_private] = STATE(1304), + [sym_function_clause] = STATE(1304), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1304), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1305), + [sym_infix] = STATE(1304), + [sym_data] = STATE(1304), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1304), + [sym_macro] = STATE(1304), + [sym_test] = STATE(1304), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1304), + [sym_record_signature_only] = STATE(1304), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1304), + [sym_syntax] = STATE(1304), + [sym_record] = STATE(1304), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1304), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1304), + [sym_mutual] = STATE(1304), + [sym_postulate] = STATE(1304), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2129), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [425] = { + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(1985), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_4] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1987), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(1991), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [426] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(427), - [sym__atom_curly] = STATE(425), - [sym_literal] = STATE(415), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(425), - [sym_record_assignments] = STATE(415), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(643), - [anon_sym_unquote] = ACTIONS(643), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(645), - [anon_sym_Set] = ACTIONS(643), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_LBRACE_LBRACE] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(643), - [anon_sym_quoteTerm] = ACTIONS(643), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(643), - [sym__const_ellipsis] = ACTIONS(643), - [anon_sym_record] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(643), - [anon_sym_] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_LPAREN_PIPE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(661), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(643), - [anon_sym_3] = ACTIONS(663), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1307), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [427] = { [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_4] = ACTIONS(467), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_PIPE_RPAREN] = ACTIONS(1427), }, [428] = { - [anon_sym_COLON] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_RPAREN] = ACTIONS(1789), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2133), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1789), - [anon_sym_2] = ACTIONS(1789), - [anon_sym_where] = ACTIONS(1789), - [anon_sym_PIPE_RPAREN] = ACTIONS(1789), - [anon_sym_4] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(2077), }, [429] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(322), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(505), + [sym_literal] = STATE(325), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(344), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_record_assignments] = STATE(325), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_] = ACTIONS(1997), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2003), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [430] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(349), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(505), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(2135), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(459), + [sym_pragma] = ACTIONS(3), }, [431] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(377), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(577), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [432] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(395), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(1311), + [sym_do] = STATE(1311), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1311), + [sym_lambda] = STATE(1311), + [sym__application] = STATE(1311), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [433] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(433), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(2079), - [anon_sym_quoteTerm] = ACTIONS(2079), - [sym__const_right_arrow] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [sym__const_ellipsis] = ACTIONS(2079), - [anon_sym_record] = ACTIONS(2082), - [anon_sym_QMARK] = ACTIONS(2079), - [anon_sym_quote] = ACTIONS(2079), - [anon_sym_] = ACTIONS(2085), - [anon_sym__] = ACTIONS(2079), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2088), - [sym__const_lambda] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(2091), - [anon_sym_Set] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_unquote] = ACTIONS(2079), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(2097), - [anon_sym_LPAREN_PIPE] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2103), - [sym__const_forall] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(2106), - [anon_sym_tactic] = ACTIONS(1683), - [anon_sym_Prop] = ACTIONS(2079), - [anon_sym_3] = ACTIONS(2109), + [sym__expr2] = STATE(1312), + [sym_do] = STATE(1312), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1312), + [sym_lambda] = STATE(1312), + [sym__application] = STATE(1312), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [434] = { - [anon_sym_COLON] = ACTIONS(1712), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_RPAREN] = ACTIONS(1712), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1712), - [anon_sym_2] = ACTIONS(1712), - [anon_sym_where] = ACTIONS(1712), - [anon_sym_PIPE_RPAREN] = ACTIONS(1712), - [anon_sym_4] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(2112), + [sym__expr2] = STATE(1313), + [sym_do] = STATE(1313), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1313), + [sym_lambda] = STATE(1313), + [sym__application] = STATE(1313), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [435] = { - [sym_do] = STATE(1278), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1278), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1278), - [sym_lambda] = STATE(1278), - [sym__application] = STATE(1278), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_open] = STATE(367), + [sym__expr2] = STATE(1314), + [sym_do] = STATE(1314), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1314), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1314), + [sym_lambda] = STATE(1314), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [436] = { - [sym_do] = STATE(1279), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1279), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1279), - [sym_lambda] = STATE(1279), - [sym__application] = STATE(1279), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_typed_binding] = STATE(436), + [aux_sym__typed_bindings1_repeat1] = STATE(436), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2137), + [anon_sym_] = ACTIONS(2140), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2149), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [sym__const_right_arrow] = ACTIONS(2155), }, [437] = { - [sym_do] = STATE(1280), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1280), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1280), - [sym_lambda] = STATE(1280), - [sym__application] = STATE(1280), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [438] = { - [sym_do] = STATE(1281), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1281), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1281), - [sym_lambda] = STATE(1281), - [sym_open] = STATE(352), - [sym__application] = STATE(1281), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(342), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(537), }, [439] = { - [aux_sym__typed_bindings1_repeat1] = STATE(439), - [sym_typed_binding] = STATE(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2114), - [anon_sym_] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2126), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2129), - [sym__const_right_arrow] = ACTIONS(2132), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(368), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(537), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [440] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym_name] = ACTIONS(1029), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(411), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(637), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [441] = { - [sym_do] = STATE(1282), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1282), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1282), - [sym_lambda] = STATE(1282), - [sym__application] = STATE(1282), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(428), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [442] = { - [sym_do] = STATE(1283), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1283), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1283), - [sym_lambda] = STATE(1283), - [sym__application] = STATE(1283), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(1519), + [anon_sym_4] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1519), + [anon_sym_PIPE_RPAREN] = ACTIONS(1519), + [anon_sym_2] = ACTIONS(1519), + [anon_sym_where] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(2161), }, [443] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(1300), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(443), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(2163), + [sym_qualified_name] = ACTIONS(2166), + [anon_sym_quote] = ACTIONS(2166), + [sym__const_right_arrow] = ACTIONS(1527), + [anon_sym_tactic] = ACTIONS(1527), + [sym__const_ellipsis] = ACTIONS(2166), + [anon_sym_record] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(2166), + [anon_sym_] = ACTIONS(2172), + [anon_sym_3] = ACTIONS(2175), + [anon_sym__] = ACTIONS(2166), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2178), + [sym__const_lambda] = ACTIONS(1527), + [anon_sym_quoteGoal] = ACTIONS(1527), + [aux_sym_integer_token1] = ACTIONS(2181), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_QMARK] = ACTIONS(2166), + [anon_sym_quoteTerm] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_unquote] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2190), + [sym__const_forall] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(2193), + [anon_sym_Set] = ACTIONS(2166), }, [444] = { - [sym_anonymous_name] = STATE(447), - [sym__binding_name] = STATE(1310), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2166), - [anon_sym_] = ACTIONS(2168), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [sym_name] = ACTIONS(709), }, [445] = { - [sym_do] = STATE(1312), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1312), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1312), - [sym_lambda] = STATE(1312), - [sym_open] = STATE(1311), - [sym__application] = STATE(1312), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_PIPE_RPAREN] = ACTIONS(121), }, [446] = { - [sym_do] = STATE(1313), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1313), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1313), - [sym_lambda] = STATE(1313), - [sym__application] = STATE(1313), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(295), }, [447] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1318), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2196), }, [448] = { - [sym_typed_binding] = STATE(448), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(448), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(695), - [anon_sym_] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1319), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2196), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [449] = { - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(2174), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1320), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [450] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym_name] = ACTIONS(1153), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1322), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2198), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [451] = { - [aux_sym_syntax_repeat2] = STATE(1316), - [anon_sym_COLON] = ACTIONS(2176), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1323), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2178), }, [452] = { - [sym__newline] = ACTIONS(2180), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1324), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2200), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [453] = { - [aux_sym_syntax_repeat2] = STATE(451), - [sym_simple_type_sig] = STATE(452), - [aux_sym__simple_type_sig_block_repeat1] = STATE(1319), - [sym__dedent] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(711), + [sym__atom_curly] = STATE(455), + [sym__atom_no_curly] = STATE(455), + [sym_literal] = STATE(445), + [sym_record_assignments] = STATE(445), + [sym_atom] = STATE(1317), + [anon_sym__] = ACTIONS(705), + [anon_sym_quoteTerm] = ACTIONS(705), + [anon_sym_LBRACE_LBRACE] = ACTIONS(709), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(711), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(713), + [sym_qualified_name] = ACTIONS(705), + [anon_sym_quote] = ACTIONS(705), + [anon_sym_3] = ACTIONS(717), + [anon_sym_Prop] = ACTIONS(705), + [sym__const_ellipsis] = ACTIONS(705), + [anon_sym_record] = ACTIONS(715), + [anon_sym_] = ACTIONS(719), + [anon_sym_unquote] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [aux_sym_string_token1] = ACTIONS(725), + [anon_sym_Set] = ACTIONS(705), }, [454] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1326), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [455] = { - [sym__newline] = ACTIONS(2184), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_PIPE_RPAREN] = ACTIONS(413), }, [456] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym__dedent] = ACTIONS(2186), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), + [sym_literal] = STATE(445), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(457), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(455), + [sym__atom_no_curly] = STATE(455), + [sym_record_assignments] = STATE(445), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(705), + [anon_sym_quoteTerm] = ACTIONS(705), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(707), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_LBRACE_LBRACE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [anon_sym_LPAREN_PIPE] = ACTIONS(713), + [sym_qualified_name] = ACTIONS(705), + [anon_sym_quote] = ACTIONS(705), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(705), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(715), + [sym__const_ellipsis] = ACTIONS(705), + [anon_sym_3] = ACTIONS(717), + [anon_sym_] = ACTIONS(719), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(725), + [anon_sym_Set] = ACTIONS(705), + [sym_pragma] = ACTIONS(3), }, [457] = { - [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_PIPE_RPAREN] = ACTIONS(697), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_Set] = ACTIONS(469), }, [458] = { - [sym_primitive] = STATE(1325), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1325), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1325), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1326), - [sym_field] = STATE(1325), - [sym_abstract] = STATE(1325), - [sym_private] = STATE(1325), - [sym_function_clause] = STATE(1325), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1325), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1325), - [sym_data] = STATE(1325), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1325), - [sym_macro] = STATE(1325), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1325), - [sym_record_signature_only] = STATE(1325), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1325), - [sym_syntax] = STATE(1325), - [sym_record] = STATE(1325), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1325), - [sym_generalize] = STATE(1325), - [sym_mutual] = STATE(1325), - [sym_postulate] = STATE(1325), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(2188), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_4] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1875), + [anon_sym_PIPE_RPAREN] = ACTIONS(1875), + [anon_sym_2] = ACTIONS(1875), + [anon_sym_where] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(2204), }, [459] = { - [sym_typed_binding] = STATE(1334), - [sym_anonymous_name] = STATE(1333), - [sym_untyped_binding] = STATE(1334), - [sym__lambda_binding] = STATE(1335), - [sym__binding_name] = STATE(1336), - [anon_sym__] = ACTIONS(2190), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2192), - [anon_sym_] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2200), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [sym_name] = ACTIONS(2204), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [460] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2206), }, [461] = { + [anon_sym_RPAREN] = ACTIONS(2206), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2206), }, [462] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1339), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2208), + [anon_sym_PIPE_RPAREN] = ACTIONS(2206), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [463] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1340), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2208), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(2206), }, [464] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1342), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2210), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1329), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2208), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [465] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1343), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2212), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(2210), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [466] = { - [sym__atom_no_curly] = STATE(474), - [sym_literal] = STATE(457), - [sym_record_assignments] = STATE(457), - [sym__atom_curly] = STATE(474), - [sym_atom] = STATE(1338), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_3] = ACTIONS(749), - [aux_sym_string_token1] = ACTIONS(745), - [anon_sym_Prop] = ACTIONS(719), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(2206), + [sym_pragma] = ACTIONS(3), }, [467] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1344), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [468] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1346), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2212), + [sym_pragma] = ACTIONS(3), }, [469] = { - [sym__atom_no_curly] = STATE(1357), - [sym_literal] = STATE(1347), - [aux_sym__open_args1_repeat1] = STATE(1358), - [sym__atom_curly] = STATE(1357), - [sym_record_assignments] = STATE(1347), - [sym_atom] = STATE(1358), - [sym__atoms1] = STATE(1359), + [sym__atom_curly] = STATE(92), + [sym__atom_no_curly] = STATE(92), + [sym_literal] = STATE(82), + [sym_record_assignments] = STATE(82), + [sym_atom] = STATE(469), + [aux_sym__open_args1_repeat1] = STATE(469), + [sym__newline] = ACTIONS(2214), [anon_sym__] = ACTIONS(2216), - [anon_sym_unquote] = ACTIONS(2216), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2218), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2219), + [anon_sym_quoteTerm] = ACTIONS(2216), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2220), - [anon_sym_Set] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2222), + [aux_sym_integer_token1] = ACTIONS(2222), + [anon_sym_QMARK] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(1527), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(2228), [sym_qualified_name] = ACTIONS(2216), - [anon_sym_quoteTerm] = ACTIONS(2216), [anon_sym_quote] = ACTIONS(2216), - [sym__const_ellipsis] = ACTIONS(2216), - [anon_sym_record] = ACTIONS(2224), - [anon_sym_QMARK] = ACTIONS(2216), - [anon_sym_] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_LPAREN_PIPE] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_3] = ACTIONS(2234), - [aux_sym_string_token1] = ACTIONS(2236), + [anon_sym_3] = ACTIONS(2231), [anon_sym_Prop] = ACTIONS(2216), + [sym__const_ellipsis] = ACTIONS(2216), + [anon_sym_record] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(2237), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(2240), + [anon_sym_unquote] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2243), + [aux_sym_string_token1] = ACTIONS(2246), + [anon_sym_Set] = ACTIONS(2216), + [anon_sym_rewrite] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), }, [470] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1360), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_literal] = STATE(276), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(288), + [sym__atom_no_curly] = STATE(288), + [aux_sym__open_args1_repeat1] = STATE(38), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(287), + [sym_record_assignments] = STATE(276), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(415), + [anon_sym_quoteTerm] = ACTIONS(415), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(417), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_LBRACE_LBRACE] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(425), + [sym_qualified_name] = ACTIONS(415), + [anon_sym_quote] = ACTIONS(415), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(415), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(427), + [sym__const_ellipsis] = ACTIONS(415), + [anon_sym_3] = ACTIONS(429), + [anon_sym_] = ACTIONS(431), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(433), + [anon_sym_LBRACE] = ACTIONS(435), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(437), + [anon_sym_Set] = ACTIONS(415), }, [471] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1361), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_anonymous_name] = STATE(316), + [sym_typed_binding] = STATE(317), + [sym_untyped_binding] = STATE(317), + [sym__lambda_binding] = STATE(1334), + [sym__binding_name] = STATE(319), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(483), + [anon_sym_] = ACTIONS(485), + [anon_sym_EQ] = ACTIONS(2249), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), }, [472] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(474), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [anon_sym_PIPE_RPAREN] = ACTIONS(2251), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [473] = { - [sym__newline] = ACTIONS(2238), - [anon_sym_where] = ACTIONS(2240), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [474] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1337), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2253), }, [475] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_literal] = STATE(457), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [476] = { - [sym__newline] = ACTIONS(2242), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1338), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2253), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [477] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1339), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [478] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__with_expr] = STATE(473), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym__do_stmt] = STATE(476), - [sym__do_stmt_where] = STATE(476), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [aux_sym_do_repeat1] = STATE(1365), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym__dedent] = ACTIONS(2244), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1340), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [479] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_DOT_DOT] = ACTIONS(811), - [sym_name] = ACTIONS(809), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1342), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2255), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [480] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2246), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1343), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [481] = { - [anon_sym_RPAREN] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(483), + [sym__atom_no_curly] = STATE(483), + [sym_literal] = STATE(473), + [sym_record_assignments] = STATE(473), + [sym_atom] = STATE(1336), + [anon_sym__] = ACTIONS(743), + [anon_sym_quoteTerm] = ACTIONS(743), + [anon_sym_LBRACE_LBRACE] = ACTIONS(745), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(749), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(751), + [sym_qualified_name] = ACTIONS(743), + [anon_sym_quote] = ACTIONS(743), + [anon_sym_3] = ACTIONS(753), + [anon_sym_Prop] = ACTIONS(743), + [sym__const_ellipsis] = ACTIONS(743), + [anon_sym_record] = ACTIONS(755), + [anon_sym_] = ACTIONS(757), + [anon_sym_unquote] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [aux_sym_string_token1] = ACTIONS(763), + [anon_sym_Set] = ACTIONS(743), }, [482] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1368), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(2248), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1345), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [483] = { - [anon_sym_LBRACE] = ACTIONS(2250), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [484] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2246), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(483), + [sym__atom_no_curly] = STATE(483), + [sym_literal] = STATE(473), + [sym_record_assignments] = STATE(473), + [sym_atom] = STATE(1346), + [aux_sym__open_args1_repeat1] = STATE(1346), + [sym__newline] = ACTIONS(735), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(751), + [sym_qualified_name] = ACTIONS(743), + [anon_sym_quote] = ACTIONS(743), + [anon_sym_3] = ACTIONS(753), + [anon_sym_Prop] = ACTIONS(743), + [sym__const_ellipsis] = ACTIONS(743), + [anon_sym_record] = ACTIONS(755), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym__] = ACTIONS(743), + [anon_sym_quoteTerm] = ACTIONS(743), + [anon_sym_LBRACE_LBRACE] = ACTIONS(745), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(749), + [anon_sym_where] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(743), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(763), + [anon_sym_Set] = ACTIONS(743), + [anon_sym_rewrite] = ACTIONS(419), + [anon_sym_module] = ACTIONS(419), }, [485] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1371), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [486] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_] = ACTIONS(439), + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(737), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(441), - [sym_name] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_rewrite] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), + }, + [486] = { + [sym_primitive] = STATE(1348), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1348), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1348), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1348), + [sym_abstract] = STATE(1348), + [sym_private] = STATE(1348), + [sym_function_clause] = STATE(1348), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1348), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1349), + [sym_infix] = STATE(1348), + [sym_data] = STATE(1348), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1348), + [sym_macro] = STATE(1348), + [sym_test] = STATE(1348), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1348), + [sym_record_signature_only] = STATE(1348), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1348), + [sym_syntax] = STATE(1348), + [sym_record] = STATE(1348), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1348), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1348), + [sym_mutual] = STATE(1348), + [sym_postulate] = STATE(1348), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [487] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(2263), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2246), }, [488] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(2246), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(1351), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1351), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1351), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1351), + [sym_abstract] = STATE(1351), + [sym_private] = STATE(1351), + [sym_function_clause] = STATE(1351), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1351), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1351), + [sym_data] = STATE(1351), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1351), + [sym_macro] = STATE(1351), + [sym_test] = STATE(1351), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1351), + [sym_record_signature_only] = STATE(1351), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1351), + [sym_syntax] = STATE(1351), + [sym_record] = STATE(1351), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1351), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1351), + [sym_mutual] = STATE(1351), + [sym_postulate] = STATE(1351), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [489] = { - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_SEMI] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), - [anon_sym_EQ] = ACTIONS(2254), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1353), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2265), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [490] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__binding_name] = STATE(571), + [sym_anonymous_name] = STATE(568), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(570), + [sym_untyped_binding] = STATE(570), + [sym_typed_binding] = STATE(570), + [sym__typed_untyped_binding1] = STATE(1356), + [anon_sym_COLON] = ACTIONS(2267), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(2269), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), }, [491] = { - [aux_sym__record_assignments1_repeat1] = STATE(1374), - [anon_sym_SEMI] = ACTIONS(2260), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2262), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(2251), }, [492] = { - [sym_literal] = STATE(1375), - [sym_atom] = STATE(1391), - [sym__atom_curly] = STATE(1388), - [sym_import_directive] = STATE(1389), - [aux_sym_module_macro_repeat1] = STATE(1389), - [sym__open_args1] = STATE(1390), - [sym__atom_no_curly] = STATE(1388), - [sym_record_assignments] = STATE(1375), - [aux_sym__open_args1_repeat1] = STATE(1391), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_renaming] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2278), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_3] = ACTIONS(2290), - [anon_sym_public] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [493] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_2] = ACTIONS(2251), [sym_pragma] = ACTIONS(3), }, [494] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(1404), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(2271), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [495] = { + [sym_primitive] = STATE(1359), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1359), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1359), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1359), + [sym_abstract] = STATE(1359), + [sym_private] = STATE(1359), + [sym_function_clause] = STATE(1359), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_open] = STATE(1359), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(1359), + [sym_data] = STATE(1359), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_instance] = STATE(1359), + [sym_macro] = STATE(1359), + [sym_test] = STATE(1359), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1359), + [sym_record_signature_only] = STATE(1359), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1359), + [sym_syntax] = STATE(1359), + [sym_record] = STATE(1359), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1359), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1359), + [sym_mutual] = STATE(1359), + [sym_postulate] = STATE(1359), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [495] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), + [496] = { + [aux_sym_syntax_repeat1] = STATE(1360), + [sym_hole_name] = STATE(1360), + [anon_sym_LBRACE] = ACTIONS(1069), + [sym_name] = ACTIONS(1071), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1073), + [anon_sym_] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym_name] = ACTIONS(1029), - }, - [496] = { - [sym_do] = STATE(1409), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1409), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1409), - [sym_lambda] = STATE(1409), - [sym__application] = STATE(1409), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1077), }, [497] = { - [sym_do] = STATE(1410), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1410), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1410), - [sym_lambda] = STATE(1410), - [sym__application] = STATE(1410), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__binding_name] = STATE(1363), + [sym_anonymous_name] = STATE(1362), + [aux_sym_infix_repeat1] = STATE(1363), + [anon_sym__] = ACTIONS(2275), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2277), }, [498] = { - [sym_anonymous_name] = STATE(502), - [sym__binding_name] = STATE(1415), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2318), - [anon_sym_] = ACTIONS(2320), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2279), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_LBRACE] = ACTIONS(2324), - [sym_name] = ACTIONS(785), }, [499] = { - [sym_do] = STATE(1417), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1417), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1417), - [sym_lambda] = STATE(1417), - [sym_open] = STATE(1416), - [sym__application] = STATE(1417), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1147), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1147), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, [500] = { - [sym_literal] = STATE(660), - [sym__field_assignments1] = STATE(1419), - [sym_field_assignment] = STATE(1420), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1421), - [sym__atom_no_curly] = STATE(672), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym_do] = STATE(1421), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [sym__application] = STATE(1421), - [sym__expr2] = STATE(1421), - [sym_lambda] = STATE(1421), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2326), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__module_name] = STATE(1365), + [sym_qualified_name] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [501] = { - [sym_record_declarations_block] = STATE(1423), - [sym__newline] = ACTIONS(2328), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(2330), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(2328), + [sym_name] = ACTIONS(2281), }, [502] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), + [sym_literal] = STATE(1367), + [sym__open_args1] = STATE(1378), + [sym_import_directive] = STATE(1381), + [sym_atom] = STATE(1380), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_record_assignments] = STATE(1367), + [aux_sym__open_args1_repeat1] = STATE(1380), + [aux_sym_module_macro_repeat1] = STATE(1381), + [sym__open_as] = STATE(1382), + [sym__newline] = ACTIONS(1151), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2305), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(1181), }, [503] = { - [anon_sym_COLON] = ACTIONS(2332), - [anon_sym_where] = ACTIONS(2334), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_rewrite] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [504] = { - [sym_typed_binding] = STATE(1426), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(1426), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(1426), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(1423), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(1293), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), + [sym__expr2] = STATE(1383), + [sym_do] = STATE(1383), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1383), + [sym_lambda] = STATE(1383), + [sym__application] = STATE(1383), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [505] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym__expr2] = STATE(1384), + [sym_do] = STATE(1384), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1384), + [sym_lambda] = STATE(1384), + [sym__application] = STATE(1384), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym_name] = ACTIONS(1153), }, [506] = { + [sym_anonymous_name] = STATE(509), + [sym__binding_name] = STATE(1389), + [anon_sym__] = ACTIONS(781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2309), + [anon_sym_] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_2] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2315), + [sym_name] = ACTIONS(795), }, [507] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2336), + [sym_open] = STATE(1391), + [sym__expr2] = STATE(1390), + [sym_do] = STATE(1390), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1390), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1390), + [sym_lambda] = STATE(1390), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [508] = { - [sym_primitive] = STATE(1428), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1428), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1428), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1429), - [sym_field] = STATE(1428), - [sym_abstract] = STATE(1428), - [sym_private] = STATE(1428), - [sym_function_clause] = STATE(1428), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1428), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1428), - [sym_data] = STATE(1428), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1428), - [sym_macro] = STATE(1428), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1428), - [sym_record_signature_only] = STATE(1428), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1428), - [sym_syntax] = STATE(1428), - [sym_record] = STATE(1428), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1428), - [sym_generalize] = STATE(1428), - [sym_mutual] = STATE(1428), - [sym_postulate] = STATE(1428), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(1392), + [sym_do] = STATE(1392), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(1392), + [sym_let] = STATE(1392), + [sym_lambda] = STATE(1392), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [509] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2338), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_rewrite] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [510] = { - [sym_primitive] = STATE(1431), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1431), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1431), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1431), - [sym_abstract] = STATE(1431), - [sym_private] = STATE(1431), - [sym_function_clause] = STATE(1431), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1431), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1431), - [sym_data] = STATE(1431), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1431), - [sym_macro] = STATE(1431), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1431), - [sym_record_signature_only] = STATE(1431), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1431), - [sym_syntax] = STATE(1431), - [sym_record] = STATE(1431), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1431), - [sym_generalize] = STATE(1431), - [sym_mutual] = STATE(1431), - [sym_postulate] = STATE(1431), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_anonymous_name] = STATE(509), + [sym_typed_binding] = STATE(510), + [sym_untyped_binding] = STATE(510), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(512), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(783), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(793), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(795), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(785), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_rewrite] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [511] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), + [sym__newline] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(2319), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_2] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1303), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [anon_sym_rewrite] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), }, [512] = { - [sym_do] = STATE(1432), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1432), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1432), - [sym_lambda] = STATE(1432), - [sym__application] = STATE(1432), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_rewrite] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [513] = { - [sym_do] = STATE(1433), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1433), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1433), - [sym_lambda] = STATE(1433), - [sym__application] = STATE(1433), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2251), }, [514] = { - [sym_anonymous_name] = STATE(517), - [sym__binding_name] = STATE(1438), - [anon_sym__] = ACTIONS(791), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2340), - [anon_sym_] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2251), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2346), - [sym_name] = ACTIONS(805), }, [515] = { - [sym_do] = STATE(1440), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1440), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1440), - [sym_lambda] = STATE(1440), - [sym_open] = STATE(1439), - [sym__application] = STATE(1440), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1395), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(767), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [516] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1441), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(1441), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(1441), - [sym__expr2] = STATE(1441), - [sym_lambda] = STATE(1441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [517] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_2] = ACTIONS(1139), + [anon_sym_RBRACE] = ACTIONS(2321), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), }, [518] = { - [sym_typed_binding] = STATE(518), - [sym_anonymous_name] = STATE(517), - [sym_untyped_binding] = STATE(518), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(520), - [anon_sym__] = ACTIONS(791), - [anon_sym_LBRACE_LBRACE] = ACTIONS(793), - [anon_sym_] = ACTIONS(795), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(2348), - [anon_sym_2] = ACTIONS(1143), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(803), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(805), + [sym_let] = STATE(43), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), + [sym_pragma] = ACTIONS(3), }, [519] = { - [anon_sym_2] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(2350), + [sym__binding_name] = STATE(571), + [sym_anonymous_name] = STATE(568), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(570), + [sym_untyped_binding] = STATE(570), + [sym_typed_binding] = STATE(570), + [sym__typed_untyped_binding1] = STATE(1413), + [anon_sym_COLON] = ACTIONS(2345), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1409), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), }, [520] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_2] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [sym__binding_name] = STATE(964), + [sym_anonymous_name] = STATE(961), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(963), + [sym_untyped_binding] = STATE(963), + [sym_typed_binding] = STATE(963), + [sym__typed_untyped_binding1] = STATE(1415), + [anon_sym__] = ACTIONS(1473), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1475), + [anon_sym_] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1491), }, [521] = { - [anon_sym_RPAREN] = ACTIONS(2336), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), }, [522] = { - [anon_sym_in] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [523] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1446), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(2354), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [524] = { - [anon_sym_LBRACE] = ACTIONS(2356), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1418), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2349), }, [525] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2336), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1419), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2349), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [526] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(507), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1420), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [527] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(521), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(787), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1422), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2351), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [528] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(525), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1423), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [529] = { - [sym__atom_no_curly] = STATE(114), - [sym_literal] = STATE(95), - [sym_record_assignments] = STATE(95), - [sym__atom_curly] = STATE(114), - [sym_atom] = STATE(506), - [anon_sym__] = ACTIONS(149), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(877), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(879), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(875), - [anon_sym_DOT] = ACTIONS(823), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_3] = ACTIONS(179), - [aux_sym_string_token1] = ACTIONS(175), - [anon_sym_Prop] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1424), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [530] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(533), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [531] = { + [sym__atom_curly] = STATE(533), + [sym__atom_no_curly] = STATE(533), + [sym_literal] = STATE(522), + [sym_record_assignments] = STATE(522), + [sym_atom] = STATE(1417), + [anon_sym__] = ACTIONS(809), + [anon_sym_quoteTerm] = ACTIONS(809), + [anon_sym_LBRACE_LBRACE] = ACTIONS(813), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(811), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(815), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2336), - }, - [532] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_2] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_LPAREN_PIPE] = ACTIONS(817), + [sym_qualified_name] = ACTIONS(809), + [anon_sym_quote] = ACTIONS(809), + [anon_sym_3] = ACTIONS(821), + [anon_sym_Prop] = ACTIONS(809), + [sym__const_ellipsis] = ACTIONS(809), + [anon_sym_record] = ACTIONS(819), + [anon_sym_] = ACTIONS(823), + [anon_sym_unquote] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(827), + [aux_sym_string_token1] = ACTIONS(829), + [anon_sym_Set] = ACTIONS(809), + }, + [531] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1426), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [532] = { + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(475), + [anon_sym_module] = ACTIONS(475), }, [533] = { + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2358), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [534] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [aux_sym_test_repeat1] = STATE(534), + [sym__newline] = ACTIONS(1556), + [anon_sym_in] = ACTIONS(1556), + [sym_test2] = ACTIONS(2357), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), }, [535] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1450), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2360), + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(1001), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [536] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym_literal] = STATE(1448), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1463), + [sym__atom_no_curly] = STATE(1463), + [aux_sym__open_args1_repeat1] = STATE(1464), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1465), + [sym_record_assignments] = STATE(1448), + [sym__with_expr] = STATE(1029), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2392), + [anon_sym_quoteTerm] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(2396), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2404), + [sym_qualified_name] = ACTIONS(2392), + [anon_sym_quote] = ACTIONS(2392), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(2410), + [sym__const_ellipsis] = ACTIONS(2392), + [anon_sym_3] = ACTIONS(2412), + [anon_sym_] = ACTIONS(2414), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [anon_sym_Set] = ACTIONS(2392), }, [537] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1451), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2360), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(1047), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), + [sym_pragma] = ACTIONS(3), }, [538] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1453), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2362), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_with_expressions] = STATE(1053), + [sym__newline] = ACTIONS(1663), + [anon_sym_with] = ACTIONS(835), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1663), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_where] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), }, [539] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1454), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2364), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(2271), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [540] = { - [sym__atom_no_curly] = STATE(544), - [sym_literal] = STATE(534), - [sym_record_assignments] = STATE(534), - [sym__atom_curly] = STATE(544), - [sym_atom] = STATE(1449), - [anon_sym__] = ACTIONS(829), - [anon_sym_unquote] = ACTIONS(829), - [anon_sym_LBRACE_LBRACE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(833), - [anon_sym_Set] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(835), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(829), - [anon_sym_quoteTerm] = ACTIONS(829), - [anon_sym_quote] = ACTIONS(829), - [sym__const_ellipsis] = ACTIONS(829), - [anon_sym_record] = ACTIONS(837), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(841), - [anon_sym_LPAREN_PIPE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_3] = ACTIONS(847), - [aux_sym_string_token1] = ACTIONS(849), - [anon_sym_Prop] = ACTIONS(829), + [sym_primitive] = STATE(35), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(35), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(35), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(35), + [sym_abstract] = STATE(35), + [sym_private] = STATE(35), + [sym_function_clause] = STATE(35), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(35), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(35), + [sym_data] = STATE(35), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(35), + [sym_macro] = STATE(35), + [sym_test] = STATE(35), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(35), + [sym_record_signature_only] = STATE(35), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(35), + [sym_syntax] = STATE(35), + [sym_record] = STATE(35), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(35), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(35), + [sym_mutual] = STATE(35), + [sym_postulate] = STATE(35), + [anon_sym_pattern] = ACTIONS(1665), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(1668), + [anon_sym_abstract] = ACTIONS(1671), + [anon_sym_LPAREN_PIPE] = ACTIONS(1674), + [sym_qualified_name] = ACTIONS(1677), + [anon_sym_quote] = ACTIONS(1677), + [anon_sym_tactic] = ACTIONS(1680), + [anon_sym_Prop] = ACTIONS(1677), + [sym__const_ellipsis] = ACTIONS(1677), + [anon_sym_record] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_3] = ACTIONS(1689), + [anon_sym_] = ACTIONS(1692), + [anon_sym_syntax] = ACTIONS(1695), + [anon_sym_instance] = ACTIONS(1698), + [anon_sym_infix] = ACTIONS(1701), + [sym_test2] = ACTIONS(1704), + [anon_sym_macro] = ACTIONS(1707), + [anon_sym_field] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1713), + [anon_sym_generalize] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1719), + [sym__const_lambda] = ACTIONS(1722), + [anon_sym_quoteGoal] = ACTIONS(1725), + [aux_sym_integer_token1] = ACTIONS(1728), + [anon_sym_open] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_QMARK] = ACTIONS(1677), + [anon_sym_quoteTerm] = ACTIONS(1677), + [anon_sym_codata] = ACTIONS(1740), + [anon_sym_infixr] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(1701), + [anon_sym_postulate] = ACTIONS(1743), + [anon_sym_mutual] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_unquote] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1752), + [sym__const_forall] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1758), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_data] = ACTIONS(1764), + [anon_sym_Set] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1767), }, [541] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1455), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(1054), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [542] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1457), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(1488), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1503), + [sym__atom_no_curly] = STATE(1503), + [aux_sym__open_args1_repeat1] = STATE(1504), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1505), + [sym_record_assignments] = STATE(1488), + [sym__with_expr] = STATE(1029), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2456), + [anon_sym_quoteTerm] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(2460), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(2456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2468), + [sym_qualified_name] = ACTIONS(2456), + [anon_sym_quote] = ACTIONS(2456), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(2474), + [sym__const_ellipsis] = ACTIONS(2456), + [anon_sym_3] = ACTIONS(2476), + [anon_sym_] = ACTIONS(2478), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [anon_sym_Set] = ACTIONS(2456), }, [543] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1458), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(43), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(1047), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), + [sym_pragma] = ACTIONS(3), }, [544] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_with_expressions] = STATE(1095), + [anon_sym_COLON] = ACTIONS(1834), + [sym__newline] = ACTIONS(1834), + [anon_sym_with] = ACTIONS(2520), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1834), + [anon_sym_where] = ACTIONS(1834), + [anon_sym_module] = ACTIONS(1834), }, [545] = { - [sym__atom_no_curly] = STATE(544), - [sym_literal] = STATE(534), - [sym_record_assignments] = STATE(534), - [sym__atom_curly] = STATE(544), - [sym_atom] = STATE(1459), - [aux_sym__open_args1_repeat1] = STATE(1459), - [anon_sym__] = ACTIONS(829), - [anon_sym_unquote] = ACTIONS(829), - [anon_sym_LBRACE_LBRACE] = ACTIONS(831), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(833), - [anon_sym_Set] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(835), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(829), - [anon_sym_quoteTerm] = ACTIONS(829), - [anon_sym_quote] = ACTIONS(829), - [sym__const_ellipsis] = ACTIONS(829), - [anon_sym_record] = ACTIONS(837), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(841), - [anon_sym_LPAREN_PIPE] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_3] = ACTIONS(847), - [aux_sym_string_token1] = ACTIONS(849), - [anon_sym_Prop] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(995), + [sym_name] = ACTIONS(993), }, [546] = { - [anon_sym_2] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(2368), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2522), }, [547] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym_RPAREN] = ACTIONS(2522), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [548] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(2522), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(2336), [sym_pragma] = ACTIONS(3), }, [549] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_4] = ACTIONS(2522), }, [550] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_2] = ACTIONS(119), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1530), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), }, [551] = { + [anon_sym_LBRACE] = ACTIONS(2526), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_2] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), }, [552] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1462), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2370), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(2522), + [sym_pragma] = ACTIONS(3), }, [553] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1463), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2370), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1533), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [554] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1465), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2372), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(413), + [sym_name] = ACTIONS(411), }, [555] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1466), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(1147), }, [556] = { - [sym__atom_no_curly] = STATE(560), - [sym_literal] = STATE(550), - [sym_record_assignments] = STATE(550), - [sym__atom_curly] = STATE(560), - [sym_atom] = STATE(1461), - [anon_sym__] = ACTIONS(853), - [anon_sym_unquote] = ACTIONS(853), - [anon_sym_LBRACE_LBRACE] = ACTIONS(857), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(855), - [anon_sym_Set] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(859), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(853), - [anon_sym_quoteTerm] = ACTIONS(853), - [anon_sym_quote] = ACTIONS(853), - [sym__const_ellipsis] = ACTIONS(853), - [anon_sym_record] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(865), - [anon_sym_LPAREN_PIPE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_3] = ACTIONS(873), - [aux_sym_string_token1] = ACTIONS(871), - [anon_sym_Prop] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [557] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1467), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [aux_sym__record_assignments1_repeat1] = STATE(1536), + [anon_sym_SEMI] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2538), + [sym_pragma] = ACTIONS(3), }, [558] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1469), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(1537), + [sym__open_args1] = STATE(1550), + [sym_import_directive] = STATE(1553), + [sym_atom] = STATE(1552), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_record_assignments] = STATE(1537), + [aux_sym__open_args1_repeat1] = STATE(1552), + [aux_sym_module_macro_repeat1] = STATE(1553), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2552), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2568), }, [559] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1470), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2570), + [sym_pragma] = ACTIONS(3), }, [560] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(1566), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_2] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), }, [561] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(562), - [sym__atom_curly] = STATE(560), - [sym_literal] = STATE(550), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(560), - [sym_record_assignments] = STATE(550), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(853), - [anon_sym_unquote] = ACTIONS(853), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(855), - [anon_sym_Set] = ACTIONS(853), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_LBRACE_LBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(853), - [anon_sym_quoteTerm] = ACTIONS(853), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(853), - [sym__const_ellipsis] = ACTIONS(853), - [anon_sym_record] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(865), - [anon_sym_LPAREN_PIPE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(871), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(853), - [anon_sym_3] = ACTIONS(873), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym_name] = ACTIONS(1185), }, [562] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_2] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym__expr2] = STATE(1571), + [sym_do] = STATE(1571), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1571), + [sym_lambda] = STATE(1571), + [sym__application] = STATE(1571), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [563] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(507), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(787), + [sym__expr2] = STATE(1572), + [sym_do] = STATE(1572), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1572), + [sym_lambda] = STATE(1572), + [sym__application] = STATE(1572), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [564] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(521), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(787), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_anonymous_name] = STATE(568), + [sym__binding_name] = STATE(1577), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2594), + [anon_sym_] = ACTIONS(2596), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2600), + [sym_name] = ACTIONS(879), }, [565] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(525), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(815), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_open] = STATE(1579), + [sym__expr2] = STATE(1578), + [sym_do] = STATE(1578), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1578), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1578), + [sym_lambda] = STATE(1578), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [566] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(533), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(758), + [sym__field_assignments1] = STATE(1581), + [sym_field_assignment] = STATE(1582), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym__expr2] = STATE(1583), + [sym_do] = STATE(1583), + [sym_atom] = STATE(769), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1583), + [sym_let] = STATE(1583), + [sym_lambda] = STATE(1583), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(2602), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [567] = { - [sym_simple_hole] = STATE(1473), - [sym__const_lambda] = ACTIONS(2378), + [sym_record_declarations_block] = STATE(1585), + [sym__newline] = ACTIONS(2604), + [anon_sym_in] = ACTIONS(2604), [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(2606), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), }, [568] = { + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), - [sym__const_lambda] = ACTIONS(2382), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym_name] = ACTIONS(1295), }, [569] = { - [sym_simple_hole] = STATE(1475), - [sym__const_lambda] = ACTIONS(2378), + [anon_sym_COLON] = ACTIONS(2608), + [anon_sym_where] = ACTIONS(2610), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), }, [570] = { - [sym_simple_hole] = STATE(1476), - [sym__const_lambda] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), + [sym_anonymous_name] = STATE(568), + [sym_typed_binding] = STATE(1588), + [sym_untyped_binding] = STATE(1588), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(1588), + [sym__binding_name] = STATE(571), + [anon_sym_COLON] = ACTIONS(1447), + [anon_sym__] = ACTIONS(863), + [anon_sym_LBRACE_LBRACE] = ACTIONS(865), + [anon_sym_] = ACTIONS(867), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(1409), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(877), + [sym_name] = ACTIONS(879), }, [571] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(2384), - [anon_sym_] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2386), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym_name] = ACTIONS(1309), }, [572] = { - [sym_hole_name] = STATE(1478), - [aux_sym_syntax_repeat1] = STATE(1478), - [anon_sym_LBRACE_LBRACE] = ACTIONS(887), - [anon_sym_] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(2388), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(883), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_4] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [573] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2612), }, [574] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2614), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1139), }, [575] = { - [sym__binding_name] = STATE(1479), - [aux_sym_infix_repeat1] = STATE(1479), - [sym_anonymous_name] = STATE(574), - [sym__newline] = ACTIONS(2390), - [anon_sym__] = ACTIONS(897), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_4] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [576] = { - [sym__field_name] = STATE(1482), - [aux_sym__arg_name_repeat1] = STATE(1482), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2394), - [sym_name] = ACTIONS(2396), + [sym__expr2] = STATE(1591), + [sym_do] = STATE(1591), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1591), + [sym_lambda] = STATE(1591), + [sym__application] = STATE(1591), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [577] = { - [sym__field_name] = STATE(586), - [sym__arg_names] = STATE(1483), - [sym__arg_name] = STATE(586), - [aux_sym__arg_names_repeat1] = STATE(586), - [anon_sym_LBRACE_LBRACE] = ACTIONS(903), - [anon_sym_] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(909), + [sym__expr2] = STATE(1592), + [sym_do] = STATE(1592), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1592), + [sym_lambda] = STATE(1592), + [sym__application] = STATE(1592), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(915), - [sym_name] = ACTIONS(917), }, [578] = { - [sym__field_name] = STATE(1486), - [aux_sym__arg_name_repeat1] = STATE(1486), - [anon_sym_DOT_DOT] = ACTIONS(2398), + [sym_anonymous_name] = STATE(581), + [sym__binding_name] = STATE(1597), + [anon_sym__] = ACTIONS(885), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2616), + [anon_sym_] = ACTIONS(2618), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2400), - [sym_name] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2622), + [sym_name] = ACTIONS(899), }, [579] = { - [sym__field_name] = STATE(1490), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2406), - [anon_sym_] = ACTIONS(2408), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(917), + [sym_open] = STATE(1599), + [sym__expr2] = STATE(1598), + [sym_do] = STATE(1598), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1598), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1598), + [sym_lambda] = STATE(1598), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [580] = { - [sym__field_name] = STATE(1491), - [aux_sym__arg_name_repeat1] = STATE(1491), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2394), - [sym_name] = ACTIONS(2396), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(1600), + [sym_do] = STATE(1600), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(1600), + [sym_let] = STATE(1600), + [sym_lambda] = STATE(1600), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [581] = { - [sym__type_sig_block] = STATE(1492), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_4] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(185), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [582] = { - [anon_sym_COLON] = ACTIONS(2410), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2412), - [anon_sym_] = ACTIONS(2410), + [sym_anonymous_name] = STATE(581), + [sym_typed_binding] = STATE(582), + [sym_untyped_binding] = STATE(582), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(584), + [anon_sym__] = ACTIONS(885), + [anon_sym_4] = ACTIONS(1299), + [anon_sym_LBRACE_LBRACE] = ACTIONS(887), + [anon_sym_] = ACTIONS(889), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(2624), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [sym_name] = ACTIONS(2410), + [anon_sym_DOT_DOT] = ACTIONS(897), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(899), }, [583] = { - [sym__newline] = ACTIONS(2414), + [anon_sym_4] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(2626), }, [584] = { - [sym__field_name] = STATE(586), - [sym_type_sig_instance] = STATE(583), - [aux_sym__type_sig_block_repeat1] = STATE(1495), - [aux_sym__arg_names_repeat1] = STATE(586), - [sym__arg_names] = STATE(585), - [sym__arg_name] = STATE(586), - [sym_type_sig] = STATE(583), - [anon_sym_LBRACE_LBRACE] = ACTIONS(903), - [anon_sym_overlap] = ACTIONS(905), - [anon_sym_] = ACTIONS(907), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_4] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(909), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_instance] = ACTIONS(913), - [sym__dedent] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(915), - [sym_name] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [585] = { - [anon_sym_COLON] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2612), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [586] = { - [sym__field_name] = STATE(1497), - [sym__arg_name] = STATE(1497), - [aux_sym__arg_names_repeat1] = STATE(1497), - [anon_sym_COLON] = ACTIONS(2420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(903), - [anon_sym_] = ACTIONS(907), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_4] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(909), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(915), - [sym_name] = ACTIONS(917), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [587] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(2422), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1604), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2628), }, [588] = { - [sym_typed_binding] = STATE(448), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(448), - [sym__lambda_binding] = STATE(1500), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(695), - [anon_sym_] = ACTIONS(697), - [anon_sym_EQ] = ACTIONS(2424), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(705), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_4] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [589] = { - [anon_sym_in] = ACTIONS(2426), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1605), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2628), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [590] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1503), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(2428), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1606), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [591] = { - [sym_typed_binding] = STATE(504), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(504), - [sym__typed_untyped_binding1] = STATE(1506), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(504), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(2430), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(2432), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1607), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [592] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1609), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2630), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [593] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2422), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1610), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2632), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [594] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(2434), + [sym__atom_curly] = STATE(596), + [sym__atom_no_curly] = STATE(596), + [sym_literal] = STATE(586), + [sym_record_assignments] = STATE(586), + [sym_atom] = STATE(1603), + [anon_sym__] = ACTIONS(901), + [anon_sym_quoteTerm] = ACTIONS(901), + [anon_sym_LBRACE_LBRACE] = ACTIONS(903), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(907), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(909), + [sym_qualified_name] = ACTIONS(901), + [anon_sym_quote] = ACTIONS(901), + [anon_sym_3] = ACTIONS(911), + [anon_sym_Prop] = ACTIONS(901), + [sym__const_ellipsis] = ACTIONS(901), + [anon_sym_record] = ACTIONS(913), + [anon_sym_] = ACTIONS(915), + [anon_sym_unquote] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(919), + [aux_sym_string_token1] = ACTIONS(921), + [anon_sym_Set] = ACTIONS(901), }, [595] = { - [sym_primitive] = STATE(1509), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1509), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1509), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(1509), - [sym_abstract] = STATE(1509), - [sym_private] = STATE(1509), - [sym_function_clause] = STATE(1509), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1509), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1509), - [sym_data] = STATE(1509), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1509), - [sym_macro] = STATE(1509), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1509), - [sym_record_signature_only] = STATE(1509), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1509), - [sym_syntax] = STATE(1509), - [sym_record] = STATE(1509), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1509), - [sym_generalize] = STATE(1509), - [sym_mutual] = STATE(1509), - [sym_postulate] = STATE(1509), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1612), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [596] = { - [sym_hole_name] = STATE(1510), - [aux_sym_syntax_repeat1] = STATE(1510), - [anon_sym_LBRACE] = ACTIONS(883), - [sym_name] = ACTIONS(885), - [anon_sym_LBRACE_LBRACE] = ACTIONS(887), - [anon_sym_] = ACTIONS(889), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_4] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [597] = { - [sym__binding_name] = STATE(1513), - [aux_sym_infix_repeat1] = STATE(1513), - [sym_anonymous_name] = STATE(1512), - [anon_sym__] = ACTIONS(2438), + [sym__atom_curly] = STATE(596), + [sym__atom_no_curly] = STATE(596), + [sym_literal] = STATE(586), + [sym_record_assignments] = STATE(586), + [sym_atom] = STATE(1613), + [aux_sym__open_args1_repeat1] = STATE(1613), + [anon_sym__] = ACTIONS(901), + [anon_sym_4] = ACTIONS(419), + [anon_sym_quoteTerm] = ACTIONS(901), + [anon_sym_LBRACE_LBRACE] = ACTIONS(903), + [aux_sym_integer_token1] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(907), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(909), + [sym_qualified_name] = ACTIONS(901), + [anon_sym_quote] = ACTIONS(901), + [anon_sym_3] = ACTIONS(911), + [anon_sym_Prop] = ACTIONS(901), + [sym__const_ellipsis] = ACTIONS(901), + [anon_sym_record] = ACTIONS(913), + [anon_sym_] = ACTIONS(915), + [anon_sym_unquote] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(919), + [aux_sym_string_token1] = ACTIONS(921), + [anon_sym_Set] = ACTIONS(901), + }, + [598] = { + [anon_sym_4] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2636), }, - [598] = { - [sym_primitive] = STATE(1514), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1514), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1514), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1515), - [sym_field] = STATE(1514), - [sym_abstract] = STATE(1514), - [sym_private] = STATE(1514), - [sym_function_clause] = STATE(1514), - [sym_lhs_decl] = STATE(155), + [599] = { + [sym_primitive] = STATE(1615), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1615), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1615), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1615), + [sym_abstract] = STATE(1615), + [sym_private] = STATE(1615), + [sym_function_clause] = STATE(1615), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1514), + [sym_open] = STATE(1615), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1616), + [sym_infix] = STATE(1615), + [sym_data] = STATE(1615), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1514), - [sym_data] = STATE(1514), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1514), - [sym_macro] = STATE(1514), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1514), - [sym_record_signature_only] = STATE(1514), - [sym_atom] = STATE(158), + [sym_instance] = STATE(1615), + [sym_macro] = STATE(1615), + [sym_test] = STATE(1615), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1615), + [sym_record_signature_only] = STATE(1615), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1615), + [sym_syntax] = STATE(1615), + [sym_record] = STATE(1615), [sym_do] = STATE(43), - [sym_pattern] = STATE(1514), - [sym_syntax] = STATE(1514), - [sym_record] = STATE(1514), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1514), - [sym_generalize] = STATE(1514), - [sym_mutual] = STATE(1514), - [sym_postulate] = STATE(1514), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1615), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1615), + [sym_mutual] = STATE(1615), + [sym_postulate] = STATE(1615), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [599] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2442), + [600] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [600] = { - [sym_primitive] = STATE(1517), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1517), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1517), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1517), - [sym_abstract] = STATE(1517), - [sym_private] = STATE(1517), - [sym_function_clause] = STATE(1517), - [sym_lhs_decl] = STATE(155), + [601] = { + [sym_primitive] = STATE(1618), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1618), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1618), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1618), + [sym_abstract] = STATE(1618), + [sym_private] = STATE(1618), + [sym_function_clause] = STATE(1618), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1517), + [sym_open] = STATE(1618), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1618), + [sym_data] = STATE(1618), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1517), - [sym_data] = STATE(1517), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1517), - [sym_macro] = STATE(1517), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1517), - [sym_record_signature_only] = STATE(1517), - [sym_atom] = STATE(158), + [sym_instance] = STATE(1618), + [sym_macro] = STATE(1618), + [sym_test] = STATE(1618), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1618), + [sym_record_signature_only] = STATE(1618), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1618), + [sym_syntax] = STATE(1618), + [sym_record] = STATE(1618), [sym_do] = STATE(43), - [sym_pattern] = STATE(1517), - [sym_syntax] = STATE(1517), - [sym_record] = STATE(1517), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1517), - [sym_generalize] = STATE(1517), - [sym_mutual] = STATE(1517), - [sym_postulate] = STATE(1517), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1618), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1618), + [sym_mutual] = STATE(1618), + [sym_postulate] = STATE(1618), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [601] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), + [602] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1620), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2640), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_rewrite] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), - }, - [602] = { - [sym_do] = STATE(1518), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1518), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1518), - [sym_lambda] = STATE(1518), - [sym__application] = STATE(1518), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), }, [603] = { - [sym_do] = STATE(1519), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1519), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1519), - [sym_lambda] = STATE(1519), - [sym__application] = STATE(1519), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(2642), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [604] = { - [sym_anonymous_name] = STATE(607), - [sym__binding_name] = STATE(1524), - [anon_sym__] = ACTIONS(937), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2444), - [anon_sym_] = ACTIONS(2446), + [anon_sym_PIPE_RPAREN] = ACTIONS(2612), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2450), - [sym_name] = ACTIONS(951), }, [605] = { - [sym_do] = STATE(1526), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1526), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1526), - [sym_lambda] = STATE(1526), - [sym_open] = STATE(1525), - [sym__application] = STATE(1526), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(2612), + [sym_pragma] = ACTIONS(3), }, [606] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1527), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(1527), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(1527), - [sym__expr2] = STATE(1527), - [sym_lambda] = STATE(1527), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(2612), }, [607] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_rewrite] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(573), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(881), }, [608] = { - [sym_typed_binding] = STATE(608), - [sym_anonymous_name] = STATE(607), - [sym_untyped_binding] = STATE(608), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(610), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(937), - [anon_sym_LBRACE_LBRACE] = ACTIONS(939), - [anon_sym_in] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(945), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(949), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(951), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(941), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_rewrite] = ACTIONS(1143), - [anon_sym_module] = ACTIONS(1143), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(585), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(881), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [609] = { - [sym__newline] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(2454), - [anon_sym_with] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [anon_sym_rewrite] = ACTIONS(1147), - [anon_sym_module] = ACTIONS(1147), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(605), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [610] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_rewrite] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_literal] = STATE(140), + [sym_record_assignments] = STATE(140), + [sym_atom] = STATE(572), + [anon_sym__] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(943), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(945), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_3] = ACTIONS(239), + [anon_sym_Prop] = ACTIONS(217), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_record] = ACTIONS(233), + [anon_sym_] = ACTIONS(941), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(947), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), }, [611] = { - [sym__newline] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [anon_sym_in] = ACTIONS(1157), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_as] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(613), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [612] = { - [sym__module_name] = STATE(1530), - [sym_qualified_name] = ACTIONS(955), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_4] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [613] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2644), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2456), }, [614] = { - [sym_literal] = STATE(1532), - [sym_atom] = STATE(1546), - [sym__atom_curly] = STATE(1543), - [sym_import_directive] = STATE(1544), - [aux_sym_module_macro_repeat1] = STATE(1544), - [sym__open_args1] = STATE(1545), - [sym__atom_no_curly] = STATE(1543), - [sym_record_assignments] = STATE(1532), - [aux_sym__open_args1_repeat1] = STATE(1546), - [sym__open_as] = STATE(1547), - [sym__newline] = ACTIONS(1161), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(2462), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_3] = ACTIONS(2482), - [anon_sym_public] = ACTIONS(1191), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [615] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2422), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(573), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(881), }, [616] = { - [anon_sym_RPAREN] = ACTIONS(2422), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(585), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(881), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [617] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1548), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(929), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(605), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(927), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [618] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2422), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(613), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [619] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - }, - [620] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2484), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, - [621] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), - }, - [622] = { - [sym__newline] = ACTIONS(121), + [620] = { [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_4] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, - [623] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1566), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [621] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2508), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_4] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + }, + [622] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1624), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2646), + }, + [623] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1625), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2646), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [624] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1626), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [625] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1567), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2508), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1628), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2648), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [626] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1569), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2510), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1629), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [627] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1570), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1630), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2650), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [628] = { - [sym__atom_no_curly] = STATE(632), - [sym_literal] = STATE(622), - [sym_record_assignments] = STATE(622), - [sym__atom_curly] = STATE(632), - [sym_atom] = STATE(1565), - [anon_sym__] = ACTIONS(965), - [anon_sym_unquote] = ACTIONS(965), - [anon_sym_LBRACE_LBRACE] = ACTIONS(967), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(969), - [anon_sym_Set] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(971), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(965), - [anon_sym_quoteTerm] = ACTIONS(965), - [anon_sym_quote] = ACTIONS(965), - [sym__const_ellipsis] = ACTIONS(965), - [anon_sym_record] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_LPAREN_PIPE] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_3] = ACTIONS(983), - [aux_sym_string_token1] = ACTIONS(985), - [anon_sym_Prop] = ACTIONS(965), + [sym__atom_curly] = STATE(630), + [sym__atom_no_curly] = STATE(630), + [sym_literal] = STATE(620), + [sym_record_assignments] = STATE(620), + [sym_atom] = STATE(1623), + [anon_sym__] = ACTIONS(951), + [anon_sym_quoteTerm] = ACTIONS(951), + [anon_sym_LBRACE_LBRACE] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(957), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(959), + [sym_qualified_name] = ACTIONS(951), + [anon_sym_quote] = ACTIONS(951), + [anon_sym_3] = ACTIONS(963), + [anon_sym_Prop] = ACTIONS(951), + [sym__const_ellipsis] = ACTIONS(951), + [anon_sym_record] = ACTIONS(961), + [anon_sym_] = ACTIONS(965), + [anon_sym_unquote] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [aux_sym_string_token1] = ACTIONS(971), + [anon_sym_Set] = ACTIONS(951), }, [629] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1571), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1632), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [630] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1573), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_4] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [631] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1574), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_literal] = STATE(620), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(632), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(630), + [sym__atom_no_curly] = STATE(630), + [sym_record_assignments] = STATE(620), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(951), + [anon_sym_quoteTerm] = ACTIONS(951), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(953), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_LBRACE_LBRACE] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_LPAREN_PIPE] = ACTIONS(959), + [sym_qualified_name] = ACTIONS(951), + [anon_sym_quote] = ACTIONS(951), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(951), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(961), + [sym__const_ellipsis] = ACTIONS(951), + [anon_sym_3] = ACTIONS(963), + [anon_sym_] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(971), + [anon_sym_Set] = ACTIONS(951), + [sym_pragma] = ACTIONS(3), }, [632] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_4] = ACTIONS(475), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [633] = { - [sym__atom_no_curly] = STATE(632), - [sym_literal] = STATE(622), - [sym_record_assignments] = STATE(622), - [sym__atom_curly] = STATE(632), - [sym_atom] = STATE(1575), - [aux_sym__open_args1_repeat1] = STATE(1575), - [sym__newline] = ACTIONS(1455), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(965), - [anon_sym_quoteTerm] = ACTIONS(965), - [anon_sym_quote] = ACTIONS(965), - [sym__const_ellipsis] = ACTIONS(965), - [anon_sym_record] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(965), - [anon_sym_with] = ACTIONS(425), - [anon_sym_] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym__] = ACTIONS(965), - [anon_sym_unquote] = ACTIONS(965), - [anon_sym_LBRACE_LBRACE] = ACTIONS(967), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(969), - [anon_sym_Set] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(971), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_LPAREN_PIPE] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(981), - [anon_sym_3] = ACTIONS(983), - [aux_sym_string_token1] = ACTIONS(985), - [anon_sym_Prop] = ACTIONS(965), - [anon_sym_rewrite] = ACTIONS(425), - [anon_sym_module] = ACTIONS(425), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [634] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(2516), - [anon_sym_with] = ACTIONS(1457), - [anon_sym_in] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1457), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_rewrite] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2654), }, [635] = { - [sym_typed_binding] = STATE(504), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(504), - [sym__typed_untyped_binding1] = STATE(1578), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(504), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(2518), - [anon_sym__] = ACTIONS(769), - [anon_sym_LBRACE_LBRACE] = ACTIONS(771), - [anon_sym_] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2656), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(783), - [sym_name] = ACTIONS(785), }, [636] = { - [sym_typed_binding] = STATE(959), - [sym_anonymous_name] = STATE(957), - [sym_untyped_binding] = STATE(959), - [sym__typed_untyped_binding1] = STATE(1580), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(959), - [sym__binding_name] = STATE(960), - [anon_sym__] = ACTIONS(1463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1465), - [anon_sym_] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1481), - }, - [637] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_2] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + }, + [637] = { + [sym__expr2] = STATE(1635), + [sym_do] = STATE(1635), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1635), + [sym_lambda] = STATE(1635), + [sym__application] = STATE(1635), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [638] = { - [sym_literal] = STATE(1582), - [sym__with_expr] = STATE(987), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1598), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1599), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1600), - [sym__atom_curly] = STATE(1598), - [sym_record_assignments] = STATE(1582), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2522), - [anon_sym_unquote] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(2528), - [anon_sym_Set] = ACTIONS(2522), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(1636), + [sym_do] = STATE(1636), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1636), + [sym_lambda] = STATE(1636), + [sym__application] = STATE(1636), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2522), - [anon_sym_quoteTerm] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2522), - [sym__const_ellipsis] = ACTIONS(2522), - [anon_sym_record] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_LPAREN_PIPE] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(2548), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2522), - [anon_sym_3] = ACTIONS(2552), }, [639] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(1006), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), - }, - [640] = { - [sym_with_expressions] = STATE(1012), - [sym__newline] = ACTIONS(1565), - [anon_sym_with] = ACTIONS(993), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1565), + [sym_anonymous_name] = STATE(642), + [sym__binding_name] = STATE(1641), + [anon_sym__] = ACTIONS(977), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2658), + [anon_sym_] = ACTIONS(2660), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2664), + [sym_name] = ACTIONS(991), + }, + [640] = { + [sym_open] = STATE(1643), + [sym__expr2] = STATE(1642), + [sym_do] = STATE(1642), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1642), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1642), + [sym_lambda] = STATE(1642), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [641] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(1644), + [sym_do] = STATE(1644), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(1644), + [sym_let] = STATE(1644), + [sym_lambda] = STATE(1644), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [642] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_2] = ACTIONS(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [643] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1623), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2586), + [sym_anonymous_name] = STATE(642), + [sym_typed_binding] = STATE(643), + [sym_untyped_binding] = STATE(643), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(645), + [anon_sym__] = ACTIONS(977), + [anon_sym_LBRACE_LBRACE] = ACTIONS(979), + [anon_sym_] = ACTIONS(981), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(983), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_2] = ACTIONS(1299), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(989), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(991), }, [644] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1624), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2586), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_2] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(2668), }, [645] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1626), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2588), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_2] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [646] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1627), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2590), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_RPAREN] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [647] = { - [sym__atom_no_curly] = STATE(652), - [sym_literal] = STATE(641), - [sym_record_assignments] = STATE(641), - [sym__atom_curly] = STATE(652), - [sym_atom] = STATE(1622), - [anon_sym__] = ACTIONS(997), - [anon_sym_unquote] = ACTIONS(997), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1001), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(999), - [anon_sym_Set] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(1003), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(997), - [anon_sym_quoteTerm] = ACTIONS(997), - [anon_sym_quote] = ACTIONS(997), - [sym__const_ellipsis] = ACTIONS(997), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_LPAREN_PIPE] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_3] = ACTIONS(1017), - [aux_sym_string_token1] = ACTIONS(1015), - [anon_sym_Prop] = ACTIONS(997), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [648] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1628), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1648), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2670), }, [649] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1630), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [650] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1631), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1649), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2670), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [651] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1650), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [652] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1651), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [653] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1653), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2672), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [654] = { - [sym_primitive] = STATE(35), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(35), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(35), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(35), - [sym_abstract] = STATE(35), - [sym_private] = STATE(35), - [sym_function_clause] = STATE(35), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(35), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(35), - [sym_data] = STATE(35), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(35), - [sym_macro] = STATE(35), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(35), - [sym_record_signature_only] = STATE(35), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(35), - [sym_syntax] = STATE(35), - [sym_record] = STATE(35), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(35), - [sym_generalize] = STATE(35), - [sym_mutual] = STATE(35), - [sym_postulate] = STATE(35), - [anon_sym_3] = ACTIONS(1567), - [anon_sym_pattern] = ACTIONS(1570), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(1573), - [anon_sym_quoteGoal] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1579), - [sym_qualified_name] = ACTIONS(1582), - [anon_sym_quoteTerm] = ACTIONS(1582), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_quote] = ACTIONS(1582), - [sym__const_ellipsis] = ACTIONS(1582), - [anon_sym_record] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1582), - [anon_sym_] = ACTIONS(1591), - [anon_sym_syntax] = ACTIONS(1594), - [anon_sym_instance] = ACTIONS(1597), - [anon_sym_infix] = ACTIONS(1600), - [anon_sym_macro] = ACTIONS(1603), - [anon_sym_field] = ACTIONS(1606), - [anon_sym_private] = ACTIONS(1609), - [anon_sym_generalize] = ACTIONS(1612), - [anon_sym__] = ACTIONS(1582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1615), - [sym__const_lambda] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1621), - [aux_sym_integer_token1] = ACTIONS(1624), - [anon_sym_open] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_Set] = ACTIONS(1582), - [anon_sym_unquote] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(1633), - [anon_sym_infixr] = ACTIONS(1600), - [anon_sym_infixl] = ACTIONS(1600), - [anon_sym_postulate] = ACTIONS(1636), - [anon_sym_mutual] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1642), - [anon_sym_LPAREN_PIPE] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1648), - [sym__const_forall] = ACTIONS(1651), - [aux_sym_string_token1] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_data] = ACTIONS(1660), - [anon_sym_tactic] = ACTIONS(1663), - [anon_sym_Prop] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1666), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1654), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2674), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [655] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(1040), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [sym__atom_curly] = STATE(657), + [sym__atom_no_curly] = STATE(657), + [sym_literal] = STATE(647), + [sym_record_assignments] = STATE(647), + [sym_atom] = STATE(1647), + [anon_sym__] = ACTIONS(997), + [anon_sym_quoteTerm] = ACTIONS(997), + [anon_sym_LBRACE_LBRACE] = ACTIONS(999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1005), + [sym_qualified_name] = ACTIONS(997), + [anon_sym_quote] = ACTIONS(997), + [anon_sym_3] = ACTIONS(1007), + [anon_sym_Prop] = ACTIONS(997), + [sym__const_ellipsis] = ACTIONS(997), + [anon_sym_record] = ACTIONS(1009), + [anon_sym_] = ACTIONS(1011), + [anon_sym_unquote] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1017), + [anon_sym_Set] = ACTIONS(997), }, [656] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(1052), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1656), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [657] = { - [sym_literal] = STATE(1653), - [sym__with_expr] = STATE(987), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1669), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1670), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1671), - [sym__atom_curly] = STATE(1669), - [sym_record_assignments] = STATE(1653), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2626), - [anon_sym_unquote] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(2632), - [anon_sym_Set] = ACTIONS(2626), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2626), - [anon_sym_quoteTerm] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2626), - [sym__const_ellipsis] = ACTIONS(2626), - [anon_sym_record] = ACTIONS(2640), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LPAREN_PIPE] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(2626), - [anon_sym_3] = ACTIONS(2656), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [658] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(1006), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym__atom_curly] = STATE(657), + [sym__atom_no_curly] = STATE(657), + [sym_literal] = STATE(647), + [sym_record_assignments] = STATE(647), + [sym_atom] = STATE(1657), + [aux_sym__open_args1_repeat1] = STATE(1657), + [anon_sym__] = ACTIONS(997), + [anon_sym_quoteTerm] = ACTIONS(997), + [anon_sym_LBRACE_LBRACE] = ACTIONS(999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_2] = ACTIONS(419), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1005), + [sym_qualified_name] = ACTIONS(997), + [anon_sym_quote] = ACTIONS(997), + [anon_sym_3] = ACTIONS(1007), + [anon_sym_Prop] = ACTIONS(997), + [sym__const_ellipsis] = ACTIONS(997), + [anon_sym_record] = ACTIONS(1009), + [anon_sym_] = ACTIONS(1011), + [anon_sym_unquote] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1015), + [aux_sym_string_token1] = ACTIONS(1017), + [anon_sym_Set] = ACTIONS(997), }, [659] = { - [sym_with_expressions] = STATE(1093), - [anon_sym_COLON] = ACTIONS(1855), - [sym__newline] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(2690), - [anon_sym_in] = ACTIONS(1855), + [anon_sym_2] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(2678), }, [660] = { - [anon_sym_COLON] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), + [sym_primitive] = STATE(1659), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1659), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1659), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1659), + [sym_abstract] = STATE(1659), + [sym_private] = STATE(1659), + [sym_function_clause] = STATE(1659), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1659), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1660), + [sym_infix] = STATE(1659), + [sym_data] = STATE(1659), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1659), + [sym_macro] = STATE(1659), + [sym_test] = STATE(1659), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1659), + [sym_record_signature_only] = STATE(1659), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1659), + [sym_syntax] = STATE(1659), + [sym_record] = STATE(1659), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1659), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1659), + [sym_mutual] = STATE(1659), + [sym_postulate] = STATE(1659), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [661] = { - [anon_sym_COLON] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_3] = ACTIONS(253), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(2680), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [662] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1694), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2692), + [sym_primitive] = STATE(1662), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1662), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1662), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1662), + [sym_abstract] = STATE(1662), + [sym_private] = STATE(1662), + [sym_function_clause] = STATE(1662), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1662), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1662), + [sym_data] = STATE(1662), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1662), + [sym_macro] = STATE(1662), + [sym_test] = STATE(1662), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1662), + [sym_record_signature_only] = STATE(1662), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1662), + [sym_syntax] = STATE(1662), + [sym_record] = STATE(1662), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1662), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1662), + [sym_mutual] = STATE(1662), + [sym_postulate] = STATE(1662), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [663] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1695), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2692), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1664), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(2682), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [664] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1697), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2694), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [665] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1698), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2696), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_PIPE_RPAREN] = ACTIONS(2654), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [666] = { - [sym__atom_no_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym_record_assignments] = STATE(660), - [sym__atom_curly] = STATE(672), - [sym_atom] = STATE(1693), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_3] = ACTIONS(1051), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_Prop] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(2654), + [sym_pragma] = ACTIONS(3), }, [667] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1699), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(2654), }, [668] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1701), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(634), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(973), }, [669] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1702), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(646), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [670] = { - [sym__newline] = ACTIONS(2700), - [anon_sym_rewrite] = ACTIONS(2700), - [anon_sym_COLON] = ACTIONS(2700), - [anon_sym_with] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(2700), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_where] = ACTIONS(2700), - [sym__const_right_arrow] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2700), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(666), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1023), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [671] = { - [anon_sym_COLON] = ACTIONS(467), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_3] = ACTIONS(463), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_literal] = STATE(162), + [sym_record_assignments] = STATE(162), + [sym_atom] = STATE(633), + [anon_sym__] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1041), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_3] = ACTIONS(261), + [anon_sym_Prop] = ACTIONS(249), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_record] = ACTIONS(255), + [anon_sym_] = ACTIONS(1037), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1043), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [672] = { - [anon_sym_COLON] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(674), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [673] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(1703), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [674] = { - [anon_sym_COLON] = ACTIONS(2702), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2686), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2704), }, [675] = { - [anon_sym_COLON] = ACTIONS(119), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + }, + [676] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(634), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(973), + }, + [677] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(646), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(973), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [678] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(666), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(1023), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [679] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(674), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [680] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), + }, + [681] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_2] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [676] = { - [anon_sym_COLON] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_2] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - }, - [677] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1707), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2706), + [anon_sym_Set] = ACTIONS(119), }, - [678] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1708), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2706), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), + [682] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, - [679] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1710), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2708), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [680] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1711), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [681] = { - [sym__atom_no_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym_record_assignments] = STATE(675), - [sym__atom_curly] = STATE(686), - [sym_atom] = STATE(1706), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_3] = ACTIONS(1077), - [aux_sym_string_token1] = ACTIONS(1075), - [anon_sym_Prop] = ACTIONS(1055), - }, - [682] = { + [683] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1712), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1668), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [683] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1714), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2688), }, [684] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1715), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1669), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2688), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [685] = { - [anon_sym_COLON] = ACTIONS(467), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_2] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1670), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [686] = { - [anon_sym_COLON] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_2] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1672), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2690), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [687] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(1703), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1673), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [688] = { - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_2] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1674), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2692), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [689] = { - [sym_do] = STATE(1717), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1717), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1717), - [sym_lambda] = STATE(1717), - [sym__application] = STATE(1717), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(691), + [sym__atom_no_curly] = STATE(691), + [sym_literal] = STATE(681), + [sym_record_assignments] = STATE(681), + [sym_atom] = STATE(1667), + [anon_sym__] = ACTIONS(1047), + [anon_sym_quoteTerm] = ACTIONS(1047), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1053), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1055), + [sym_qualified_name] = ACTIONS(1047), + [anon_sym_quote] = ACTIONS(1047), + [anon_sym_3] = ACTIONS(1059), + [anon_sym_Prop] = ACTIONS(1047), + [sym__const_ellipsis] = ACTIONS(1047), + [anon_sym_record] = ACTIONS(1057), + [anon_sym_] = ACTIONS(1061), + [anon_sym_unquote] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [aux_sym_string_token1] = ACTIONS(1067), + [anon_sym_Set] = ACTIONS(1047), }, [690] = { - [sym_do] = STATE(1718), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1718), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1718), - [sym_lambda] = STATE(1718), - [sym__application] = STATE(1718), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1676), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [691] = { - [sym_do] = STATE(1719), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1719), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1719), - [sym_lambda] = STATE(1719), - [sym__application] = STATE(1719), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [692] = { - [sym_do] = STATE(1720), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1720), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1720), - [sym_lambda] = STATE(1720), - [sym__application] = STATE(1720), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_literal] = STATE(681), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(693), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(691), + [sym__atom_no_curly] = STATE(691), + [sym_record_assignments] = STATE(681), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1047), + [anon_sym_quoteTerm] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(1049), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_LPAREN_PIPE] = ACTIONS(1055), + [sym_qualified_name] = ACTIONS(1047), + [anon_sym_quote] = ACTIONS(1047), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(1057), + [sym__const_ellipsis] = ACTIONS(1047), + [anon_sym_3] = ACTIONS(1059), + [anon_sym_] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(1067), + [anon_sym_Set] = ACTIONS(1047), + [sym_pragma] = ACTIONS(3), }, [693] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_rewrite] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_2] = ACTIONS(475), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [694] = { - [sym_primitive] = STATE(1722), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1722), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1722), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1723), - [sym_field] = STATE(1722), - [sym_abstract] = STATE(1722), - [sym_private] = STATE(1722), - [sym_function_clause] = STATE(1722), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1722), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1722), - [sym_data] = STATE(1722), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1722), - [sym_macro] = STATE(1722), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1722), - [sym_record_signature_only] = STATE(1722), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1722), - [sym_syntax] = STATE(1722), - [sym_record] = STATE(1722), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1722), - [sym_generalize] = STATE(1722), - [sym_mutual] = STATE(1722), - [sym_postulate] = STATE(1722), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(2720), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_simple_hole] = STATE(1679), + [sym__const_lambda] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2698), }, [695] = { - [sym_typed_binding] = STATE(1724), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1724), - [sym__lambda_binding] = STATE(1725), - [sym__binding_name] = STATE(1108), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym_name] = ACTIONS(1877), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_lambda] = ACTIONS(2700), }, [696] = { + [sym_simple_hole] = STATE(1681), + [sym__const_lambda] = ACTIONS(2696), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2722), + [sym_name] = ACTIONS(2698), }, [697] = { - [sym__atom_no_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym_record_assignments] = STATE(660), - [sym__atom_curly] = STATE(672), - [sym_atom] = STATE(1693), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_3] = ACTIONS(1051), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_Prop] = ACTIONS(1031), + [sym_simple_hole] = STATE(1682), + [sym__const_lambda] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2698), }, [698] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [aux_sym__open_args1_repeat1] = STATE(1728), - [sym__atom_curly] = STATE(1132), - [sym_record_assignments] = STATE(1122), - [sym_atom] = STATE(1728), - [sym__atoms1] = STATE(1729), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2702), + [anon_sym_] = ACTIONS(2704), + [anon_sym_EQ] = ACTIONS(2704), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2704), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2704), }, [699] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1730), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [aux_sym_syntax_repeat1] = STATE(1684), + [sym_hole_name] = STATE(1684), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1073), + [anon_sym_] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(2706), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1069), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1071), }, [700] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(1703), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1185), }, [701] = { - [anon_sym_RPAREN] = ACTIONS(2726), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1295), }, [702] = { - [anon_sym_COLON] = ACTIONS(2728), + [sym__binding_name] = STATE(1685), + [sym_anonymous_name] = STATE(701), + [aux_sym_infix_repeat1] = STATE(1685), + [sym__newline] = ACTIONS(2708), + [anon_sym__] = ACTIONS(1083), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1085), }, [703] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(121), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [sym__field_name] = STATE(1688), + [aux_sym__arg_name_repeat1] = STATE(1688), + [anon_sym_DOT_DOT] = ACTIONS(2710), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2712), + [sym_name] = ACTIONS(2714), }, [704] = { - [sym_primitive] = STATE(1734), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1734), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1734), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1735), - [sym_field] = STATE(1734), - [sym_abstract] = STATE(1734), - [sym_private] = STATE(1734), - [sym_function_clause] = STATE(1734), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1734), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1734), - [sym_data] = STATE(1734), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1734), - [sym_macro] = STATE(1734), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1734), - [sym_record_signature_only] = STATE(1734), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1734), - [sym_syntax] = STATE(1734), - [sym_record] = STATE(1734), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1734), - [sym_generalize] = STATE(1734), - [sym_mutual] = STATE(1734), - [sym_postulate] = STATE(1734), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(2730), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [aux_sym__arg_names_repeat1] = STATE(710), + [sym__field_name] = STATE(710), + [sym__arg_names] = STATE(1689), + [sym__arg_name] = STATE(710), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1089), + [anon_sym_] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1095), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [sym_name] = ACTIONS(1103), }, [705] = { - [sym_typed_binding] = STATE(1743), - [sym_anonymous_name] = STATE(1742), - [sym_untyped_binding] = STATE(1743), - [sym__lambda_binding] = STATE(1744), - [sym__binding_name] = STATE(1745), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), - [anon_sym_] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(2744), - [sym_name] = ACTIONS(2746), + [sym__field_name] = STATE(1692), + [aux_sym__arg_name_repeat1] = STATE(1692), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2718), + [sym_name] = ACTIONS(2720), }, [706] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_SEMI] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(255), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__field_name] = STATE(1696), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2724), + [anon_sym_] = ACTIONS(2726), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1103), }, [707] = { + [sym__field_name] = STATE(1697), + [aux_sym__arg_name_repeat1] = STATE(1697), + [anon_sym_DOT_DOT] = ACTIONS(2710), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2712), + [sym_name] = ACTIONS(2714), }, [708] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1748), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2750), + [sym__type_sig_block] = STATE(1698), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(287), + [sym_pragma] = ACTIONS(3), }, [709] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1749), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2750), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(2728), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2730), + [anon_sym_] = ACTIONS(2728), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2728), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [sym_name] = ACTIONS(2728), }, [710] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(1757), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_name] = STATE(1699), + [aux_sym__arg_names_repeat1] = STATE(1699), + [sym__arg_name] = STATE(1699), + [anon_sym_COLON] = ACTIONS(2732), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1089), + [anon_sym_] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1095), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [sym_name] = ACTIONS(1103), }, [711] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1762), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2764), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(2734), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [712] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1763), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [aux_sym__arg_names_repeat1] = STATE(710), + [sym__field_name] = STATE(710), + [sym_type_sig_instance] = STATE(711), + [aux_sym__type_sig_block_repeat1] = STATE(1702), + [sym__arg_names] = STATE(713), + [sym__arg_name] = STATE(710), + [sym_type_sig] = STATE(711), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1089), + [anon_sym_overlap] = ACTIONS(1091), + [anon_sym_] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1095), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_instance] = ACTIONS(1099), + [sym__dedent] = ACTIONS(2736), + [anon_sym_DOT_DOT] = ACTIONS(1101), + [sym_name] = ACTIONS(1103), }, [713] = { - [sym__atom_no_curly] = STATE(721), - [sym_literal] = STATE(703), - [sym_record_assignments] = STATE(703), - [sym__atom_curly] = STATE(721), - [sym_atom] = STATE(1747), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(2738), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_3] = ACTIONS(1133), - [aux_sym_string_token1] = ACTIONS(1129), - [anon_sym_Prop] = ACTIONS(1101), + [sym_pragma] = ACTIONS(3), }, [714] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1764), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [715] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1766), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2740), }, [716] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [aux_sym__open_args1_repeat1] = STATE(1768), - [sym__atom_curly] = STATE(1132), - [sym_record_assignments] = STATE(1122), - [sym_atom] = STATE(1768), - [sym__atoms1] = STATE(1769), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2770), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [717] = { - [anon_sym_CATCHALL] = ACTIONS(2772), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(1711), + [sym_typed_binding] = STATE(1712), + [sym_untyped_binding] = STATE(1712), + [sym__lambda_binding] = STATE(1713), + [sym__binding_name] = STATE(1714), + [anon_sym__] = ACTIONS(2742), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2744), + [anon_sym_] = ACTIONS(2746), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2752), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [sym_name] = ACTIONS(2756), }, [718] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(1771), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1716), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2758), }, [719] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1772), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1717), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2758), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [720] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1718), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2774), }, [721] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(441), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__atom_curly] = STATE(1729), + [sym__atom_no_curly] = STATE(1729), + [sym_literal] = STATE(1719), + [aux_sym__open_args1_repeat1] = STATE(1730), + [sym_record_assignments] = STATE(1719), + [sym_atom] = STATE(1730), + [sym__atoms1] = STATE(1731), + [anon_sym__] = ACTIONS(2760), + [anon_sym_quoteTerm] = ACTIONS(2760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2766), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_qualified_name] = ACTIONS(2760), + [anon_sym_quote] = ACTIONS(2760), + [anon_sym_3] = ACTIONS(2770), + [anon_sym_Prop] = ACTIONS(2760), + [sym__const_ellipsis] = ACTIONS(2760), + [anon_sym_record] = ACTIONS(2772), + [anon_sym_] = ACTIONS(2774), + [anon_sym_unquote] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [aux_sym_string_token1] = ACTIONS(2780), + [anon_sym_Set] = ACTIONS(2760), }, [722] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(721), - [sym_record_assignments] = STATE(703), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1101), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(2776), - [anon_sym_] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_primitive] = STATE(1733), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1733), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1733), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1733), + [sym_abstract] = STATE(1733), + [sym_private] = STATE(1733), + [sym_function_clause] = STATE(1733), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1733), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1734), + [sym_infix] = STATE(1733), + [sym_data] = STATE(1733), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1733), + [sym_macro] = STATE(1733), + [sym_test] = STATE(1733), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1733), + [sym_record_signature_only] = STATE(1733), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1733), + [sym_syntax] = STATE(1733), + [sym_record] = STATE(1733), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1733), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1733), + [sym_mutual] = STATE(1733), + [sym_postulate] = STATE(1733), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2782), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [723] = { - [sym_do] = STATE(1794), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1794), - [sym__atom_no_curly] = STATE(1792), - [sym_record_assignments] = STATE(1776), - [aux_sym__open_args1_repeat1] = STATE(1793), - [sym__expr2] = STATE(1794), - [sym_lambda] = STATE(1794), - [sym__application] = STATE(1794), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(2776), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1736), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2784), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [724] = { - [anon_sym_COLON] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(1277), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1737), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [725] = { - [anon_sym_SEMI] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2810), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1738), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2786), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [726] = { - [anon_sym_COLON] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2814), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [sym_literal] = STATE(714), + [sym_record_assignments] = STATE(714), + [sym_atom] = STATE(1715), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2704), + [aux_sym_integer_token1] = ACTIONS(1115), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1121), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_Prop] = ACTIONS(1111), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_record] = ACTIONS(1129), + [anon_sym_] = ACTIONS(1133), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), }, [727] = { - [sym_lambda_clause] = STATE(1813), - [sym_lambda_clause_absurd] = STATE(1813), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(1814), - [sym__atom_no_curly] = STATE(1808), - [aux_sym__open_args1_repeat1] = STATE(1809), - [sym_catchall_pragma] = STATE(1810), - [aux_sym__lambda_where_block_repeat1] = STATE(1811), - [sym_do] = STATE(1814), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym__lambda_clause] = STATE(1813), - [sym_record_assignments] = STATE(1797), - [sym__application] = STATE(1814), - [sym__expr2] = STATE(1814), - [sym_lambda] = STATE(1814), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2146), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(17), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_quote] = ACTIONS(2816), - [anon_sym_] = ACTIONS(2822), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1740), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [728] = { - [sym__newline] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(2840), - [anon_sym_with] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(2840), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_where] = ACTIONS(2840), - [anon_sym_rewrite] = ACTIONS(2840), - [anon_sym_module] = ACTIONS(2840), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1741), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [729] = { - [sym_do] = STATE(1815), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1815), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1815), - [sym_lambda] = STATE(1815), - [sym__application] = STATE(1815), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [730] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + }, + [731] = { + [sym_literal] = STATE(714), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(732), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [sym_record_assignments] = STATE(714), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), + [sym_pragma] = ACTIONS(3), + }, + [732] = { + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + }, + [733] = { + [sym_literal] = STATE(714), + [sym__do_stmt_where] = STATE(729), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__do_stmt] = STATE(729), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [aux_sym_do_repeat1] = STATE(1744), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(734), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), + [sym_let] = STATE(43), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [sym__dedent] = ACTIONS(2792), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), }, - [731] = { - [sym_literal] = STATE(733), - [sym_atom] = STATE(750), - [sym__atom_curly] = STATE(747), - [sym_import_directive] = STATE(1816), - [aux_sym_module_macro_repeat1] = STATE(1816), - [sym__open_args1] = STATE(1817), - [sym__atom_no_curly] = STATE(747), - [sym_record_assignments] = STATE(733), - [aux_sym__open_args1_repeat1] = STATE(750), - [sym__open_as] = STATE(1818), - [sym__newline] = ACTIONS(2842), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_as] = ACTIONS(1171), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_3] = ACTIONS(1189), - [anon_sym_public] = ACTIONS(1191), + [734] = { + [sym__newline] = ACTIONS(2794), + [anon_sym_where] = ACTIONS(2796), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, - [732] = { - [sym_typed_binding] = STATE(1825), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(1825), - [sym__typed_untyped_binding1] = STATE(1824), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(1825), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2844), - [anon_sym_] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2852), + [735] = { + [sym_literal] = STATE(714), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [sym_record_assignments] = STATE(714), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), + }, + [736] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), }, - [733] = { + [737] = { + [sym_literal] = STATE(739), + [sym__open_args1] = STATE(1746), + [sym_import_directive] = STATE(1747), + [sym_atom] = STATE(755), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_record_assignments] = STATE(739), + [aux_sym__open_args1_repeat1] = STATE(755), + [aux_sym_module_macro_repeat1] = STATE(1747), + [sym__open_as] = STATE(1748), + [sym__newline] = ACTIONS(2798), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [anon_sym_as] = ACTIONS(1161), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(1181), + }, + [738] = { + [sym__binding_name] = STATE(319), + [sym_anonymous_name] = STATE(316), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(1755), + [sym_untyped_binding] = STATE(1755), + [sym_typed_binding] = STATE(1755), + [sym__typed_untyped_binding1] = STATE(1754), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2800), + [anon_sym_] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(2804), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), + }, + [739] = { [sym__newline] = ACTIONS(121), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_renaming] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_renaming] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), [anon_sym_using] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_hiding] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_public] = ACTIONS(119), }, - [734] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1827), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2854), - }, - [735] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_renaming] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_using] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_hiding] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_public] = ACTIONS(253), - }, - [736] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1828), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2854), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [737] = { - [sym__module_name] = STATE(1830), - [sym_qualified_name] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [738] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2858), - }, - [739] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1833), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2860), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, [740] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2862), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1757), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2810), }, [741] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1835), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_renaming] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_using] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_hiding] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_public] = ACTIONS(293), }, [742] = { - [sym__atom_no_curly] = STATE(747), - [sym_literal] = STATE(733), - [sym_record_assignments] = STATE(733), - [sym__atom_curly] = STATE(747), - [sym_atom] = STATE(1826), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_3] = ACTIONS(1189), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - }, - [743] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1836), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1758), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2810), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, - [744] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1838), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [743] = { + [sym__module_name] = STATE(1760), + [sym_qualified_name] = ACTIONS(2812), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, - [745] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1839), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), + [744] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1761), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, - [746] = { - [sym__newline] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(2868), + [745] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_hiding] = ACTIONS(2868), - [anon_sym_public] = ACTIONS(2868), - [anon_sym_renaming] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2814), + }, + [746] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1764), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2816), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [747] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_renaming] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_using] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_hiding] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2818), }, [748] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(2842), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1766), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [749] = { - [sym_import_directive] = STATE(1816), - [aux_sym_module_macro_repeat1] = STATE(1816), - [sym__newline] = ACTIONS(2842), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1767), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [750] = { - [sym__atom_no_curly] = STATE(747), - [sym_literal] = STATE(733), - [sym_record_assignments] = STATE(733), - [sym__atom_curly] = STATE(747), - [sym_atom] = STATE(1841), - [aux_sym__open_args1_repeat1] = STATE(1841), - [sym__newline] = ACTIONS(2876), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(2878), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(2878), - [anon_sym_3] = ACTIONS(1189), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(2878), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_literal] = STATE(739), + [sym_record_assignments] = STATE(739), + [sym_atom] = STATE(1756), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), }, [751] = { - [sym_literal] = STATE(733), - [sym_atom] = STATE(750), - [sym__atom_curly] = STATE(747), - [sym_import_directive] = STATE(1816), - [aux_sym_module_macro_repeat1] = STATE(1816), - [sym__open_args1] = STATE(1817), - [sym__atom_no_curly] = STATE(747), - [sym_record_assignments] = STATE(733), - [aux_sym__open_args1_repeat1] = STATE(750), - [sym__newline] = ACTIONS(2842), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_3] = ACTIONS(1189), - [anon_sym_public] = ACTIONS(1191), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1769), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [752] = { - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__newline] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_renaming] = ACTIONS(2824), }, [753] = { + [sym_import_directive] = STATE(1747), + [aux_sym_module_macro_repeat1] = STATE(1747), + [sym__newline] = ACTIONS(2798), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2880), }, [754] = { - [sym_primitive] = STATE(1843), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1843), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1843), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1844), - [sym_field] = STATE(1843), - [sym_abstract] = STATE(1843), - [sym_private] = STATE(1843), - [sym_function_clause] = STATE(1843), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1843), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1843), - [sym_data] = STATE(1843), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1843), - [sym_macro] = STATE(1843), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1843), - [sym_record_signature_only] = STATE(1843), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1843), - [sym_syntax] = STATE(1843), - [sym_record] = STATE(1843), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1843), - [sym_generalize] = STATE(1843), - [sym_mutual] = STATE(1843), - [sym_postulate] = STATE(1843), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_renaming] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_using] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_hiding] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_public] = ACTIONS(411), }, [755] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2882), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_literal] = STATE(739), + [sym_record_assignments] = STATE(739), + [sym_atom] = STATE(1770), + [aux_sym__open_args1_repeat1] = STATE(1770), + [sym__newline] = ACTIONS(2832), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(2834), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(2834), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(2834), }, [756] = { - [sym_primitive] = STATE(1846), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1846), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1846), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1846), - [sym_abstract] = STATE(1846), - [sym_private] = STATE(1846), - [sym_function_clause] = STATE(1846), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1846), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1846), - [sym_data] = STATE(1846), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1846), - [sym_macro] = STATE(1846), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1846), - [sym_record_signature_only] = STATE(1846), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1846), - [sym_syntax] = STATE(1846), - [sym_record] = STATE(1846), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1846), - [sym_generalize] = STATE(1846), - [sym_mutual] = STATE(1846), - [sym_postulate] = STATE(1846), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(2798), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [757] = { - [sym_do] = STATE(904), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(904), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(904), - [sym_lambda] = STATE(904), - [sym__application] = STATE(904), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_literal] = STATE(739), + [sym__open_args1] = STATE(1746), + [sym_import_directive] = STATE(1747), + [sym_atom] = STATE(755), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_record_assignments] = STATE(739), + [aux_sym__open_args1_repeat1] = STATE(755), + [aux_sym_module_macro_repeat1] = STATE(1747), + [sym__newline] = ACTIONS(2798), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(1181), }, [758] = { - [sym_do] = STATE(905), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(905), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(905), - [sym_lambda] = STATE(905), - [sym__application] = STATE(905), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, [759] = { - [sym_do] = STATE(912), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(912), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(912), - [sym_lambda] = STATE(912), - [sym_open] = STATE(911), - [sym__application] = STATE(912), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), }, [760] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1847), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(1847), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(1847), - [sym__expr2] = STATE(1847), - [sym_lambda] = STATE(1847), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1773), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2836), }, [761] = { - [sym_typed_binding] = STATE(761), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(761), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(2884), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1774), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2836), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [762] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1775), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(2886), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1147), }, [763] = { - [anon_sym_RPAREN] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1777), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2838), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [764] = { - [anon_sym_in] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1778), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [765] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1852), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(2890), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1779), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2840), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [766] = { - [anon_sym_LBRACE] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_literal] = STATE(758), + [sym_record_assignments] = STATE(758), + [sym_atom] = STATE(1772), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_Prop] = ACTIONS(1187), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_record] = ACTIONS(1197), + [anon_sym_] = ACTIONS(1201), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [767] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2880), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1781), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [768] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(753), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1193), + [sym__newline] = ACTIONS(2844), + [anon_sym_rewrite] = ACTIONS(2844), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(2844), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2844), + [anon_sym_where] = ACTIONS(2844), + [sym__const_right_arrow] = ACTIONS(2844), + [anon_sym_module] = ACTIONS(2844), }, [769] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(763), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1193), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(475), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_RBRACE_RBRACE] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), }, [770] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(767), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), }, [771] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1217), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [sym_literal] = STATE(758), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(1782), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [772] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(775), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [773] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2880), - }, - [774] = { - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_3] = ACTIONS(1397), - }, - [775] = { + [anon_sym_COLON] = ACTIONS(2846), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2894), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2848), }, - [776] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), + [773] = { + [anon_sym_COLON] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, - [777] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1856), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [774] = { + [anon_sym_COLON] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2896), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + }, + [775] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1786), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2850), + }, + [776] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1787), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2850), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [777] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1788), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [778] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1790), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2852), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [779] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1857), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2896), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1791), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [780] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1859), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2898), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1792), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2854), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [781] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1860), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_literal] = STATE(773), + [sym_record_assignments] = STATE(773), + [sym_atom] = STATE(1785), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_Prop] = ACTIONS(1211), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_record] = ACTIONS(1223), + [anon_sym_] = ACTIONS(1227), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [782] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), - }, - [783] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1861), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1794), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [783] = { + [anon_sym_COLON] = ACTIONS(475), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_2] = ACTIONS(475), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [784] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1863), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [785] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1864), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_literal] = STATE(773), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(1782), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [786] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(2858), + [anon_sym_2] = ACTIONS(2848), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [787] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1865), - [aux_sym__open_args1_repeat1] = STATE(1865), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1455), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__expr2] = STATE(1796), + [sym_do] = STATE(1796), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1796), + [sym_lambda] = STATE(1796), + [sym__application] = STATE(1796), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [788] = { - [anon_sym_PIPE] = ACTIONS(2904), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1457), + [sym__expr2] = STATE(1797), + [sym_do] = STATE(1797), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1797), + [sym_lambda] = STATE(1797), + [sym__application] = STATE(1797), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [789] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(1798), + [sym_do] = STATE(1798), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1798), + [sym_lambda] = STATE(1798), + [sym__application] = STATE(1798), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [790] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(2880), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(1799), + [sym_do] = STATE(1799), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1799), + [sym_lambda] = STATE(1799), + [sym__application] = STATE(1799), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [791] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_rewrite] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [792] = { - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2864), }, [793] = { - [anon_sym_SEMI] = ACTIONS(255), - [anon_sym_RPAREN] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_3] = ACTIONS(253), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1801), + [sym_untyped_binding] = STATE(1801), + [sym__lambda_binding] = STATE(1802), + [sym__binding_name] = STATE(1152), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym_name] = ACTIONS(1953), }, [794] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1868), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2906), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [aux_sym__open_args1_repeat1] = STATE(1804), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(1804), + [sym__atoms1] = STATE(1805), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [795] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1869), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2906), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [796] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1871), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2908), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [797] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1872), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(1807), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1807), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1807), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1807), + [sym_abstract] = STATE(1807), + [sym_private] = STATE(1807), + [sym_function_clause] = STATE(1807), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1807), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1808), + [sym_infix] = STATE(1807), + [sym_data] = STATE(1807), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1807), + [sym_macro] = STATE(1807), + [sym_test] = STATE(1807), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1807), + [sym_record_signature_only] = STATE(1807), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1807), + [sym_syntax] = STATE(1807), + [sym_record] = STATE(1807), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1807), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1807), + [sym_mutual] = STATE(1807), + [sym_postulate] = STATE(1807), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2868), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [796] = { + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_literal] = STATE(758), + [sym_record_assignments] = STATE(758), + [sym_atom] = STATE(1772), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_Prop] = ACTIONS(1187), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_record] = ACTIONS(1197), + [anon_sym_] = ACTIONS(1201), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [797] = { + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1809), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [798] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(2870), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [799] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1873), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_literal] = STATE(758), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(1782), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [800] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1875), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(2872), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [801] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1876), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(121), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [802] = { - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_3] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2874), }, [803] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(295), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [804] = { - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_RPAREN] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_3] = ACTIONS(463), + [sym_anonymous_name] = STATE(1819), + [sym_typed_binding] = STATE(1820), + [sym_untyped_binding] = STATE(1820), + [sym__lambda_binding] = STATE(1821), + [sym__binding_name] = STATE(1822), + [anon_sym__] = ACTIONS(2876), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2878), + [anon_sym_] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2886), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(2888), + [sym_name] = ACTIONS(2890), }, [805] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(753), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_CATCHALL] = ACTIONS(2892), + [sym_pragma] = ACTIONS(3), }, [806] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(763), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1193), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1825), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2894), }, [807] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(767), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1826), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2894), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [808] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(775), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1827), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [809] = { - [sym_primitive] = STATE(1877), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1877), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1877), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1878), - [sym_field] = STATE(1877), - [sym_abstract] = STATE(1877), - [sym_private] = STATE(1877), - [sym_function_clause] = STATE(1877), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1877), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1877), - [sym_data] = STATE(1877), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1877), - [sym_macro] = STATE(1877), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1877), - [sym_record_signature_only] = STATE(1877), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1877), - [sym_syntax] = STATE(1877), - [sym_record] = STATE(1877), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1877), - [sym_generalize] = STATE(1877), - [sym_mutual] = STATE(1877), - [sym_postulate] = STATE(1877), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1834), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [810] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2914), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [aux_sym__open_args1_repeat1] = STATE(1840), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(1840), + [sym__atoms1] = STATE(1841), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [811] = { - [sym_primitive] = STATE(1880), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1880), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1880), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1880), - [sym_abstract] = STATE(1880), - [sym_private] = STATE(1880), - [sym_function_clause] = STATE(1880), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(1843), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1843), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1843), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1843), + [sym_abstract] = STATE(1843), + [sym_private] = STATE(1843), + [sym_function_clause] = STATE(1843), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1880), + [sym_open] = STATE(1843), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1844), + [sym_infix] = STATE(1843), + [sym_data] = STATE(1843), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1880), - [sym_data] = STATE(1880), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1880), - [sym_macro] = STATE(1880), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1880), - [sym_record_signature_only] = STATE(1880), - [sym_atom] = STATE(158), + [sym_instance] = STATE(1843), + [sym_macro] = STATE(1843), + [sym_test] = STATE(1843), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1843), + [sym_record_signature_only] = STATE(1843), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1843), + [sym_syntax] = STATE(1843), + [sym_record] = STATE(1843), [sym_do] = STATE(43), - [sym_pattern] = STATE(1880), - [sym_syntax] = STATE(1880), - [sym_record] = STATE(1880), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1880), - [sym_generalize] = STATE(1880), - [sym_mutual] = STATE(1880), - [sym_postulate] = STATE(1880), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1843), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1843), + [sym_mutual] = STATE(1843), + [sym_postulate] = STATE(1843), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(2910), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [812] = { - [sym_typed_binding] = STATE(812), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(812), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(373), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1846), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2912), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [813] = { - [anon_sym_RPAREN] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(2916), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1847), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2914), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [814] = { - [anon_sym_in] = ACTIONS(2918), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1848), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [815] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [sym_literal] = STATE(801), + [sym_record_assignments] = STATE(801), + [sym_atom] = STATE(1824), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_Prop] = ACTIONS(1259), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_record] = ACTIONS(1267), [anon_sym_] = ACTIONS(1269), + [anon_sym_unquote] = ACTIONS(1259), [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(1285), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [816] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1850), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [817] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1883), - [aux_sym__open_args1_repeat1] = STATE(1883), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1455), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(1851), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [818] = { - [anon_sym_PIPE] = ACTIONS(2920), - [anon_sym_RPAREN] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(1871), + [sym_do] = STATE(1871), + [sym_literal] = STATE(1852), + [sym_atom] = STATE(1868), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_record_assignments] = STATE(1852), + [aux_sym__open_args1_repeat1] = STATE(1870), + [sym_let] = STATE(1871), + [sym_lambda] = STATE(1871), + [sym__application] = STATE(1871), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_] = ACTIONS(2940), + [sym__const_right_arrow] = ACTIONS(2942), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), [sym_pragma] = ACTIONS(3), }, [819] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(413), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [820] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(801), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(822), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [sym_record_assignments] = STATE(801), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_] = ACTIONS(1269), + [sym__const_right_arrow] = ACTIONS(2942), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), + [sym_pragma] = ACTIONS(3), }, [821] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2954), + [sym_pragma] = ACTIONS(3), }, [822] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(697), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [823] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(1901), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2952), }, [824] = { - [sym_do] = STATE(1421), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1421), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1421), - [sym_lambda] = STATE(1421), - [sym__application] = STATE(1421), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [825] = { - [sym__declaration_block] = STATE(1907), - [sym__newline] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(2848), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(2954), + }, + [825] = { + [sym_catchall_pragma] = STATE(1887), + [sym_lambda_clause] = STATE(1892), + [sym_literal] = STATE(1876), + [aux_sym__lambda_where_block_repeat1] = STATE(1888), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [aux_sym__open_args1_repeat1] = STATE(1890), + [sym__expr2] = STATE(1893), + [sym_do] = STATE(1893), + [sym_atom] = STATE(1891), + [sym_lambda_clause_absurd] = STATE(1892), + [sym__lambda_clause] = STATE(1892), + [sym_record_assignments] = STATE(1876), + [sym__application] = STATE(1893), + [sym_let] = STATE(1893), + [sym_lambda] = STATE(1893), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [sym__const_right_arrow] = ACTIONS(2964), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_] = ACTIONS(2968), + [anon_sym_3] = ACTIONS(2970), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), }, [826] = { - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_where] = ACTIONS(2958), + [sym__newline] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2984), + [anon_sym_with] = ACTIONS(2984), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(2984), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_rewrite] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), }, [827] = { - [anon_sym_LBRACE] = ACTIONS(2960), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(1894), + [sym_do] = STATE(1894), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1894), + [sym_lambda] = STATE(1894), + [sym__application] = STATE(1894), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [828] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [anon_sym_PIPE_RPAREN] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [829] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), }, [830] = { - [sym_primitive] = STATE(1912), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1912), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1912), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1913), - [sym_field] = STATE(1912), - [sym_abstract] = STATE(1912), - [sym_private] = STATE(1912), - [sym_function_clause] = STATE(1912), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1912), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1912), - [sym_data] = STATE(1912), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1912), - [sym_macro] = STATE(1912), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1912), - [sym_record_signature_only] = STATE(1912), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1912), - [sym_syntax] = STATE(1912), - [sym_record] = STATE(1912), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1912), - [sym_generalize] = STATE(1912), - [sym_mutual] = STATE(1912), - [sym_postulate] = STATE(1912), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2986), }, [831] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(2964), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(2988), [sym_pragma] = ACTIONS(3), }, [832] = { - [sym_primitive] = STATE(1915), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1915), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1915), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1915), - [sym_abstract] = STATE(1915), - [sym_private] = STATE(1915), - [sym_function_clause] = STATE(1915), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1915), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1915), - [sym_data] = STATE(1915), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1915), - [sym_macro] = STATE(1915), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1915), - [sym_record_signature_only] = STATE(1915), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1915), - [sym_syntax] = STATE(1915), - [sym_record] = STATE(1915), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1915), - [sym_generalize] = STATE(1915), - [sym_mutual] = STATE(1915), - [sym_postulate] = STATE(1915), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__expr2] = STATE(920), + [sym_do] = STATE(920), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(920), + [sym_lambda] = STATE(920), + [sym__application] = STATE(920), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [833] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [sym__expr2] = STATE(921), + [sym_do] = STATE(921), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(921), + [sym_lambda] = STATE(921), + [sym__application] = STATE(921), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_PIPE_RPAREN] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), }, [834] = { - [sym_do] = STATE(1916), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1916), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1916), - [sym_lambda] = STATE(1916), - [sym__application] = STATE(1916), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_open] = STATE(928), + [sym__expr2] = STATE(927), + [sym_do] = STATE(927), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(927), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(927), + [sym_lambda] = STATE(927), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [835] = { - [sym_do] = STATE(1917), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1917), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1917), - [sym_lambda] = STATE(1917), - [sym__application] = STATE(1917), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(1897), + [sym_do] = STATE(1897), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(1897), + [sym_let] = STATE(1897), + [sym_lambda] = STATE(1897), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [836] = { - [sym_anonymous_name] = STATE(839), - [sym__binding_name] = STATE(1922), - [anon_sym__] = ACTIONS(1305), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2966), - [anon_sym_] = ACTIONS(2968), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2972), - [sym_name] = ACTIONS(1319), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(836), + [sym_untyped_binding] = STATE(836), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(2990), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(399), }, [837] = { - [sym_do] = STATE(1924), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1924), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1924), - [sym_lambda] = STATE(1924), - [sym_open] = STATE(1923), - [sym__application] = STATE(1924), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(2992), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1303), }, [838] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1925), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(1925), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(1925), - [sym__expr2] = STATE(1925), - [sym_lambda] = STATE(1925), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(2986), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), }, [839] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_PIPE_RPAREN] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [840] = { - [sym_typed_binding] = STATE(840), - [sym_anonymous_name] = STATE(839), - [sym_untyped_binding] = STATE(840), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(842), - [anon_sym__] = ACTIONS(1305), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), - [anon_sym_] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(2974), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(1141), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1319), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1901), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2994), }, [841] = { - [anon_sym_PIPE_RPAREN] = ACTIONS(1147), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(2976), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [842] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_PIPE_RPAREN] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1902), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2994), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [843] = { - [anon_sym_RPAREN] = ACTIONS(2962), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1903), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [844] = { - [anon_sym_in] = ACTIONS(2978), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1904), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [845] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1930), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(2980), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1906), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(2996), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [846] = { - [anon_sym_LBRACE] = ACTIONS(2982), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1907), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2998), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [847] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2962), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [848] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(829), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1301), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1909), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [849] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(843), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [850] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(847), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1910), + [aux_sym__open_args1_repeat1] = STATE(1910), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_RBRACE_RBRACE] = ACTIONS(735), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [851] = { - [sym__atom_no_curly] = STATE(229), - [sym_literal] = STATE(211), - [sym_record_assignments] = STATE(211), - [sym__atom_curly] = STATE(229), - [sym_atom] = STATE(828), - [anon_sym__] = ACTIONS(313), - [anon_sym_unquote] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(1389), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [anon_sym_] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_3] = ACTIONS(343), - [aux_sym_string_token1] = ACTIONS(339), - [anon_sym_Prop] = ACTIONS(313), + [anon_sym_RBRACE_RBRACE] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3002), }, [852] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(855), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_primitive] = STATE(1912), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1912), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1912), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1912), + [sym_abstract] = STATE(1912), + [sym_private] = STATE(1912), + [sym_function_clause] = STATE(1912), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1912), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1913), + [sym_infix] = STATE(1912), + [sym_data] = STATE(1912), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1912), + [sym_macro] = STATE(1912), + [sym_test] = STATE(1912), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1912), + [sym_record_signature_only] = STATE(1912), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1912), + [sym_syntax] = STATE(1912), + [sym_record] = STATE(1912), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1912), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1912), + [sym_mutual] = STATE(1912), + [sym_postulate] = STATE(1912), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [853] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3004), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2962), }, [854] = { + [sym_primitive] = STATE(1915), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1915), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1915), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1915), + [sym_abstract] = STATE(1915), + [sym_private] = STATE(1915), + [sym_function_clause] = STATE(1915), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1915), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1915), + [sym_data] = STATE(1915), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1915), + [sym_macro] = STATE(1915), + [sym_test] = STATE(1915), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1915), + [sym_record_signature_only] = STATE(1915), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1915), + [sym_syntax] = STATE(1915), + [sym_record] = STATE(1915), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1915), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1915), + [sym_mutual] = STATE(1915), + [sym_postulate] = STATE(1915), + [anon_sym_pattern] = ACTIONS(145), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [anon_sym_PIPE_RPAREN] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [855] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(1917), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3006), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2984), [sym_pragma] = ACTIONS(3), }, [856] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(3008), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(121), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), }, [857] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1934), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2986), + [anon_sym_PIPE_RPAREN] = ACTIONS(2986), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [858] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(2986), + [sym_pragma] = ACTIONS(3), }, [859] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1935), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2986), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_4] = ACTIONS(2986), }, [860] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1937), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2988), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(830), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1311), }, [861] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1938), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2990), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(838), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [862] = { - [sym__atom_no_curly] = STATE(866), - [sym_literal] = STATE(856), - [sym_record_assignments] = STATE(856), - [sym__atom_curly] = STATE(866), - [sym_atom] = STATE(1933), - [anon_sym__] = ACTIONS(1339), - [anon_sym_unquote] = ACTIONS(1339), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1343), - [anon_sym_Set] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1345), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1339), - [anon_sym_quoteTerm] = ACTIONS(1339), - [anon_sym_quote] = ACTIONS(1339), - [sym__const_ellipsis] = ACTIONS(1339), - [anon_sym_record] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1339), - [anon_sym_] = ACTIONS(1349), - [anon_sym_DOT] = ACTIONS(1351), - [anon_sym_LPAREN_PIPE] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_3] = ACTIONS(1357), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_Prop] = ACTIONS(1339), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(858), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [863] = { + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1939), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [864] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1941), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(866), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [865] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1942), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), }, [866] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3010), + [sym_pragma] = ACTIONS(3), }, [867] = { - [sym__atom_no_curly] = STATE(866), - [sym_literal] = STATE(856), - [sym_record_assignments] = STATE(856), - [sym__atom_curly] = STATE(866), - [sym_atom] = STATE(1943), - [aux_sym__open_args1_repeat1] = STATE(1943), - [anon_sym__] = ACTIONS(1339), - [anon_sym_unquote] = ACTIONS(1339), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1343), - [anon_sym_Set] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1345), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(1455), - [sym_qualified_name] = ACTIONS(1339), - [anon_sym_quoteTerm] = ACTIONS(1339), - [anon_sym_quote] = ACTIONS(1339), - [sym__const_ellipsis] = ACTIONS(1339), - [anon_sym_record] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1339), - [anon_sym_] = ACTIONS(1349), - [anon_sym_DOT] = ACTIONS(1351), - [anon_sym_LPAREN_PIPE] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_3] = ACTIONS(1357), - [aux_sym_string_token1] = ACTIONS(1359), - [anon_sym_Prop] = ACTIONS(1339), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [868] = { - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_PIPE_RPAREN] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(830), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1311), }, [869] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(838), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(1311), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [870] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(2962), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(858), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [871] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(866), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [872] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [anon_sym_PIPE_RPAREN] = ACTIONS(121), + }, + [873] = { + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [873] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [anon_sym_PIPE_RPAREN] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, [874] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1946), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2996), + [anon_sym_] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), }, [875] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1947), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(2996), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1921), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3012), }, [876] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1949), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(2998), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1922), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3012), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [877] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1950), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3000), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1923), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [878] = { - [sym__atom_no_curly] = STATE(882), - [sym_literal] = STATE(872), - [sym_record_assignments] = STATE(872), - [sym__atom_curly] = STATE(882), - [sym_atom] = STATE(1945), - [anon_sym__] = ACTIONS(1363), - [anon_sym_unquote] = ACTIONS(1363), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1365), - [anon_sym_Set] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1369), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1363), - [anon_sym_quoteTerm] = ACTIONS(1363), - [anon_sym_quote] = ACTIONS(1363), - [sym__const_ellipsis] = ACTIONS(1363), - [anon_sym_record] = ACTIONS(1371), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_] = ACTIONS(1373), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN_PIPE] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_3] = ACTIONS(1383), - [aux_sym_string_token1] = ACTIONS(1381), - [anon_sym_Prop] = ACTIONS(1363), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1925), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3014), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [879] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1951), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1926), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [880] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1953), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3002), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1927), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [881] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1954), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [882] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [anon_sym_PIPE_RPAREN] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1929), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [883] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(884), - [sym__atom_curly] = STATE(882), - [sym_literal] = STATE(872), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(882), - [sym_record_assignments] = STATE(872), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1363), - [anon_sym_unquote] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(1365), - [anon_sym_Set] = ACTIONS(1363), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1363), - [anon_sym_quoteTerm] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1363), - [sym__const_ellipsis] = ACTIONS(1363), - [anon_sym_record] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_] = ACTIONS(1373), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN_PIPE] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(1381), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(1363), - [anon_sym_3] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), }, [884] = { + [sym_literal] = STATE(873), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(885), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_record_assignments] = STATE(873), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [anon_sym_PIPE_RPAREN] = ACTIONS(1277), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), }, [885] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(829), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_RBRACE_RBRACE] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), }, [886] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(843), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3020), + [sym_pragma] = ACTIONS(3), }, [887] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(847), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(887), + [sym_untyped_binding] = STATE(887), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_] = ACTIONS(1317), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(2990), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(399), }, [888] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(855), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3022), + [sym_pragma] = ACTIONS(3), }, [889] = { - [sym_primitive] = STATE(1955), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1955), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1955), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1956), - [sym_field] = STATE(1955), - [sym_abstract] = STATE(1955), - [sym_private] = STATE(1955), - [sym_function_clause] = STATE(1955), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1955), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1955), - [sym_data] = STATE(1955), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1955), - [sym_macro] = STATE(1955), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1955), - [sym_record_signature_only] = STATE(1955), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(1955), - [sym_syntax] = STATE(1955), - [sym_record] = STATE(1955), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1955), - [sym_generalize] = STATE(1955), - [sym_mutual] = STATE(1955), - [sym_postulate] = STATE(1955), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [890] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3004), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1932), + [aux_sym__open_args1_repeat1] = STATE(1932), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [anon_sym_RPAREN] = ACTIONS(735), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [891] = { - [sym_primitive] = STATE(1958), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(1958), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(1958), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(1958), - [sym_abstract] = STATE(1958), - [sym_private] = STATE(1958), - [sym_function_clause] = STATE(1958), - [sym_lhs_decl] = STATE(155), + [anon_sym_RPAREN] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3024), + }, + [892] = { + [sym_primitive] = STATE(1934), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1934), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1934), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1934), + [sym_abstract] = STATE(1934), + [sym_private] = STATE(1934), + [sym_function_clause] = STATE(1934), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(1958), + [sym_open] = STATE(1934), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1935), + [sym_infix] = STATE(1934), + [sym_data] = STATE(1934), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(1958), - [sym_data] = STATE(1958), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(1958), - [sym_macro] = STATE(1958), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(1958), - [sym_record_signature_only] = STATE(1958), - [sym_atom] = STATE(158), + [sym_instance] = STATE(1934), + [sym_macro] = STATE(1934), + [sym_test] = STATE(1934), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1934), + [sym_record_signature_only] = STATE(1934), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1934), + [sym_syntax] = STATE(1934), + [sym_record] = STATE(1934), [sym_do] = STATE(43), - [sym_pattern] = STATE(1958), - [sym_syntax] = STATE(1958), - [sym_record] = STATE(1958), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(1958), - [sym_generalize] = STATE(1958), - [sym_mutual] = STATE(1958), - [sym_postulate] = STATE(1958), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [892] = { - [sym_typed_binding] = STATE(892), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(892), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1197), - [anon_sym_] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(2884), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(1141), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(373), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1934), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1934), + [sym_mutual] = STATE(1934), + [sym_postulate] = STATE(1934), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [893] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3026), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(3006), [sym_pragma] = ACTIONS(3), }, [894] = { - [anon_sym_in] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(1937), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1937), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1937), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1937), + [sym_abstract] = STATE(1937), + [sym_private] = STATE(1937), + [sym_function_clause] = STATE(1937), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1937), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1937), + [sym_data] = STATE(1937), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1937), + [sym_macro] = STATE(1937), + [sym_test] = STATE(1937), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1937), + [sym_record_signature_only] = STATE(1937), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1937), + [sym_syntax] = STATE(1937), + [sym_record] = STATE(1937), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1937), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1937), + [sym_mutual] = STATE(1937), + [sym_postulate] = STATE(1937), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [895] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [896] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [897] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1961), - [aux_sym__open_args1_repeat1] = STATE(1961), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [898] = { - [anon_sym_PIPE] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1457), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [899] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_literal] = STATE(873), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(885), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_record_assignments] = STATE(873), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), + [sym_pragma] = ACTIONS(3), }, [900] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(1954), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), + [sym_pragma] = ACTIONS(3), }, [901] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__expr2] = STATE(1583), + [sym_do] = STATE(1583), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1583), + [sym_lambda] = STATE(1583), + [sym__application] = STATE(1583), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [902] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [sym__declaration_block] = STATE(1960), + [sym__newline] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3060), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [903] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_where] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [904] = { - [anon_sym_COLON] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3066), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3018), }, [905] = { - [anon_sym_COLON] = ACTIONS(3020), - [anon_sym_2] = ACTIONS(3018), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3068), [sym_pragma] = ACTIONS(3), }, [906] = { - [sym_do] = STATE(1966), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1966), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1966), - [sym_lambda] = STATE(1966), - [sym__application] = STATE(1966), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(906), + [sym_untyped_binding] = STATE(906), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1315), + [anon_sym_] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(2990), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(1297), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(399), }, [907] = { - [sym_do] = STATE(1967), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1967), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1967), - [sym_lambda] = STATE(1967), - [sym__application] = STATE(1967), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(3070), + [sym_pragma] = ACTIONS(3), }, [908] = { - [sym_do] = STATE(1968), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1968), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1968), - [sym_lambda] = STATE(1968), - [sym__application] = STATE(1968), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [909] = { - [sym_do] = STATE(1969), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1969), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1969), - [sym_lambda] = STATE(1969), - [sym__application] = STATE(1969), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1966), + [aux_sym__open_args1_repeat1] = STATE(1966), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [910] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(737), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2718), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(3072), }, [911] = { - [anon_sym_RPAREN] = ACTIONS(3022), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(1968), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1968), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1968), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1968), + [sym_abstract] = STATE(1968), + [sym_private] = STATE(1968), + [sym_function_clause] = STATE(1968), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1968), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1969), + [sym_infix] = STATE(1968), + [sym_data] = STATE(1968), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1968), + [sym_macro] = STATE(1968), + [sym_test] = STATE(1968), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1968), + [sym_record_signature_only] = STATE(1968), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1968), + [sym_syntax] = STATE(1968), + [sym_record] = STATE(1968), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1968), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1968), + [sym_mutual] = STATE(1968), + [sym_postulate] = STATE(1968), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [912] = { - [anon_sym_COLON] = ACTIONS(3024), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3074), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [913] = { - [sym__atom_no_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym_record_assignments] = STATE(660), - [sym__atom_curly] = STATE(672), - [sym_atom] = STATE(1693), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_3] = ACTIONS(1051), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_Prop] = ACTIONS(1031), + [sym_primitive] = STATE(1971), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(1971), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(1971), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(1971), + [sym_abstract] = STATE(1971), + [sym_private] = STATE(1971), + [sym_function_clause] = STATE(1971), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(1971), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(1971), + [sym_data] = STATE(1971), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(1971), + [sym_macro] = STATE(1971), + [sym_test] = STATE(1971), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(1971), + [sym_record_signature_only] = STATE(1971), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(1971), + [sym_syntax] = STATE(1971), + [sym_record] = STATE(1971), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(1971), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(1971), + [sym_mutual] = STATE(1971), + [sym_postulate] = STATE(1971), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [914] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(1703), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [915] = { - [anon_sym_COLON] = ACTIONS(3026), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3018), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [916] = { - [anon_sym__] = ACTIONS(3028), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), - [sym__const_lambda] = ACTIONS(3028), - [anon_sym_let] = ACTIONS(3028), - [aux_sym_integer_token1] = ACTIONS(3028), - [anon_sym_Set] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_quoteGoal] = ACTIONS(3028), - [anon_sym_unquote] = ACTIONS(3028), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3028), - [sym_qualified_name] = ACTIONS(3028), - [anon_sym_quoteTerm] = ACTIONS(3028), - [anon_sym_do] = ACTIONS(3028), - [anon_sym_quote] = ACTIONS(3028), - [sym__const_ellipsis] = ACTIONS(3028), - [anon_sym_record] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(3028), - [anon_sym_DOT] = ACTIONS(3028), - [anon_sym_LPAREN_PIPE] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3028), - [sym__const_forall] = ACTIONS(3028), - [aux_sym_string_token1] = ACTIONS(3030), - [anon_sym_tactic] = ACTIONS(3028), - [anon_sym_Prop] = ACTIONS(3028), - [anon_sym_3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [917] = { - [sym_typed_binding] = STATE(917), - [sym_anonymous_name] = STATE(251), - [sym_untyped_binding] = STATE(917), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(917), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(3032), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3035), - [anon_sym_] = ACTIONS(3038), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(3047), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3050), - [sym__const_right_arrow] = ACTIONS(3053), - [sym_name] = ACTIONS(3055), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [918] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [919] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1974), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3058), + [sym_literal] = STATE(873), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(885), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_record_assignments] = STATE(873), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), + [sym_pragma] = ACTIONS(3), }, [920] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(3080), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3082), }, [921] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1975), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3058), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(3084), + [anon_sym_2] = ACTIONS(3082), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [922] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(1977), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3060), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__expr2] = STATE(1975), + [sym_do] = STATE(1975), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1975), + [sym_lambda] = STATE(1975), + [sym__application] = STATE(1975), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [923] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1978), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__expr2] = STATE(1976), + [sym_do] = STATE(1976), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1976), + [sym_lambda] = STATE(1976), + [sym__application] = STATE(1976), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [924] = { - [sym__atom_no_curly] = STATE(931), - [sym_literal] = STATE(918), - [sym_record_assignments] = STATE(918), - [sym__atom_curly] = STATE(931), - [sym_atom] = STATE(1973), - [anon_sym__] = ACTIONS(1425), - [anon_sym_unquote] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3064), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(3066), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_] = ACTIONS(3068), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_3] = ACTIONS(1445), - [aux_sym_string_token1] = ACTIONS(1443), - [anon_sym_Prop] = ACTIONS(1425), + [sym__expr2] = STATE(1977), + [sym_do] = STATE(1977), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1977), + [sym_lambda] = STATE(1977), + [sym__application] = STATE(1977), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [925] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(1984), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__expr2] = STATE(1978), + [sym_do] = STATE(1978), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1978), + [sym_lambda] = STATE(1978), + [sym__application] = STATE(1978), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [926] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1986), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_RPAREN] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2862), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [927] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(1987), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(3086), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [928] = { + [anon_sym_RPAREN] = ACTIONS(3088), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3076), }, [929] = { - [sym__newline] = ACTIONS(3078), - [anon_sym_COLON] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3078), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_rewrite] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_literal] = STATE(758), + [sym_record_assignments] = STATE(758), + [sym_atom] = STATE(1772), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_Prop] = ACTIONS(1187), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_record] = ACTIONS(1197), + [anon_sym_] = ACTIONS(1201), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [930] = { - [sym__newline] = ACTIONS(665), - [anon_sym_COLON] = ACTIONS(665), - [anon_sym_with] = ACTIONS(665), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(665), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(665), - [anon_sym_where] = ACTIONS(665), - [anon_sym_rewrite] = ACTIONS(665), - [anon_sym_module] = ACTIONS(665), + [sym_literal] = STATE(758), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(1782), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [931] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3082), + [sym_pragma] = ACTIONS(3), }, [932] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_literal] = STATE(918), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(931), - [sym_record_assignments] = STATE(918), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(11), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_] = ACTIONS(3080), - [anon_sym__] = ACTIONS(1425), - [anon_sym_unquote] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3084), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [anon_sym__] = ACTIONS(3092), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3094), + [sym__const_lambda] = ACTIONS(3092), + [anon_sym_quoteGoal] = ACTIONS(3092), + [aux_sym_integer_token1] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_quoteTerm] = ACTIONS(3092), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [sym_qualified_name] = ACTIONS(3092), + [anon_sym_quote] = ACTIONS(3092), + [anon_sym_tactic] = ACTIONS(3092), + [anon_sym_Prop] = ACTIONS(3092), + [sym__const_ellipsis] = ACTIONS(3092), + [anon_sym_record] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_LPAREN_PIPE] = ACTIONS(3094), + [anon_sym_] = ACTIONS(3092), + [anon_sym_3] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_unquote] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3092), + [sym__const_forall] = ACTIONS(3092), + [aux_sym_string_token1] = ACTIONS(3094), + [anon_sym_Set] = ACTIONS(3092), + [sym_pragma] = ACTIONS(3), }, [933] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), + [sym_anonymous_name] = STATE(266), + [sym_typed_binding] = STATE(933), + [sym_untyped_binding] = STATE(933), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(933), + [sym__binding_name] = STATE(270), + [anon_sym__] = ACTIONS(3096), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3099), + [anon_sym_] = ACTIONS(3102), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3111), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3114), + [sym__const_right_arrow] = ACTIONS(3117), + [sym_name] = ACTIONS(3119), }, [934] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [935] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1983), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3122), }, [936] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3088), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [937] = { - [anon_sym_RPAREN] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1984), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(3122), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [938] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(1995), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3090), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(1986), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3124), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [939] = { - [anon_sym_LBRACE] = ACTIONS(3092), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(1987), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [940] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3088), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1988), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [941] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(1989), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3088), }, [942] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_literal] = STATE(934), + [sym_record_assignments] = STATE(934), + [sym_atom] = STATE(1982), + [anon_sym__] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(3130), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_Prop] = ACTIONS(1449), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_record] = ACTIONS(1457), + [anon_sym_] = ACTIONS(3132), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3136), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), }, [943] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3094), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1996), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [944] = { + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3088), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [945] = { - [sym__atom_no_curly] = STATE(266), - [sym_literal] = STATE(256), - [sym_record_assignments] = STATE(256), - [sym__atom_curly] = STATE(266), - [sym_atom] = STATE(945), - [aux_sym__open_args1_repeat1] = STATE(945), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(3098), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3101), - [anon_sym_unquote] = ACTIONS(3098), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3104), - [anon_sym_Set] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3107), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(3098), - [anon_sym_quoteTerm] = ACTIONS(3098), - [anon_sym_quote] = ACTIONS(3098), - [sym__const_ellipsis] = ACTIONS(3098), - [anon_sym_record] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_LPAREN_PIPE] = ACTIONS(3122), - [aux_sym_string_token1] = ACTIONS(3125), - [anon_sym_Prop] = ACTIONS(3098), - [anon_sym_3] = ACTIONS(3128), - [anon_sym_rewrite] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), - }, - [946] = { - [sym_literal] = STATE(279), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(290), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(39), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(289), - [sym__atom_curly] = STATE(290), - [sym_record_assignments] = STATE(279), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(415), - [anon_sym_unquote] = ACTIONS(415), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(417), - [anon_sym_Set] = ACTIONS(415), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_LBRACE_LBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(421), + [sym__newline] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_with] = ACTIONS(3140), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3140), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(415), - [anon_sym_quoteTerm] = ACTIONS(415), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(415), - [sym__const_ellipsis] = ACTIONS(415), - [anon_sym_record] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(429), - [anon_sym_LPAREN_PIPE] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(435), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(415), - [anon_sym_3] = ACTIONS(437), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_rewrite] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), }, - [947] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(1998), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [946] = { + [sym_literal] = STATE(934), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(948), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_record_assignments] = STATE(934), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_] = ACTIONS(3142), + [anon_sym__] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3148), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), }, - [948] = { - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_where] = ACTIONS(2958), + [947] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(479), + }, + [948] = { + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(475), + [anon_sym_module] = ACTIONS(475), }, [949] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1029), + [sym__const_right_arrow] = ACTIONS(3150), }, [950] = { - [sym_do] = STATE(2000), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2000), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2000), - [sym_lambda] = STATE(2000), - [sym__application] = STATE(2000), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(699), + [anon_sym_COLON] = ACTIONS(699), + [anon_sym_with] = ACTIONS(699), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(699), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(699), + [anon_sym_where] = ACTIONS(699), + [anon_sym_rewrite] = ACTIONS(699), + [anon_sym_module] = ACTIONS(699), }, [951] = { - [sym_do] = STATE(2001), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2001), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2001), - [sym_lambda] = STATE(2001), - [sym__application] = STATE(2001), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(2002), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [952] = { - [sym_module_application] = STATE(2003), - [sym_qualified_name] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_where] = ACTIONS(3064), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [953] = { - [sym_anonymous_name] = STATE(957), - [sym__binding_name] = STATE(2008), - [anon_sym__] = ACTIONS(1463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3135), - [anon_sym_] = ACTIONS(3137), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [sym_name] = ACTIONS(1481), + [sym_name] = ACTIONS(1185), }, [954] = { - [sym_do] = STATE(2010), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2010), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2010), - [sym_lambda] = STATE(2010), - [sym_open] = STATE(2009), - [sym__application] = STATE(2010), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(2004), + [sym_do] = STATE(2004), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2004), + [sym_lambda] = STATE(2004), + [sym__application] = STATE(2004), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [955] = { - [sym_do] = STATE(2011), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2011), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2011), - [sym_lambda] = STATE(2011), - [sym__application] = STATE(2011), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(2005), + [sym_do] = STATE(2005), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2005), + [sym_lambda] = STATE(2005), + [sym__application] = STATE(2005), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [956] = { - [sym__declaration_block] = STATE(2012), - [sym__newline] = ACTIONS(3143), + [sym_module_application] = STATE(2007), + [sym_qualified_name] = ACTIONS(3154), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3143), }, [957] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [sym_anonymous_name] = STATE(961), + [sym__binding_name] = STATE(2012), + [anon_sym__] = ACTIONS(1473), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3156), + [anon_sym_] = ACTIONS(3158), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [sym_name] = ACTIONS(1491), }, [958] = { - [anon_sym_where] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3147), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(2014), + [sym__expr2] = STATE(2013), + [sym_do] = STATE(2013), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(2013), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2013), + [sym_lambda] = STATE(2013), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [959] = { - [sym_typed_binding] = STATE(2014), - [sym_anonymous_name] = STATE(957), - [sym_untyped_binding] = STATE(2014), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(2014), - [sym__binding_name] = STATE(960), - [anon_sym__] = ACTIONS(1463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1465), - [anon_sym_] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1481), + [sym__expr2] = STATE(2015), + [sym_do] = STATE(2015), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2015), + [sym_lambda] = STATE(2015), + [sym__application] = STATE(2015), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [960] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym__declaration_block] = STATE(2016), + [sym__newline] = ACTIONS(3164), + [anon_sym_in] = ACTIONS(3164), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1153), }, [961] = { - [sym_do] = STATE(2015), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2015), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2015), - [sym_lambda] = STATE(2015), - [sym__application] = STATE(2015), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1295), }, [962] = { - [sym_do] = STATE(2016), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2016), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2016), - [sym_lambda] = STATE(2016), - [sym__application] = STATE(2016), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [963] = { - [sym_anonymous_name] = STATE(966), - [sym__binding_name] = STATE(2021), - [anon_sym__] = ACTIONS(399), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3149), - [anon_sym_] = ACTIONS(3151), + [anon_sym_where] = ACTIONS(3166), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3168), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3155), - [sym_name] = ACTIONS(1495), + }, + [963] = { + [sym_anonymous_name] = STATE(961), + [sym_typed_binding] = STATE(2018), + [sym_untyped_binding] = STATE(2018), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(2018), + [sym__binding_name] = STATE(964), + [anon_sym__] = ACTIONS(1473), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1475), + [anon_sym_] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1485), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1491), }, [964] = { - [sym_do] = STATE(2023), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2023), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2023), - [sym_lambda] = STATE(2023), - [sym_open] = STATE(2022), - [sym__application] = STATE(2023), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1309), }, [965] = { - [sym_do] = STATE(2024), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2024), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2024), - [sym_lambda] = STATE(2024), - [sym__application] = STATE(2024), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(2019), + [sym_do] = STATE(2019), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2019), + [sym_lambda] = STATE(2019), + [sym__application] = STATE(2019), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [966] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym_name] = ACTIONS(1139), + [sym__expr2] = STATE(2020), + [sym_do] = STATE(2020), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2020), + [sym_lambda] = STATE(2020), + [sym__application] = STATE(2020), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [967] = { + [sym_anonymous_name] = STATE(970), + [sym__binding_name] = STATE(2025), + [anon_sym__] = ACTIONS(403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3170), + [anon_sym_] = ACTIONS(3172), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3176), + [sym_name] = ACTIONS(1505), }, [968] = { - [sym_typed_binding] = STATE(2025), - [sym_anonymous_name] = STATE(966), - [sym_untyped_binding] = STATE(2025), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(2025), - [sym__binding_name] = STATE(969), - [anon_sym__] = ACTIONS(399), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1483), - [anon_sym_] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [sym_name] = ACTIONS(1495), + [sym_open] = STATE(2027), + [sym__expr2] = STATE(2026), + [sym_do] = STATE(2026), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(2026), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2026), + [sym_lambda] = STATE(2026), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [969] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym_name] = ACTIONS(1153), + [sym__expr2] = STATE(2028), + [sym_do] = STATE(2028), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2028), + [sym_lambda] = STATE(2028), + [sym__application] = STATE(2028), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [970] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym_name] = ACTIONS(1295), }, [971] = { - [sym_primitive] = STATE(2027), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2027), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2027), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2028), - [sym_field] = STATE(2027), - [sym_abstract] = STATE(2027), - [sym_private] = STATE(2027), - [sym_function_clause] = STATE(2027), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2027), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2027), - [sym_data] = STATE(2027), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2027), - [sym_macro] = STATE(2027), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2027), - [sym_record_signature_only] = STATE(2027), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2027), - [sym_syntax] = STATE(2027), - [sym_record] = STATE(2027), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2027), - [sym_generalize] = STATE(2027), - [sym_mutual] = STATE(2027), - [sym_postulate] = STATE(2027), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3157), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3166), }, [972] = { - [sym_typed_binding] = STATE(2036), - [sym_anonymous_name] = STATE(2035), - [sym_untyped_binding] = STATE(2036), - [sym__lambda_binding] = STATE(2037), - [sym__binding_name] = STATE(2038), - [anon_sym__] = ACTIONS(3159), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3161), - [anon_sym_] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3171), - [sym_name] = ACTIONS(3173), + [sym_anonymous_name] = STATE(970), + [sym_typed_binding] = STATE(2029), + [sym_untyped_binding] = STATE(2029), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(2029), + [sym__binding_name] = STATE(973), + [anon_sym__] = ACTIONS(403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1493), + [anon_sym_] = ACTIONS(1495), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [sym_name] = ACTIONS(1505), }, [973] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [974] = { + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3175), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym_name] = ACTIONS(1309), + }, + [974] = { + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [975] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2041), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3177), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3178), }, [976] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2042), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3177), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [977] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2044), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3179), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_PIPE_RPAREN] = ACTIONS(3178), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [978] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2045), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2032), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [979] = { - [sym__atom_no_curly] = STATE(986), - [sym_literal] = STATE(970), - [sym_record_assignments] = STATE(970), - [sym__atom_curly] = STATE(986), - [sym_atom] = STATE(2040), - [anon_sym__] = ACTIONS(1501), - [anon_sym_unquote] = ACTIONS(1501), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(3182), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1507), - [anon_sym_Set] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1513), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1501), - [anon_sym_quoteTerm] = ACTIONS(1501), - [anon_sym_quote] = ACTIONS(1501), - [sym__const_ellipsis] = ACTIONS(1501), - [anon_sym_record] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_LPAREN_PIPE] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_3] = ACTIONS(1531), - [aux_sym_string_token1] = ACTIONS(1527), - [anon_sym_Prop] = ACTIONS(1501), + [sym_pragma] = ACTIONS(3), }, [980] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2046), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3178), }, [981] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2048), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(3178), + [sym_pragma] = ACTIONS(3), }, [982] = { - [sym__atom_no_curly] = STATE(2059), - [sym_literal] = STATE(2049), - [aux_sym__open_args1_repeat1] = STATE(2060), - [sym__atom_curly] = STATE(2059), - [sym_record_assignments] = STATE(2049), - [sym_atom] = STATE(2060), - [sym__atoms1] = STATE(2061), - [anon_sym__] = ACTIONS(3185), - [anon_sym_unquote] = ACTIONS(3185), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3187), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3189), - [anon_sym_Set] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3191), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3185), - [anon_sym_quoteTerm] = ACTIONS(3185), - [anon_sym_quote] = ACTIONS(3185), - [sym__const_ellipsis] = ACTIONS(3185), - [anon_sym_record] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_3] = ACTIONS(3203), - [aux_sym_string_token1] = ACTIONS(3205), - [anon_sym_Prop] = ACTIONS(3185), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [983] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2062), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), - }, - [984] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2063), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [985] = { - [sym_literal] = STATE(970), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(986), - [aux_sym__open_args1_repeat1] = STATE(988), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(989), - [sym__atom_curly] = STATE(986), - [sym_record_assignments] = STATE(970), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1501), - [anon_sym_unquote] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(1507), - [anon_sym_Set] = ACTIONS(1501), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1501), - [anon_sym_quoteTerm] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1501), - [sym__const_ellipsis] = ACTIONS(1501), - [anon_sym_record] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_LPAREN_PIPE] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(1527), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(1501), - [anon_sym_3] = ACTIONS(1531), - }, - [986] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), - }, - [987] = { - [sym__newline] = ACTIONS(3207), - [anon_sym_COLON] = ACTIONS(3207), - [anon_sym_with] = ACTIONS(3207), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3184), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_where] = ACTIONS(3207), - [anon_sym_module] = ACTIONS(3207), - }, - [988] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(989), - [sym__atom_curly] = STATE(986), - [sym_literal] = STATE(970), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(986), - [sym_record_assignments] = STATE(970), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(1501), - [anon_sym_unquote] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(1507), - [anon_sym_Set] = ACTIONS(1501), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1501), - [anon_sym_quoteTerm] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1501), - [sym__const_ellipsis] = ACTIONS(1501), - [anon_sym_record] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_LPAREN_PIPE] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(1527), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(1501), - [anon_sym_3] = ACTIONS(1531), }, - [989] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [984] = { + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, - [990] = { + [985] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, + [986] = { + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2036), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3188), + }, + [987] = { + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3190), + }, + [988] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), + }, + [989] = { + [sym_anonymous_name] = STATE(2044), + [sym_typed_binding] = STATE(2045), + [sym_untyped_binding] = STATE(2045), + [sym__lambda_binding] = STATE(2046), + [sym__binding_name] = STATE(2047), + [anon_sym__] = ACTIONS(3192), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3194), + [anon_sym_] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(3202), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3204), + [sym_name] = ACTIONS(3206), + }, + [990] = { + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2048), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(3188), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), + }, [991] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2065), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3209), + [sym__atom_curly] = STATE(2059), + [sym__atom_no_curly] = STATE(2059), + [sym_literal] = STATE(2049), + [aux_sym__open_args1_repeat1] = STATE(2060), + [sym_record_assignments] = STATE(2049), + [sym_atom] = STATE(2060), + [sym__atoms1] = STATE(2061), + [anon_sym__] = ACTIONS(3208), + [anon_sym_quoteTerm] = ACTIONS(3208), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3210), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3214), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3216), + [sym_qualified_name] = ACTIONS(3208), + [anon_sym_quote] = ACTIONS(3208), + [anon_sym_3] = ACTIONS(3218), + [anon_sym_Prop] = ACTIONS(3208), + [sym__const_ellipsis] = ACTIONS(3208), + [anon_sym_record] = ACTIONS(3220), + [anon_sym_] = ACTIONS(3222), + [anon_sym_unquote] = ACTIONS(3208), + [anon_sym_DOT] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [aux_sym_string_token1] = ACTIONS(3228), + [anon_sym_Set] = ACTIONS(3208), }, [992] = { - [sym_primitive] = STATE(2067), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2067), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2067), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2068), - [sym_field] = STATE(2067), - [sym_abstract] = STATE(2067), - [sym_private] = STATE(2067), - [sym_function_clause] = STATE(2067), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(2063), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2063), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2063), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2063), + [sym_abstract] = STATE(2063), + [sym_private] = STATE(2063), + [sym_function_clause] = STATE(2063), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2067), + [sym_open] = STATE(2063), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2064), + [sym_infix] = STATE(2063), + [sym_data] = STATE(2063), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2067), - [sym_data] = STATE(2067), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2067), - [sym_macro] = STATE(2067), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2067), - [sym_record_signature_only] = STATE(2067), - [sym_atom] = STATE(158), + [sym_instance] = STATE(2063), + [sym_macro] = STATE(2063), + [sym_test] = STATE(2063), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2063), + [sym_record_signature_only] = STATE(2063), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2063), + [sym_syntax] = STATE(2063), + [sym_record] = STATE(2063), [sym_do] = STATE(43), - [sym_pattern] = STATE(2067), - [sym_syntax] = STATE(2067), - [sym_record] = STATE(2067), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2067), - [sym_generalize] = STATE(2067), - [sym_mutual] = STATE(2067), - [sym_postulate] = STATE(2067), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3211), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2063), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2063), + [sym_mutual] = STATE(2063), + [sym_postulate] = STATE(2063), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3230), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [993] = { - [sym_typed_binding] = STATE(2076), - [sym_anonymous_name] = STATE(2075), - [sym_untyped_binding] = STATE(2076), - [sym__lambda_binding] = STATE(2077), - [sym__binding_name] = STATE(2078), - [anon_sym__] = ACTIONS(3213), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3215), - [anon_sym_] = ACTIONS(3217), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3225), - [sym_name] = ACTIONS(3227), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2066), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3232), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [994] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2067), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [995] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2079), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3209), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2068), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [996] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2069), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3229), }, [997] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2082), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3231), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_literal] = STATE(985), + [sym_record_assignments] = STATE(985), + [sym_atom] = STATE(2035), + [anon_sym__] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(3238), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_Prop] = ACTIONS(1561), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_record] = ACTIONS(1577), + [anon_sym_] = ACTIONS(3240), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), }, [998] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2083), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2076), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [999] = { - [sym__atom_no_curly] = STATE(1008), - [sym_literal] = STATE(990), - [sym_record_assignments] = STATE(990), - [sym__atom_curly] = STATE(1008), - [sym_atom] = STATE(2064), - [anon_sym__] = ACTIONS(1533), - [anon_sym_unquote] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3235), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(3237), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_] = ACTIONS(3239), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_3] = ACTIONS(1563), - [aux_sym_string_token1] = ACTIONS(1559), - [anon_sym_Prop] = ACTIONS(1533), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2077), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1000] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2089), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1001] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2091), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3248), + [anon_sym_where] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(3248), }, [1002] = { - [sym__atom_no_curly] = STATE(2102), - [sym_literal] = STATE(2092), - [aux_sym__open_args1_repeat1] = STATE(2103), - [sym__atom_curly] = STATE(2102), - [sym_record_assignments] = STATE(2092), - [sym_atom] = STATE(2103), - [sym__atoms1] = STATE(2104), - [anon_sym__] = ACTIONS(3247), - [anon_sym_unquote] = ACTIONS(3247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3251), - [anon_sym_Set] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3247), - [anon_sym_quoteTerm] = ACTIONS(3247), - [anon_sym_quote] = ACTIONS(3247), - [sym__const_ellipsis] = ACTIONS(3247), - [anon_sym_record] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_] = ACTIONS(3257), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_LPAREN_PIPE] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_3] = ACTIONS(3265), - [aux_sym_string_token1] = ACTIONS(3267), - [anon_sym_Prop] = ACTIONS(3247), + [sym_literal] = STATE(985), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1004), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_record_assignments] = STATE(985), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_] = ACTIONS(3250), + [anon_sym__] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3254), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3256), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), }, [1003] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2105), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(479), }, [1004] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2106), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1005] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3269), + [sym__const_right_arrow] = ACTIONS(3258), }, [1006] = { - [sym__newline] = ACTIONS(3271), - [anon_sym_COLON] = ACTIONS(3271), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3271), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_where] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), + [sym_literal] = STATE(2083), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2093), + [sym__atom_no_curly] = STATE(2093), + [aux_sym__open_args1_repeat1] = STATE(2094), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2095), + [sym_record_assignments] = STATE(2083), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(3260), + [anon_sym_quoteTerm] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(3262), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(3260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3268), + [sym_qualified_name] = ACTIONS(3260), + [anon_sym_quote] = ACTIONS(3260), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(3270), + [sym__const_ellipsis] = ACTIONS(3260), + [anon_sym_3] = ACTIONS(3272), + [anon_sym_] = ACTIONS(3274), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(3280), + [anon_sym_Set] = ACTIONS(3260), }, [1007] = { - [sym_literal] = STATE(2108), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2118), - [aux_sym__open_args1_repeat1] = STATE(2119), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2120), - [sym__atom_curly] = STATE(2118), - [sym_record_assignments] = STATE(2108), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3273), - [anon_sym_unquote] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(3275), - [anon_sym_Set] = ACTIONS(3273), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3273), - [anon_sym_quoteTerm] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3273), - [sym__const_ellipsis] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3281), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LPAREN_PIPE] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(3291), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(3273), - [anon_sym_3] = ACTIONS(3293), + [sym__newline] = ACTIONS(3282), + [anon_sym_in] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1008] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1183), }, [1009] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_literal] = STATE(990), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1008), - [sym_record_assignments] = STATE(990), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1545), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_] = ACTIONS(3295), - [anon_sym__] = ACTIONS(1533), - [anon_sym_unquote] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3299), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3284), }, [1010] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym__newline] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1011] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1012] = { - [sym__newline] = ACTIONS(3303), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_where] = ACTIONS(3303), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3303), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(3303), + [sym_name] = ACTIONS(3288), }, [1013] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1014] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3305), + [sym_anonymous_name] = STATE(2104), + [sym_typed_binding] = STATE(2105), + [sym_untyped_binding] = STATE(2105), + [sym__lambda_binding] = STATE(2106), + [sym__binding_name] = STATE(2107), + [anon_sym__] = ACTIONS(3290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3292), + [anon_sym_] = ACTIONS(3294), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3300), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3302), + [sym_name] = ACTIONS(3304), }, [1015] = { - [anon_sym_RPAREN] = ACTIONS(3305), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2109), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3306), }, [1016] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2127), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3307), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2110), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3306), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1017] = { - [anon_sym_LBRACE] = ACTIONS(3309), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2111), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1018] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3305), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2122), + [sym__atom_no_curly] = STATE(2122), + [sym_literal] = STATE(2112), + [aux_sym__open_args1_repeat1] = STATE(2123), + [sym_record_assignments] = STATE(2112), + [sym_atom] = STATE(2123), + [sym__atoms1] = STATE(2124), + [anon_sym__] = ACTIONS(3308), + [anon_sym_quoteTerm] = ACTIONS(3308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3314), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3316), + [sym_qualified_name] = ACTIONS(3308), + [anon_sym_quote] = ACTIONS(3308), + [anon_sym_3] = ACTIONS(3318), + [anon_sym_Prop] = ACTIONS(3308), + [sym__const_ellipsis] = ACTIONS(3308), + [anon_sym_record] = ACTIONS(3320), + [anon_sym_] = ACTIONS(3322), + [anon_sym_unquote] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3326), + [aux_sym_string_token1] = ACTIONS(3328), + [anon_sym_Set] = ACTIONS(3308), }, [1019] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3305), + [sym_primitive] = STATE(2126), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2126), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2126), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2126), + [sym_abstract] = STATE(2126), + [sym_private] = STATE(2126), + [sym_function_clause] = STATE(2126), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2126), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2127), + [sym_infix] = STATE(2126), + [sym_data] = STATE(2126), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2126), + [sym_macro] = STATE(2126), + [sym_test] = STATE(2126), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2126), + [sym_record_signature_only] = STATE(2126), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2126), + [sym_syntax] = STATE(2126), + [sym_record] = STATE(2126), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2126), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2126), + [sym_mutual] = STATE(2126), + [sym_postulate] = STATE(2126), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3330), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1020] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2129), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3332), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1021] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3311), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2130), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [1022] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3305), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2131), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3334), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1023] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(3313), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [sym__atom_curly] = STATE(1026), + [sym__atom_no_curly] = STATE(1026), + [sym_literal] = STATE(1011), + [sym_record_assignments] = STATE(1011), + [sym_atom] = STATE(2108), + [anon_sym__] = ACTIONS(1599), + [anon_sym_quoteTerm] = ACTIONS(1599), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1609), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1611), + [sym_qualified_name] = ACTIONS(1599), + [anon_sym_quote] = ACTIONS(1599), + [anon_sym_3] = ACTIONS(1619), + [anon_sym_Prop] = ACTIONS(1599), + [sym__const_ellipsis] = ACTIONS(1599), + [anon_sym_record] = ACTIONS(1617), + [anon_sym_] = ACTIONS(1621), + [anon_sym_unquote] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [aux_sym_string_token1] = ACTIONS(1629), + [anon_sym_Set] = ACTIONS(1599), }, [1024] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2133), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [1025] = { + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2134), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), + }, + [1026] = { + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), + }, + [1027] = { + [sym_literal] = STATE(1011), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1028), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1026), + [sym__atom_no_curly] = STATE(1026), + [sym_record_assignments] = STATE(1011), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(1599), + [anon_sym_quoteTerm] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(1603), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1599), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym_LPAREN_PIPE] = ACTIONS(1611), + [sym_qualified_name] = ACTIONS(1599), + [anon_sym_quote] = ACTIONS(1599), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(1617), + [sym__const_ellipsis] = ACTIONS(1599), + [anon_sym_3] = ACTIONS(1619), + [anon_sym_] = ACTIONS(1621), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(1629), + [anon_sym_Set] = ACTIONS(1599), + [sym_pragma] = ACTIONS(3), + }, + [1028] = { + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), + }, + [1029] = { + [sym__newline] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3338), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_where] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + }, + [1030] = { + [sym_literal] = STATE(1011), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1026), + [sym__atom_no_curly] = STATE(1026), + [aux_sym__open_args1_repeat1] = STATE(1027), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1028), + [sym_record_assignments] = STATE(1011), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(1599), + [anon_sym_quoteTerm] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(1603), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1599), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1611), + [sym_qualified_name] = ACTIONS(1599), + [anon_sym_quote] = ACTIONS(1599), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(1617), + [sym__const_ellipsis] = ACTIONS(1599), + [anon_sym_3] = ACTIONS(1619), + [anon_sym_] = ACTIONS(1621), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(1629), + [anon_sym_Set] = ACTIONS(1599), + }, + [1031] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [1025] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2131), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3315), - }, - [1026] = { - [sym_primitive] = STATE(2133), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2133), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2133), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2134), - [sym_field] = STATE(2133), - [sym_abstract] = STATE(2133), - [sym_private] = STATE(2133), - [sym_function_clause] = STATE(2133), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2133), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2133), - [sym_data] = STATE(2133), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2133), - [sym_macro] = STATE(2133), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2133), - [sym_record_signature_only] = STATE(2133), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2133), - [sym_syntax] = STATE(2133), - [sym_record] = STATE(2133), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2133), - [sym_generalize] = STATE(2133), - [sym_mutual] = STATE(2133), - [sym_postulate] = STATE(2133), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3317), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1027] = { - [sym_typed_binding] = STATE(2142), - [sym_anonymous_name] = STATE(2141), - [sym_untyped_binding] = STATE(2142), - [sym__lambda_binding] = STATE(2143), - [sym__binding_name] = STATE(2144), - [anon_sym__] = ACTIONS(3319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3321), - [anon_sym_] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3329), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [sym_name] = ACTIONS(3333), - }, - [1028] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [1029] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2145), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3315), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [1030] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3335), - }, - [1031] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2148), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3337), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, [1032] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2149), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2136), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3340), }, [1033] = { - [sym__atom_no_curly] = STATE(1042), - [sym_literal] = STATE(1024), - [sym_record_assignments] = STATE(1024), - [sym__atom_curly] = STATE(1042), - [sym_atom] = STATE(2130), - [anon_sym__] = ACTIONS(1714), - [anon_sym_unquote] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3341), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(3343), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [anon_sym_] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_3] = ACTIONS(1744), - [aux_sym_string_token1] = ACTIONS(1740), - [anon_sym_Prop] = ACTIONS(1714), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3342), }, [1034] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2155), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1035] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2157), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_anonymous_name] = STATE(2144), + [sym_typed_binding] = STATE(2145), + [sym_untyped_binding] = STATE(2145), + [sym__lambda_binding] = STATE(2146), + [sym__binding_name] = STATE(2147), + [anon_sym__] = ACTIONS(3344), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3346), + [anon_sym_] = ACTIONS(3348), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3354), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [sym_name] = ACTIONS(3358), }, [1036] = { - [sym__atom_no_curly] = STATE(2168), - [sym_literal] = STATE(2158), - [aux_sym__open_args1_repeat1] = STATE(2169), - [sym__atom_curly] = STATE(2168), - [sym_record_assignments] = STATE(2158), - [sym_atom] = STATE(2169), - [sym__atoms1] = STATE(2170), - [anon_sym__] = ACTIONS(3353), - [anon_sym_unquote] = ACTIONS(3353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3357), - [anon_sym_Set] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3353), - [anon_sym_quoteTerm] = ACTIONS(3353), - [anon_sym_quote] = ACTIONS(3353), - [sym__const_ellipsis] = ACTIONS(3353), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3365), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_3] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3373), - [anon_sym_Prop] = ACTIONS(3353), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2148), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(3340), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1037] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2171), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__atom_curly] = STATE(2159), + [sym__atom_no_curly] = STATE(2159), + [sym_literal] = STATE(2149), + [aux_sym__open_args1_repeat1] = STATE(2160), + [sym_record_assignments] = STATE(2149), + [sym_atom] = STATE(2160), + [sym__atoms1] = STATE(2161), + [anon_sym__] = ACTIONS(3360), + [anon_sym_quoteTerm] = ACTIONS(3360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3364), + [anon_sym_QMARK] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3366), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_qualified_name] = ACTIONS(3360), + [anon_sym_quote] = ACTIONS(3360), + [anon_sym_3] = ACTIONS(3370), + [anon_sym_Prop] = ACTIONS(3360), + [sym__const_ellipsis] = ACTIONS(3360), + [anon_sym_record] = ACTIONS(3372), + [anon_sym_] = ACTIONS(3374), + [anon_sym_unquote] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [aux_sym_string_token1] = ACTIONS(3380), + [anon_sym_Set] = ACTIONS(3360), }, [1038] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2172), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_primitive] = STATE(2163), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2163), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2163), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2163), + [sym_abstract] = STATE(2163), + [sym_private] = STATE(2163), + [sym_function_clause] = STATE(2163), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2163), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2164), + [sym_infix] = STATE(2163), + [sym_data] = STATE(2163), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2163), + [sym_macro] = STATE(2163), + [sym_test] = STATE(2163), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2163), + [sym_record_signature_only] = STATE(2163), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2163), + [sym_syntax] = STATE(2163), + [sym_record] = STATE(2163), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2163), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2163), + [sym_mutual] = STATE(2163), + [sym_postulate] = STATE(2163), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3382), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1039] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3375), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2166), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3384), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1040] = { - [sym__newline] = ACTIONS(3377), - [anon_sym_where] = ACTIONS(3377), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2167), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), }, [1041] = { - [sym_literal] = STATE(2174), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2184), - [aux_sym__open_args1_repeat1] = STATE(2185), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2186), - [sym__atom_curly] = STATE(2184), - [sym_record_assignments] = STATE(2174), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3379), - [anon_sym_unquote] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(3381), - [anon_sym_Set] = ACTIONS(3379), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3379), - [anon_sym_quoteTerm] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3379), - [sym__const_ellipsis] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(3397), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(3379), - [anon_sym_3] = ACTIONS(3399), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2168), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3386), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1042] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2169), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1043] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_literal] = STATE(1024), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1042), - [sym_record_assignments] = STATE(1024), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1726), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [anon_sym_] = ACTIONS(3401), - [anon_sym__] = ACTIONS(1714), - [anon_sym_unquote] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3405), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_literal] = STATE(1031), + [sym_record_assignments] = STATE(1031), + [sym_atom] = STATE(2135), + [anon_sym__] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1637), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(3390), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_Prop] = ACTIONS(1631), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_record] = ACTIONS(1647), + [anon_sym_] = ACTIONS(3392), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3396), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), }, [1044] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2176), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1045] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3375), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2177), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1046] = { - [sym__newline] = ACTIONS(3409), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1047] = { + [sym__newline] = ACTIONS(3400), + [anon_sym_COLON] = ACTIONS(3400), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3400), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(3400), + [anon_sym_where] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), }, [1048] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3411), + [sym_literal] = STATE(1031), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1050), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_record_assignments] = STATE(1031), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_] = ACTIONS(3402), + [anon_sym__] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3408), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), }, [1049] = { - [sym__newline] = ACTIONS(3413), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3413), + [sym__const_right_arrow] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(479), }, [1050] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1051] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(2192), - [aux_sym__open_args1_repeat1] = STATE(2192), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3410), }, [1052] = { - [sym__newline] = ACTIONS(3417), - [anon_sym_where] = ACTIONS(3417), + [sym_literal] = STATE(2183), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2193), + [sym__atom_no_curly] = STATE(2193), + [aux_sym__open_args1_repeat1] = STATE(2194), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2195), + [sym_record_assignments] = STATE(2183), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(3412), + [anon_sym_quoteTerm] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(3414), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3418), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3420), + [sym_qualified_name] = ACTIONS(3412), + [anon_sym_quote] = ACTIONS(3412), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(3422), + [sym__const_ellipsis] = ACTIONS(3412), + [anon_sym_3] = ACTIONS(3424), + [anon_sym_] = ACTIONS(3426), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(3432), + [anon_sym_Set] = ACTIONS(3412), + }, + [1053] = { + [sym__newline] = ACTIONS(3434), + [anon_sym_in] = ACTIONS(3434), + [anon_sym_where] = ACTIONS(3434), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3434), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3434), }, - [1053] = { + [1054] = { + [sym__newline] = ACTIONS(3436), + [anon_sym_in] = ACTIONS(3436), + [anon_sym_where] = ACTIONS(3436), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(3436), + }, + [1055] = { [anon_sym_COLON] = ACTIONS(119), [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [1054] = { - [sym_primitive] = STATE(2194), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2194), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2194), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2195), - [sym_field] = STATE(2194), - [sym_abstract] = STATE(2194), - [sym_private] = STATE(2194), - [sym_function_clause] = STATE(2194), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2194), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2194), - [sym_data] = STATE(2194), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2194), - [sym_macro] = STATE(2194), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2194), - [sym_record_signature_only] = STATE(2194), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2194), - [sym_syntax] = STATE(2194), - [sym_record] = STATE(2194), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2194), - [sym_generalize] = STATE(2194), - [sym_mutual] = STATE(2194), - [sym_postulate] = STATE(2194), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3419), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1055] = { - [sym_typed_binding] = STATE(2203), - [sym_anonymous_name] = STATE(2202), - [sym_untyped_binding] = STATE(2203), - [sym__lambda_binding] = STATE(2204), - [sym__binding_name] = STATE(2205), - [anon_sym__] = ACTIONS(3421), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3423), - [anon_sym_] = ACTIONS(3425), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3431), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3433), - [sym_name] = ACTIONS(3435), - }, [1056] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [1057] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3437), + [sym_name] = ACTIONS(3438), }, - [1058] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2208), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [1057] = { + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3439), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), + }, + [1058] = { + [sym_anonymous_name] = STATE(2203), + [sym_typed_binding] = STATE(2204), + [sym_untyped_binding] = STATE(2204), + [sym__lambda_binding] = STATE(2205), + [sym__binding_name] = STATE(2206), + [anon_sym__] = ACTIONS(3440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3442), + [anon_sym_] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3452), + [sym_name] = ACTIONS(3454), }, [1059] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2209), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3439), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2208), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3456), }, [1060] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2211), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3441), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2209), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3456), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1061] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2212), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2210), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), + }, + [1062] = { + [sym__atom_curly] = STATE(2221), + [sym__atom_no_curly] = STATE(2221), + [sym_literal] = STATE(2211), + [aux_sym__open_args1_repeat1] = STATE(2222), + [sym_record_assignments] = STATE(2211), + [sym_atom] = STATE(2222), + [sym__atoms1] = STATE(2223), + [anon_sym__] = ACTIONS(3458), + [anon_sym_quoteTerm] = ACTIONS(3458), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3462), + [anon_sym_QMARK] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3464), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3466), + [sym_qualified_name] = ACTIONS(3458), + [anon_sym_quote] = ACTIONS(3458), + [anon_sym_3] = ACTIONS(3468), + [anon_sym_Prop] = ACTIONS(3458), + [sym__const_ellipsis] = ACTIONS(3458), + [anon_sym_record] = ACTIONS(3470), + [anon_sym_] = ACTIONS(3472), + [anon_sym_unquote] = ACTIONS(3458), + [anon_sym_DOT] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [aux_sym_string_token1] = ACTIONS(3478), + [anon_sym_Set] = ACTIONS(3458), + }, + [1063] = { + [sym_primitive] = STATE(2225), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2225), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2225), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2225), + [sym_abstract] = STATE(2225), + [sym_private] = STATE(2225), + [sym_function_clause] = STATE(2225), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2225), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2226), + [sym_infix] = STATE(2225), + [sym_data] = STATE(2225), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2225), + [sym_macro] = STATE(2225), + [sym_test] = STATE(2225), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2225), + [sym_record_signature_only] = STATE(2225), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2225), + [sym_syntax] = STATE(2225), + [sym_record] = STATE(2225), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2225), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2225), + [sym_mutual] = STATE(2225), + [sym_postulate] = STATE(2225), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3480), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3443), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [1062] = { - [sym__atom_no_curly] = STATE(1069), - [sym_literal] = STATE(1053), - [sym_record_assignments] = STATE(1053), - [sym__atom_curly] = STATE(1069), - [sym_atom] = STATE(2207), - [anon_sym__] = ACTIONS(1791), - [anon_sym_unquote] = ACTIONS(1791), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1797), - [anon_sym_Set] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1791), - [anon_sym_quoteTerm] = ACTIONS(1791), - [anon_sym_quote] = ACTIONS(1791), - [sym__const_ellipsis] = ACTIONS(1791), - [anon_sym_record] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LPAREN_PIPE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_3] = ACTIONS(1821), - [aux_sym_string_token1] = ACTIONS(1817), - [anon_sym_Prop] = ACTIONS(1791), - }, - [1063] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2213), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1064] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2215), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2228), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3482), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1065] = { - [sym__atom_no_curly] = STATE(2226), - [sym_literal] = STATE(2216), - [aux_sym__open_args1_repeat1] = STATE(2227), - [sym__atom_curly] = STATE(2226), - [sym_record_assignments] = STATE(2216), - [sym_atom] = STATE(2227), - [sym__atoms1] = STATE(2228), - [anon_sym__] = ACTIONS(3447), - [anon_sym_unquote] = ACTIONS(3447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3451), - [anon_sym_Set] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3453), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3447), - [anon_sym_quoteTerm] = ACTIONS(3447), - [anon_sym_quote] = ACTIONS(3447), - [sym__const_ellipsis] = ACTIONS(3447), - [anon_sym_record] = ACTIONS(3455), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_3] = ACTIONS(3465), - [aux_sym_string_token1] = ACTIONS(3467), - [anon_sym_Prop] = ACTIONS(3447), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2229), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1066] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2229), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2230), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1067] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2230), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__atom_curly] = STATE(1070), + [sym__atom_no_curly] = STATE(1070), + [sym_literal] = STATE(1055), + [sym_record_assignments] = STATE(1055), + [sym_atom] = STATE(2207), + [anon_sym__] = ACTIONS(1770), + [anon_sym_quoteTerm] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1778), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1782), + [sym_qualified_name] = ACTIONS(1770), + [anon_sym_quote] = ACTIONS(1770), + [anon_sym_3] = ACTIONS(1790), + [anon_sym_Prop] = ACTIONS(1770), + [sym__const_ellipsis] = ACTIONS(1770), + [anon_sym_record] = ACTIONS(1788), + [anon_sym_] = ACTIONS(1792), + [anon_sym_unquote] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1796), + [aux_sym_string_token1] = ACTIONS(1800), + [anon_sym_Set] = ACTIONS(1770), }, [1068] = { - [sym_literal] = STATE(1053), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(1069), - [aux_sym__open_args1_repeat1] = STATE(1070), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1071), - [sym__atom_curly] = STATE(1069), - [sym_record_assignments] = STATE(1053), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1791), - [anon_sym_unquote] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(1797), - [anon_sym_Set] = ACTIONS(1791), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1791), - [anon_sym_quoteTerm] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1791), - [sym__const_ellipsis] = ACTIONS(1791), - [anon_sym_record] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LPAREN_PIPE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(1817), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(1791), - [anon_sym_3] = ACTIONS(1821), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2232), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1069] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2233), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1070] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1071), - [sym__atom_curly] = STATE(1069), - [sym_literal] = STATE(1053), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1069), - [sym_record_assignments] = STATE(1053), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(1791), - [anon_sym_unquote] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(1797), - [anon_sym_Set] = ACTIONS(1791), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1791), - [anon_sym_quoteTerm] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1791), - [sym__const_ellipsis] = ACTIONS(1791), - [anon_sym_record] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LPAREN_PIPE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(1817), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(1791), - [anon_sym_3] = ACTIONS(1821), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1071] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_literal] = STATE(1055), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1072), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1070), + [sym__atom_no_curly] = STATE(1070), + [sym_record_assignments] = STATE(1055), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(1770), + [anon_sym_quoteTerm] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(1774), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_LPAREN_PIPE] = ACTIONS(1782), + [sym_qualified_name] = ACTIONS(1770), + [anon_sym_quote] = ACTIONS(1770), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(1788), + [sym__const_ellipsis] = ACTIONS(1770), + [anon_sym_3] = ACTIONS(1790), + [anon_sym_] = ACTIONS(1792), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1796), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(1800), + [anon_sym_Set] = ACTIONS(1770), + [sym_pragma] = ACTIONS(3), }, [1072] = { + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), + }, + [1073] = { + [sym_literal] = STATE(1055), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1070), + [sym__atom_no_curly] = STATE(1070), + [aux_sym__open_args1_repeat1] = STATE(1071), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1072), + [sym_record_assignments] = STATE(1055), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(1770), + [anon_sym_quoteTerm] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(1774), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1782), + [sym_qualified_name] = ACTIONS(1770), + [anon_sym_quote] = ACTIONS(1770), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(1788), + [sym__const_ellipsis] = ACTIONS(1770), + [anon_sym_3] = ACTIONS(1790), + [anon_sym_] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1796), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(1800), + [anon_sym_Set] = ACTIONS(1770), + }, + [1074] = { [anon_sym_COLON] = ACTIONS(119), [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [1073] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2232), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3469), - }, - [1074] = { - [sym_primitive] = STATE(2234), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2234), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2234), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2235), - [sym_field] = STATE(2234), - [sym_abstract] = STATE(2234), - [sym_private] = STATE(2234), - [sym_function_clause] = STATE(2234), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2234), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2234), - [sym_data] = STATE(2234), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2234), - [sym_macro] = STATE(2234), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2234), - [sym_record_signature_only] = STATE(2234), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2234), - [sym_syntax] = STATE(2234), - [sym_record] = STATE(2234), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2234), - [sym_generalize] = STATE(2234), - [sym_mutual] = STATE(2234), - [sym_postulate] = STATE(2234), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3471), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, [1075] = { - [sym_typed_binding] = STATE(2243), - [sym_anonymous_name] = STATE(2242), - [sym_untyped_binding] = STATE(2243), - [sym__lambda_binding] = STATE(2244), - [sym__binding_name] = STATE(2245), - [anon_sym__] = ACTIONS(3473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3475), - [anon_sym_] = ACTIONS(3477), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3483), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3485), - [sym_name] = ACTIONS(3487), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2235), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3488), }, [1076] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3490), }, [1077] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2246), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3469), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1078] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3489), + [sym_anonymous_name] = STATE(2243), + [sym_typed_binding] = STATE(2244), + [sym_untyped_binding] = STATE(2244), + [sym__lambda_binding] = STATE(2245), + [sym__binding_name] = STATE(2246), + [anon_sym__] = ACTIONS(3492), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3494), + [anon_sym_] = ACTIONS(3496), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3502), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3504), + [sym_name] = ACTIONS(3506), }, [1079] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2249), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3491), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2247), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(3488), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1080] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2250), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__atom_curly] = STATE(2258), + [sym__atom_no_curly] = STATE(2258), + [sym_literal] = STATE(2248), + [aux_sym__open_args1_repeat1] = STATE(2259), + [sym_record_assignments] = STATE(2248), + [sym_atom] = STATE(2259), + [sym__atoms1] = STATE(2260), + [anon_sym__] = ACTIONS(3508), + [anon_sym_quoteTerm] = ACTIONS(3508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3514), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3516), + [sym_qualified_name] = ACTIONS(3508), + [anon_sym_quote] = ACTIONS(3508), + [anon_sym_3] = ACTIONS(3518), + [anon_sym_Prop] = ACTIONS(3508), + [sym__const_ellipsis] = ACTIONS(3508), + [anon_sym_record] = ACTIONS(3520), + [anon_sym_] = ACTIONS(3522), + [anon_sym_unquote] = ACTIONS(3508), + [anon_sym_DOT] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [aux_sym_string_token1] = ACTIONS(3528), + [anon_sym_Set] = ACTIONS(3508), }, [1081] = { - [sym__atom_no_curly] = STATE(1089), - [sym_literal] = STATE(1072), - [sym_record_assignments] = STATE(1072), - [sym__atom_curly] = STATE(1089), - [sym_atom] = STATE(2231), - [anon_sym__] = ACTIONS(1823), - [anon_sym_unquote] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3495), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(3497), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_] = ACTIONS(3499), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_3] = ACTIONS(1853), - [aux_sym_string_token1] = ACTIONS(1849), - [anon_sym_Prop] = ACTIONS(1823), - }, - [1082] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2256), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [1083] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2258), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [1084] = { - [sym__atom_no_curly] = STATE(2269), - [sym_literal] = STATE(2259), - [aux_sym__open_args1_repeat1] = STATE(2270), - [sym__atom_curly] = STATE(2269), - [sym_record_assignments] = STATE(2259), - [sym_atom] = STATE(2270), - [sym__atoms1] = STATE(2271), - [anon_sym__] = ACTIONS(3507), - [anon_sym_unquote] = ACTIONS(3507), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3511), - [anon_sym_Set] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3513), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3507), - [anon_sym_quoteTerm] = ACTIONS(3507), - [anon_sym_quote] = ACTIONS(3507), - [sym__const_ellipsis] = ACTIONS(3507), - [anon_sym_record] = ACTIONS(3515), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3523), - [anon_sym_3] = ACTIONS(3525), - [aux_sym_string_token1] = ACTIONS(3527), - [anon_sym_Prop] = ACTIONS(3507), - }, - [1085] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2272), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), - }, - [1086] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2273), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), + [sym_primitive] = STATE(2262), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2262), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2262), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2262), + [sym_abstract] = STATE(2262), + [sym_private] = STATE(2262), + [sym_function_clause] = STATE(2262), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2262), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2263), + [sym_infix] = STATE(2262), + [sym_data] = STATE(2262), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2262), + [sym_macro] = STATE(2262), + [sym_test] = STATE(2262), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2262), + [sym_record_signature_only] = STATE(2262), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2262), + [sym_syntax] = STATE(2262), + [sym_record] = STATE(2262), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2262), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2262), + [sym_mutual] = STATE(2262), + [sym_postulate] = STATE(2262), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3530), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [1082] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2265), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3532), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [1083] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2266), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, - [1087] = { - [sym_comment] = ACTIONS(3), + [1084] = { + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2267), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + }, + [1085] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2268), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3529), + }, + [1086] = { + [sym__atom_curly] = STATE(1089), + [sym__atom_no_curly] = STATE(1089), + [sym_literal] = STATE(1074), + [sym_record_assignments] = STATE(1074), + [sym_atom] = STATE(2234), + [anon_sym__] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3536), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1808), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(3538), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_Prop] = ACTIONS(1802), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_record] = ACTIONS(1818), + [anon_sym_] = ACTIONS(3540), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + }, + [1087] = { + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2275), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1088] = { - [sym_literal] = STATE(2275), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2285), - [aux_sym__open_args1_repeat1] = STATE(2286), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2287), - [sym__atom_curly] = STATE(2285), - [sym_record_assignments] = STATE(2275), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3531), - [anon_sym_unquote] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(3533), - [anon_sym_Set] = ACTIONS(3531), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3531), - [anon_sym_quoteTerm] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3531), - [sym__const_ellipsis] = ACTIONS(3531), - [anon_sym_record] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_] = ACTIONS(3541), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(3549), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(3531), - [anon_sym_3] = ACTIONS(3551), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2276), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1089] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1090] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), + [sym_literal] = STATE(1074), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1092), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), [sym__atom_curly] = STATE(1089), - [sym_literal] = STATE(1072), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), [sym__atom_no_curly] = STATE(1089), - [sym_record_assignments] = STATE(1072), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1835), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_] = ACTIONS(3553), - [anon_sym__] = ACTIONS(1823), - [anon_sym_unquote] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3555), - [anon_sym_LPAREN] = ACTIONS(3557), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(3559), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [sym_record_assignments] = STATE(1074), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_] = ACTIONS(3548), + [anon_sym__] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3552), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3554), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), }, [1091] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), - }, - [1092] = { - [anon_sym_PIPE] = ACTIONS(455), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3529), + [sym__const_right_arrow] = ACTIONS(3556), + [anon_sym_PIPE] = ACTIONS(479), + }, + [1092] = { + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1093] = { - [anon_sym_COLON] = ACTIONS(3561), - [sym__newline] = ACTIONS(3561), - [anon_sym_where] = ACTIONS(3561), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), + [sym__const_right_arrow] = ACTIONS(3556), }, [1094] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_3] = ACTIONS(809), + [sym_literal] = STATE(2282), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2292), + [sym__atom_no_curly] = STATE(2292), + [aux_sym__open_args1_repeat1] = STATE(2293), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2294), + [sym_record_assignments] = STATE(2282), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(3558), + [anon_sym_quoteTerm] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(3560), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(3558), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3566), + [sym_qualified_name] = ACTIONS(3558), + [anon_sym_quote] = ACTIONS(3558), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(3568), + [sym__const_ellipsis] = ACTIONS(3558), + [anon_sym_3] = ACTIONS(3570), + [anon_sym_] = ACTIONS(3572), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3558), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3576), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(3578), + [anon_sym_Set] = ACTIONS(3558), }, [1095] = { + [anon_sym_COLON] = ACTIONS(3580), + [sym__newline] = ACTIONS(3580), + [anon_sym_where] = ACTIONS(3580), + [anon_sym_in] = ACTIONS(3580), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3563), + [anon_sym_module] = ACTIONS(3580), }, [1096] = { - [sym_primitive] = STATE(2293), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2293), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2293), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2294), - [sym_field] = STATE(2293), - [sym_abstract] = STATE(2293), - [sym_private] = STATE(2293), - [sym_function_clause] = STATE(2293), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2293), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2293), - [sym_data] = STATE(2293), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2293), - [sym_macro] = STATE(2293), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2293), - [sym_record_signature_only] = STATE(2293), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2293), - [sym_syntax] = STATE(2293), - [sym_record] = STATE(2293), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2293), - [sym_generalize] = STATE(2293), - [sym_mutual] = STATE(2293), - [sym_postulate] = STATE(2293), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [1097] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3565), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(2295), + [aux_sym__open_args1_repeat1] = STATE(2295), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_PIPE] = ACTIONS(419), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [1098] = { - [sym_primitive] = STATE(2296), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2296), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2296), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(2296), - [sym_abstract] = STATE(2296), - [sym_private] = STATE(2296), - [sym_function_clause] = STATE(2296), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2296), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2296), - [sym_data] = STATE(2296), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2296), - [sym_macro] = STATE(2296), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2296), - [sym_record_signature_only] = STATE(2296), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2296), - [sym_syntax] = STATE(2296), - [sym_record] = STATE(2296), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2296), - [sym_generalize] = STATE(2296), - [sym_mutual] = STATE(2296), - [sym_postulate] = STATE(2296), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_4] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(2844), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2844), + [anon_sym_PIPE_RPAREN] = ACTIONS(2844), + [anon_sym_2] = ACTIONS(2844), + [anon_sym_RPAREN] = ACTIONS(2844), + [anon_sym_where] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(3584), + [sym__const_right_arrow] = ACTIONS(2844), }, [1099] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(3586), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1029), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3588), }, [1100] = { - [sym_do] = STATE(2297), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2297), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2297), - [sym_lambda] = STATE(2297), - [sym__application] = STATE(2297), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [anon_sym_COLON] = ACTIONS(3590), + [anon_sym_2] = ACTIONS(3588), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1101] = { - [sym_do] = STATE(2298), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2298), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2298), - [sym_lambda] = STATE(2298), - [sym__application] = STATE(2298), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1102] = { - [sym_anonymous_name] = STATE(1105), - [sym__binding_name] = STATE(2303), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3567), - [anon_sym_] = ACTIONS(3569), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3571), - [anon_sym_LBRACE] = ACTIONS(3573), - [sym_name] = ACTIONS(1877), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2300), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3592), }, [1103] = { - [sym_do] = STATE(2305), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2305), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2305), - [sym_lambda] = STATE(2305), - [sym_open] = STATE(2304), - [sym__application] = STATE(2305), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3594), }, [1104] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2306), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(2306), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(2306), - [sym__expr2] = STATE(2306), - [sym_lambda] = STATE(2306), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1105] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1139), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [sym_anonymous_name] = STATE(2308), + [sym_typed_binding] = STATE(2309), + [sym_untyped_binding] = STATE(2309), + [sym__lambda_binding] = STATE(2310), + [sym__binding_name] = STATE(2311), + [anon_sym__] = ACTIONS(3596), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3598), + [anon_sym_] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3606), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(3608), + [sym_name] = ACTIONS(3610), }, [1106] = { - [sym_typed_binding] = STATE(1106), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1106), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1108), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(3575), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1877), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2312), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(3592), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1107] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3577), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1147), + [sym__atom_curly] = STATE(2323), + [sym__atom_no_curly] = STATE(2323), + [sym_literal] = STATE(2313), + [aux_sym__open_args1_repeat1] = STATE(2324), + [sym_record_assignments] = STATE(2313), + [sym_atom] = STATE(2324), + [sym__atoms1] = STATE(2325), + [anon_sym__] = ACTIONS(3612), + [anon_sym_quoteTerm] = ACTIONS(3612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3618), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_qualified_name] = ACTIONS(3612), + [anon_sym_quote] = ACTIONS(3612), + [anon_sym_3] = ACTIONS(3622), + [anon_sym_Prop] = ACTIONS(3612), + [sym__const_ellipsis] = ACTIONS(3612), + [anon_sym_record] = ACTIONS(3624), + [anon_sym_] = ACTIONS(3626), + [anon_sym_unquote] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [aux_sym_string_token1] = ACTIONS(3632), + [anon_sym_Set] = ACTIONS(3612), }, [1108] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1153), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym_primitive] = STATE(2327), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2327), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2327), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2327), + [sym_abstract] = STATE(2327), + [sym_private] = STATE(2327), + [sym_function_clause] = STATE(2327), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2327), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2328), + [sym_infix] = STATE(2327), + [sym_data] = STATE(2327), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2327), + [sym_macro] = STATE(2327), + [sym_test] = STATE(2327), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2327), + [sym_record_signature_only] = STATE(2327), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2327), + [sym_syntax] = STATE(2327), + [sym_record] = STATE(2327), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2327), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2327), + [sym_mutual] = STATE(2327), + [sym_postulate] = STATE(2327), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(3634), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1109] = { - [anon_sym_RPAREN] = ACTIONS(3563), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2330), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3636), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1110] = { - [anon_sym_in] = ACTIONS(3579), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2331), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1111] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2311), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3581), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2332), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1112] = { - [anon_sym_LBRACE] = ACTIONS(3583), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2333), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [1113] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3563), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_literal] = STATE(1101), + [sym_record_assignments] = STATE(1101), + [sym_atom] = STATE(2299), + [anon_sym__] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3642), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_Prop] = ACTIONS(1881), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_record] = ACTIONS(1897), + [anon_sym_] = ACTIONS(3644), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3648), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), }, [1114] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1095), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1859), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2340), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1115] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1109), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1859), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2341), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1116] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1113), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1117] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [sym__newline] = ACTIONS(3652), + [anon_sym_in] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1118] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1121), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(1101), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1120), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_record_assignments] = STATE(1101), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_] = ACTIONS(3654), + [anon_sym__] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3660), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), }, [1119] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3563), + [sym__const_right_arrow] = ACTIONS(3662), + [anon_sym_PIPE] = ACTIONS(479), }, [1120] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_3] = ACTIONS(1397), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [1121] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3585), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3662), }, [1122] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(121), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_literal] = STATE(2347), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2357), + [sym__atom_no_curly] = STATE(2357), + [aux_sym__open_args1_repeat1] = STATE(2358), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2359), + [sym_record_assignments] = STATE(2347), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(3664), + [anon_sym_quoteTerm] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(3666), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3672), + [sym_qualified_name] = ACTIONS(3664), + [anon_sym_quote] = ACTIONS(3664), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(3674), + [sym__const_ellipsis] = ACTIONS(3664), + [anon_sym_3] = ACTIONS(3676), + [anon_sym_] = ACTIONS(3678), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(3684), + [anon_sym_Set] = ACTIONS(3664), }, [1123] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2315), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3587), + [sym__expr2] = STATE(2360), + [sym_do] = STATE(2360), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2360), + [sym_lambda] = STATE(2360), + [sym__application] = STATE(2360), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1124] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__expr2] = STATE(2361), + [sym_do] = STATE(2361), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2361), + [sym_lambda] = STATE(2361), + [sym__application] = STATE(2361), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1125] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2316), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3587), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(2362), + [sym_do] = STATE(2362), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2362), + [sym_lambda] = STATE(2362), + [sym__application] = STATE(2362), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1126] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2318), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3589), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__expr2] = STATE(2363), + [sym_do] = STATE(2363), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2363), + [sym_lambda] = STATE(2363), + [sym__application] = STATE(2363), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1127] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2319), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym_name] = ACTIONS(2862), }, [1128] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2314), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [anon_sym_COLON] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1129] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2320), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(3688), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1130] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2322), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3588), + [sym_pragma] = ACTIONS(3), }, [1131] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2323), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(2367), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [1132] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(2368), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [1133] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2324), - [aux_sym__open_args1_repeat1] = STATE(2324), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1455), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [aux_sym_syntax_repeat2] = STATE(1133), + [anon_sym_COLON] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3694), }, [1134] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(3595), + [sym__dedent] = ACTIONS(3697), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1457), + [sym_name] = ACTIONS(3699), }, [1135] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(3701), + [anon_sym_in] = ACTIONS(3701), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1136] = { + [aux_sym_syntax_repeat2] = STATE(320), + [sym_simple_type_sig] = STATE(321), + [aux_sym__simple_type_sig_block_repeat1] = STATE(1136), + [sym__dedent] = ACTIONS(3697), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3563), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(3703), }, [1137] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_4] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [anon_sym_pattern] = ACTIONS(1507), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(1507), + [anon_sym_abstract] = ACTIONS(1507), + [anon_sym_LPAREN_PIPE] = ACTIONS(1509), + [sym_qualified_name] = ACTIONS(1507), + [anon_sym_quote] = ACTIONS(1507), + [anon_sym_tactic] = ACTIONS(1507), + [anon_sym_Prop] = ACTIONS(1507), + [sym__const_ellipsis] = ACTIONS(1507), + [anon_sym_record] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_3] = ACTIONS(1507), + [anon_sym_] = ACTIONS(1507), + [anon_sym_syntax] = ACTIONS(1507), + [anon_sym_instance] = ACTIONS(1507), + [anon_sym_infix] = ACTIONS(1507), + [sym_test2] = ACTIONS(1507), + [anon_sym_macro] = ACTIONS(1507), + [anon_sym_field] = ACTIONS(1507), + [anon_sym_private] = ACTIONS(1507), + [anon_sym_generalize] = ACTIONS(1507), + [anon_sym__] = ACTIONS(1507), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1509), + [sym__const_lambda] = ACTIONS(1507), + [anon_sym_quoteGoal] = ACTIONS(1507), + [aux_sym_integer_token1] = ACTIONS(1507), + [anon_sym_open] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_quoteTerm] = ACTIONS(1507), + [anon_sym_codata] = ACTIONS(1507), + [anon_sym_infixr] = ACTIONS(1507), + [sym__dedent] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(1507), + [anon_sym_postulate] = ACTIONS(1507), + [anon_sym_mutual] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1507), + [anon_sym_unquote] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [sym__const_forall] = ACTIONS(1507), + [aux_sym_string_token1] = ACTIONS(1509), + [anon_sym_import] = ACTIONS(1507), + [anon_sym_data] = ACTIONS(1507), + [anon_sym_Set] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), }, [1138] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1095), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1859), + [sym__newline] = ACTIONS(3706), + [anon_sym_in] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1139] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1109), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1859), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(1665), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(1668), + [anon_sym_abstract] = ACTIONS(1671), + [anon_sym_LPAREN_PIPE] = ACTIONS(1674), + [sym_qualified_name] = ACTIONS(1677), + [anon_sym_quote] = ACTIONS(1677), + [anon_sym_tactic] = ACTIONS(1680), + [anon_sym_Prop] = ACTIONS(1677), + [sym__const_ellipsis] = ACTIONS(1677), + [anon_sym_record] = ACTIONS(1683), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_3] = ACTIONS(1689), + [anon_sym_] = ACTIONS(1692), + [anon_sym_syntax] = ACTIONS(1695), + [anon_sym_instance] = ACTIONS(1698), + [anon_sym_infix] = ACTIONS(1701), + [sym_test2] = ACTIONS(1704), + [anon_sym_macro] = ACTIONS(1707), + [anon_sym_field] = ACTIONS(1710), + [anon_sym_private] = ACTIONS(1713), + [anon_sym_generalize] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1719), + [sym__const_lambda] = ACTIONS(1722), + [anon_sym_quoteGoal] = ACTIONS(1725), + [aux_sym_integer_token1] = ACTIONS(1728), + [anon_sym_open] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1737), + [anon_sym_QMARK] = ACTIONS(1677), + [anon_sym_quoteTerm] = ACTIONS(1677), + [anon_sym_codata] = ACTIONS(1740), + [anon_sym_infixr] = ACTIONS(1701), + [sym__dedent] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(1701), + [anon_sym_postulate] = ACTIONS(1743), + [anon_sym_mutual] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_unquote] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1752), + [sym__const_forall] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1758), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_data] = ACTIONS(1764), + [anon_sym_Set] = ACTIONS(1677), + [anon_sym_module] = ACTIONS(1767), }, [1140] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1113), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), }, [1141] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1121), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3708), }, [1142] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2329), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1143] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(3597), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3710), [sym_pragma] = ACTIONS(3), }, + [1143] = { + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1185), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + }, [1144] = { - [sym_primitive] = STATE(2332), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2332), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2332), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(2332), - [sym_abstract] = STATE(2332), - [sym_private] = STATE(2332), - [sym_function_clause] = STATE(2332), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2332), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2332), - [sym_data] = STATE(2332), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2332), - [sym_macro] = STATE(2332), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2332), - [sym_record_signature_only] = STATE(2332), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2332), - [sym_syntax] = STATE(2332), - [sym_record] = STATE(2332), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2332), - [sym_generalize] = STATE(2332), - [sym_mutual] = STATE(2332), - [sym_postulate] = STATE(2332), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__expr2] = STATE(2371), + [sym_do] = STATE(2371), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2371), + [sym_lambda] = STATE(2371), + [sym__application] = STATE(2371), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [1145] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__expr2] = STATE(2372), + [sym_do] = STATE(2372), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2372), + [sym_lambda] = STATE(2372), + [sym__application] = STATE(2372), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [1146] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3597), + [sym_anonymous_name] = STATE(1149), + [sym__binding_name] = STATE(2377), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3712), + [anon_sym_] = ACTIONS(3714), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [sym_name] = ACTIONS(1953), }, [1147] = { - [anon_sym_COLON] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(2700), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_2] = ACTIONS(2700), - [anon_sym_where] = ACTIONS(2700), - [anon_sym_PIPE_RPAREN] = ACTIONS(2700), - [anon_sym_4] = ACTIONS(2700), - [sym__const_right_arrow] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(3601), + [sym_open] = STATE(2379), + [sym__expr2] = STATE(2378), + [sym_do] = STATE(2378), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(2378), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2378), + [sym_lambda] = STATE(2378), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [1148] = { - [anon_sym_COLON] = ACTIONS(3603), - [sym_comment] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(2380), + [sym_do] = STATE(2380), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(2380), + [sym_let] = STATE(2380), + [sym_lambda] = STATE(2380), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3605), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [1149] = { - [anon_sym_COLON] = ACTIONS(3607), - [anon_sym_2] = ACTIONS(3605), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1295), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), }, [1150] = { - [sym_do] = STATE(2337), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2337), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2337), - [sym_lambda] = STATE(2337), - [sym__application] = STATE(2337), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1150), + [sym_untyped_binding] = STATE(1150), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1152), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(3720), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(1953), }, [1151] = { - [sym_do] = STATE(2338), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2338), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2338), - [sym_lambda] = STATE(2338), - [sym__application] = STATE(2338), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3722), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1303), }, [1152] = { - [sym_do] = STATE(2339), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2339), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2339), - [sym_lambda] = STATE(2339), - [sym__application] = STATE(2339), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1309), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), }, [1153] = { - [sym_do] = STATE(2340), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2340), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2340), - [sym_lambda] = STATE(2340), - [sym__application] = STATE(2340), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_RPAREN] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1154] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_4] = ACTIONS(2718), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1155] = { - [anon_sym_RPAREN] = ACTIONS(3609), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2384), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3724), }, [1156] = { - [anon_sym_COLON] = ACTIONS(3611), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1157] = { - [anon_sym_SEMI] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3613), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2385), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3724), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1158] = { - [anon_sym_COLON] = ACTIONS(3615), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3605), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2386), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1159] = { - [sym_lambda_clause] = STATE(1813), - [sym_lambda_clause_absurd] = STATE(1813), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(1814), - [sym__atom_no_curly] = STATE(1808), - [aux_sym__open_args1_repeat1] = STATE(1809), - [sym_catchall_pragma] = STATE(1810), - [aux_sym__lambda_where_block_repeat1] = STATE(2345), - [sym_do] = STATE(1814), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym__lambda_clause] = STATE(1813), - [sym_record_assignments] = STATE(1797), - [sym__application] = STATE(1814), - [sym__expr2] = STATE(1814), - [sym_lambda] = STATE(1814), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2146), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(17), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_quote] = ACTIONS(2816), - [anon_sym_] = ACTIONS(2822), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2387), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1160] = { - [anon_sym_COLON] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_RPAREN] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2840), - [anon_sym_2] = ACTIONS(2840), - [anon_sym_where] = ACTIONS(2840), - [anon_sym_PIPE_RPAREN] = ACTIONS(2840), - [anon_sym_4] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(3617), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2389), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3726), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1161] = { - [sym_do] = STATE(2346), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2346), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2346), - [sym_lambda] = STATE(2346), - [sym__application] = STATE(2346), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2390), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3728), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1162] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2383), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1163] = { - [anon_sym_in] = ACTIONS(3619), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2392), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3730), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1164] = { - [sym_primitive] = STATE(2348), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2348), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2348), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2349), - [sym_field] = STATE(2348), - [sym_abstract] = STATE(2348), - [sym_private] = STATE(2348), - [sym_function_clause] = STATE(2348), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2348), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2348), - [sym_data] = STATE(2348), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2348), - [sym_macro] = STATE(2348), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2348), - [sym_record_signature_only] = STATE(2348), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2348), - [sym_syntax] = STATE(2348), - [sym_record] = STATE(2348), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2348), - [sym_generalize] = STATE(2348), - [sym_mutual] = STATE(2348), - [sym_postulate] = STATE(2348), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1165] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3621), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2393), + [aux_sym__open_args1_repeat1] = STATE(2393), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_RBRACE_RBRACE] = ACTIONS(735), + [anon_sym_DOT] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), + }, + [1166] = { + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_RBRACE_RBRACE] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3732), }, - [1166] = { - [sym_primitive] = STATE(2351), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2351), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2351), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(2351), - [sym_abstract] = STATE(2351), - [sym_private] = STATE(2351), - [sym_function_clause] = STATE(2351), - [sym_lhs_decl] = STATE(155), + [1167] = { + [sym_primitive] = STATE(2395), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2395), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2395), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2395), + [sym_abstract] = STATE(2395), + [sym_private] = STATE(2395), + [sym_function_clause] = STATE(2395), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2351), + [sym_open] = STATE(2395), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2396), + [sym_infix] = STATE(2395), + [sym_data] = STATE(2395), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2351), - [sym_data] = STATE(2351), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2351), - [sym_macro] = STATE(2351), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2351), - [sym_record_signature_only] = STATE(2351), - [sym_atom] = STATE(158), + [sym_instance] = STATE(2395), + [sym_macro] = STATE(2395), + [sym_test] = STATE(2395), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2395), + [sym_record_signature_only] = STATE(2395), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2395), + [sym_syntax] = STATE(2395), + [sym_record] = STATE(2395), [sym_do] = STATE(43), - [sym_pattern] = STATE(2351), - [sym_syntax] = STATE(2351), - [sym_record] = STATE(2351), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2351), - [sym_generalize] = STATE(2351), - [sym_mutual] = STATE(2351), - [sym_postulate] = STATE(2351), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1167] = { - [sym_typed_binding] = STATE(1167), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1167), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1108), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_] = ACTIONS(1867), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(3575), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1877), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2395), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2395), + [sym_mutual] = STATE(2395), + [sym_postulate] = STATE(2395), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1168] = { - [anon_sym_COLON] = ACTIONS(1147), - [anon_sym_RPAREN] = ACTIONS(1147), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3734), [sym_comment] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3623), [sym_pragma] = ACTIONS(3), }, [1169] = { - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1155), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [anon_sym_as] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [sym_primitive] = STATE(2398), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2398), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2398), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2398), + [sym_abstract] = STATE(2398), + [sym_private] = STATE(2398), + [sym_function_clause] = STATE(2398), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2398), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(2398), + [sym_data] = STATE(2398), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2398), + [sym_macro] = STATE(2398), + [sym_test] = STATE(2398), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2398), + [sym_record_signature_only] = STATE(2398), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2398), + [sym_syntax] = STATE(2398), + [sym_record] = STATE(2398), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2398), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2398), + [sym_mutual] = STATE(2398), + [sym_postulate] = STATE(2398), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1170] = { - [sym__module_name] = STATE(2353), - [sym_qualified_name] = ACTIONS(1957), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2400), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3736), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1171] = { - [sym_literal] = STATE(1375), - [sym_atom] = STATE(2358), - [sym__atom_curly] = STATE(1388), - [sym_import_directive] = STATE(2356), - [aux_sym_module_macro_repeat1] = STATE(2356), - [sym__open_args1] = STATE(2357), - [sym__atom_no_curly] = STATE(1388), - [sym_record_assignments] = STATE(1375), - [aux_sym__open_args1_repeat1] = STATE(2358), - [sym__open_as] = STATE(2359), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(1161), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(3625), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_renaming] = ACTIONS(2276), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2278), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_3] = ACTIONS(2290), - [anon_sym_public] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1172] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(1959), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [anon_sym_PIPE_RPAREN] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1173] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2314), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1961), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(3708), + [sym_pragma] = ACTIONS(3), }, [1174] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2360), - [aux_sym__open_args1_repeat1] = STATE(2360), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1455), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(1961), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), - }, - [1175] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(1457), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3708), + }, + [1175] = { + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1141), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1935), }, [1176] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1153), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(1935), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1177] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2365), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1173), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1178] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3631), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(2001), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3631), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1997), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(2003), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1179] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1181), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1180] = { - [anon_sym_COLON] = ACTIONS(3635), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), }, [1181] = { - [anon_sym_COLON] = ACTIONS(3637), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3740), [sym_pragma] = ACTIONS(3), }, [1182] = { - [anon_sym_COLON] = ACTIONS(3639), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [1183] = { - [anon_sym_COLON] = ACTIONS(3641), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_PIPE_RPAREN] = ACTIONS(2159), }, [1184] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__with_expr] = STATE(473), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym__do_stmt] = STATE(476), - [sym__do_stmt_where] = STATE(476), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [aux_sym_do_repeat1] = STATE(1365), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym__dedent] = ACTIONS(3643), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1141), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1935), }, [1185] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_4] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1153), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(1935), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1186] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3645), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1173), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1187] = { - [sym__field_assignments1] = STATE(2374), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3645), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1181), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1188] = { - [anon_sym_COLON] = ACTIONS(809), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2406), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_2] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [1189] = { - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(714), + [sym__do_stmt_where] = STATE(729), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__do_stmt] = STATE(729), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [aux_sym_do_repeat1] = STATE(1744), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(734), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [sym_let] = STATE(43), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [sym__dedent] = ACTIONS(3742), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3649), }, [1190] = { - [sym_primitive] = STATE(2376), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2376), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2376), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2377), - [sym_field] = STATE(2376), - [sym_abstract] = STATE(2376), - [sym_private] = STATE(2376), - [sym_function_clause] = STATE(2376), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2376), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2376), - [sym_data] = STATE(2376), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2376), - [sym_macro] = STATE(2376), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2376), - [sym_record_signature_only] = STATE(2376), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2376), - [sym_syntax] = STATE(2376), - [sym_record] = STATE(2376), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2376), - [sym_generalize] = STATE(2376), - [sym_mutual] = STATE(2376), - [sym_postulate] = STATE(2376), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1191] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3651), + [anon_sym_COLON] = ACTIONS(3744), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3746), }, [1192] = { - [sym_primitive] = STATE(2379), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2379), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2379), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(2379), - [sym_abstract] = STATE(2379), - [sym_private] = STATE(2379), - [sym_function_clause] = STATE(2379), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2379), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2379), - [sym_data] = STATE(2379), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2379), - [sym_macro] = STATE(2379), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2379), - [sym_record_signature_only] = STATE(2379), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2379), - [sym_syntax] = STATE(2379), - [sym_record] = STATE(2379), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2379), - [sym_generalize] = STATE(2379), - [sym_mutual] = STATE(2379), - [sym_postulate] = STATE(2379), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1193] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(3748), + [anon_sym_2] = ACTIONS(3746), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_2] = ACTIONS(1029), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + }, + [1193] = { + [sym__expr2] = STATE(2412), + [sym_do] = STATE(2412), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2412), + [sym_lambda] = STATE(2412), + [sym__application] = STATE(2412), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1194] = { - [sym_do] = STATE(2380), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2380), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2380), - [sym_lambda] = STATE(2380), - [sym__application] = STATE(2380), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym__expr2] = STATE(2413), + [sym_do] = STATE(2413), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2413), + [sym_lambda] = STATE(2413), + [sym__application] = STATE(2413), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1195] = { - [sym_do] = STATE(2381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2381), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2381), - [sym_lambda] = STATE(2381), - [sym__application] = STATE(2381), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__expr2] = STATE(2414), + [sym_do] = STATE(2414), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2414), + [sym_lambda] = STATE(2414), + [sym__application] = STATE(2414), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1196] = { - [sym_anonymous_name] = STATE(1199), - [sym__binding_name] = STATE(2386), - [anon_sym__] = ACTIONS(1977), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3653), - [anon_sym_] = ACTIONS(3655), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3659), - [sym_name] = ACTIONS(1991), + [sym__expr2] = STATE(2415), + [sym_do] = STATE(2415), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2415), + [sym_lambda] = STATE(2415), + [sym__application] = STATE(2415), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1197] = { - [sym_do] = STATE(2388), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2388), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_open] = STATE(2387), - [sym__application] = STATE(2388), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_PIPE_RPAREN] = ACTIONS(2860), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [1198] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2389), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(2389), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(2389), - [sym__expr2] = STATE(2389), - [sym_lambda] = STATE(2389), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(3750), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), }, [1199] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), + [anon_sym_RPAREN] = ACTIONS(3752), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_2] = ACTIONS(1139), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), }, [1200] = { - [sym_typed_binding] = STATE(1200), - [sym_anonymous_name] = STATE(1199), - [sym_untyped_binding] = STATE(1200), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1202), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1977), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1979), - [anon_sym_] = ACTIONS(1981), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_2] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3754), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1991), }, [1201] = { - [anon_sym_COLON] = ACTIONS(1147), - [anon_sym_2] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(3756), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3746), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3663), }, [1202] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_2] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [sym_catchall_pragma] = STATE(1887), + [sym_lambda_clause] = STATE(1892), + [sym_literal] = STATE(1876), + [aux_sym__lambda_where_block_repeat1] = STATE(2420), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [aux_sym__open_args1_repeat1] = STATE(1890), + [sym__expr2] = STATE(1893), + [sym_do] = STATE(1893), + [sym_atom] = STATE(1891), + [sym_lambda_clause_absurd] = STATE(1892), + [sym__lambda_clause] = STATE(1892), + [sym_record_assignments] = STATE(1876), + [sym__application] = STATE(1893), + [sym_let] = STATE(1893), + [sym_lambda] = STATE(1893), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [sym__const_right_arrow] = ACTIONS(2964), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_] = ACTIONS(2968), + [anon_sym_3] = ACTIONS(2970), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), }, [1203] = { - [anon_sym_RPAREN] = ACTIONS(3649), + [anon_sym_COLON] = ACTIONS(2984), + [anon_sym_4] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2984), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2984), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2984), + [anon_sym_PIPE_RPAREN] = ACTIONS(2984), + [anon_sym_2] = ACTIONS(2984), + [anon_sym_where] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(3758), }, [1204] = { - [anon_sym_in] = ACTIONS(3665), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(2421), + [sym_do] = STATE(2421), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2421), + [sym_lambda] = STATE(2421), + [sym__application] = STATE(2421), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [1205] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2394), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3667), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1206] = { - [anon_sym_LBRACE] = ACTIONS(3669), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2383), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1207] = { + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2422), + [aux_sym__open_args1_repeat1] = STATE(2422), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(735), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), + }, + [1208] = { + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_RPAREN] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3649), [sym_pragma] = ACTIONS(3), - }, - [1208] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1189), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(3760), }, [1209] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1203), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1973), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_primitive] = STATE(2424), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2424), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2424), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2424), + [sym_abstract] = STATE(2424), + [sym_private] = STATE(2424), + [sym_function_clause] = STATE(2424), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2424), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2425), + [sym_infix] = STATE(2424), + [sym_data] = STATE(2424), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2424), + [sym_macro] = STATE(2424), + [sym_test] = STATE(2424), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2424), + [sym_record_signature_only] = STATE(2424), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2424), + [sym_syntax] = STATE(2424), + [sym_record] = STATE(2424), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2424), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2424), + [sym_mutual] = STATE(2424), + [sym_postulate] = STATE(2424), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1210] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1207), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1211] = { - [sym__atom_no_curly] = STATE(378), - [sym_literal] = STATE(362), - [sym_record_assignments] = STATE(362), - [sym__atom_curly] = STATE(378), - [sym_atom] = STATE(1188), - [anon_sym__] = ACTIONS(561), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2035), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(2037), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(2033), - [anon_sym_DOT] = ACTIONS(2005), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_3] = ACTIONS(591), - [aux_sym_string_token1] = ACTIONS(587), - [anon_sym_Prop] = ACTIONS(561), + [sym_primitive] = STATE(2427), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2427), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2427), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2427), + [sym_abstract] = STATE(2427), + [sym_private] = STATE(2427), + [sym_function_clause] = STATE(2427), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2427), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(2427), + [sym_data] = STATE(2427), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2427), + [sym_macro] = STATE(2427), + [sym_test] = STATE(2427), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2427), + [sym_record_signature_only] = STATE(2427), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2427), + [sym_syntax] = STATE(2427), + [sym_record] = STATE(2427), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2427), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2427), + [sym_mutual] = STATE(2427), + [sym_postulate] = STATE(2427), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1212] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1215), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [1213] = { [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3764), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3649), }, - [1214] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_2] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [1213] = { + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [anon_sym_as] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, - [1215] = { + [1214] = { + [sym__module_name] = STATE(2429), + [sym_qualified_name] = ACTIONS(2031), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3671), [sym_pragma] = ACTIONS(3), }, + [1215] = { + [sym_literal] = STATE(1537), + [sym__open_args1] = STATE(2432), + [sym_import_directive] = STATE(2434), + [sym_atom] = STATE(2433), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_record_assignments] = STATE(1537), + [aux_sym__open_args1_repeat1] = STATE(2433), + [aux_sym_module_macro_repeat1] = STATE(2434), + [sym__open_as] = STATE(2435), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(1151), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2552), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2568), + }, [1216] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1216), + [sym_untyped_binding] = STATE(1216), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1152), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(3720), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(1953), }, [1217] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2398), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3673), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3770), + [sym_pragma] = ACTIONS(3), }, [1218] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1997), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2003), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1219] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2399), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3673), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [1220] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2401), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3675), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3772), }, [1221] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2402), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3677), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2440), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1222] = { - [sym__atom_no_curly] = STATE(1226), - [sym_literal] = STATE(1216), - [sym_record_assignments] = STATE(1216), - [sym__atom_curly] = STATE(1226), - [sym_atom] = STATE(2397), - [anon_sym__] = ACTIONS(2011), - [anon_sym_unquote] = ACTIONS(2011), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2015), - [anon_sym_Set] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2017), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2011), - [anon_sym_quoteTerm] = ACTIONS(2011), - [anon_sym_quote] = ACTIONS(2011), - [sym__const_ellipsis] = ACTIONS(2011), - [anon_sym_record] = ACTIONS(2019), - [anon_sym_QMARK] = ACTIONS(2011), - [anon_sym_] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_LPAREN_PIPE] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_3] = ACTIONS(2029), - [aux_sym_string_token1] = ACTIONS(2031), - [anon_sym_Prop] = ACTIONS(2011), + [anon_sym_COLON] = ACTIONS(3776), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1223] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2403), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1224] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2405), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3679), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3780), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1225] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2406), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1226] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_PIPE_RPAREN] = ACTIONS(995), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1227] = { - [sym__atom_no_curly] = STATE(1226), - [sym_literal] = STATE(1216), - [sym_record_assignments] = STATE(1216), - [sym__atom_curly] = STATE(1226), - [sym_atom] = STATE(2407), - [aux_sym__open_args1_repeat1] = STATE(2407), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(2011), - [anon_sym_unquote] = ACTIONS(2011), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2015), - [anon_sym_Set] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2017), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(2011), - [anon_sym_quoteTerm] = ACTIONS(2011), - [anon_sym_quote] = ACTIONS(2011), - [sym__const_ellipsis] = ACTIONS(2011), - [anon_sym_record] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(2011), - [anon_sym_] = ACTIONS(2021), - [anon_sym_DOT] = ACTIONS(2023), - [anon_sym_LPAREN_PIPE] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_3] = ACTIONS(2029), - [aux_sym_string_token1] = ACTIONS(2031), - [anon_sym_Prop] = ACTIONS(2011), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3784), }, [1228] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_2] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3784), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1229] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_PIPE_RPAREN] = ACTIONS(3784), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1230] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3649), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3784), }, [1231] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1189), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1973), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2447), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3786), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1232] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1203), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(1973), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1233] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1207), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(3784), + [sym_pragma] = ACTIONS(3), }, [1234] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1215), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_PIPE_RPAREN] = ACTIONS(1427), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1235] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2412), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(3790), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [1236] = { - [anon_sym_COLON] = ACTIONS(3637), + [sym__atom_curly] = STATE(385), + [sym__atom_no_curly] = STATE(385), + [sym_literal] = STATE(375), + [sym_record_assignments] = STATE(375), + [sym_atom] = STATE(1236), + [aux_sym__open_args1_repeat1] = STATE(1236), + [anon_sym__] = ACTIONS(3792), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3795), + [anon_sym_quoteTerm] = ACTIONS(3792), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3798), + [anon_sym_QMARK] = ACTIONS(3792), + [anon_sym_LPAREN] = ACTIONS(3801), + [anon_sym_PIPE] = ACTIONS(1527), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(453), + [anon_sym_LPAREN_PIPE] = ACTIONS(3804), + [sym_qualified_name] = ACTIONS(3792), + [anon_sym_quote] = ACTIONS(3792), + [anon_sym_3] = ACTIONS(3807), + [anon_sym_Prop] = ACTIONS(3792), + [sym__const_ellipsis] = ACTIONS(3792), + [anon_sym_record] = ACTIONS(3810), + [anon_sym_] = ACTIONS(3813), + [anon_sym_DOT] = ACTIONS(3816), + [anon_sym_unquote] = ACTIONS(3792), + [anon_sym_LBRACE] = ACTIONS(3819), + [anon_sym_PIPE_RPAREN] = ACTIONS(2214), + [aux_sym_string_token1] = ACTIONS(3822), + [anon_sym_Set] = ACTIONS(3792), }, [1237] = { - [anon_sym_COLON] = ACTIONS(3641), - [anon_sym_RPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(445), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(455), + [sym__atom_no_curly] = STATE(455), + [aux_sym__open_args1_repeat1] = STATE(456), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(457), + [sym_record_assignments] = STATE(445), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(705), + [anon_sym_quoteTerm] = ACTIONS(705), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(707), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_LBRACE_LBRACE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(711), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(713), + [sym_qualified_name] = ACTIONS(705), + [anon_sym_quote] = ACTIONS(705), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(705), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(715), + [sym__const_ellipsis] = ACTIONS(705), + [anon_sym_3] = ACTIONS(717), + [anon_sym_] = ACTIONS(719), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(723), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(725), + [anon_sym_Set] = ACTIONS(705), }, [1238] = { - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_2] = ACTIONS(453), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(3825), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1239] = { - [anon_sym_COLON] = ACTIONS(3635), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(453), - [sym_pragma] = ACTIONS(3), - }, - [1240] = { - [sym_primitive] = STATE(2413), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2413), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2413), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2414), - [sym_field] = STATE(2413), - [sym_abstract] = STATE(2413), - [sym_private] = STATE(2413), - [sym_function_clause] = STATE(2413), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(2452), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2452), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2452), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2452), + [sym_abstract] = STATE(2452), + [sym_private] = STATE(2452), + [sym_function_clause] = STATE(2452), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2413), + [sym_open] = STATE(2452), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(2452), + [sym_data] = STATE(2452), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2413), - [sym_data] = STATE(2413), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2413), - [sym_macro] = STATE(2413), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2413), - [sym_record_signature_only] = STATE(2413), - [sym_atom] = STATE(158), + [sym_instance] = STATE(2452), + [sym_macro] = STATE(2452), + [sym_test] = STATE(2452), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2452), + [sym_record_signature_only] = STATE(2452), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2452), + [sym_syntax] = STATE(2452), + [sym_record] = STATE(2452), [sym_do] = STATE(43), - [sym_pattern] = STATE(2413), - [sym_syntax] = STATE(2413), - [sym_record] = STATE(2413), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2413), - [sym_generalize] = STATE(2413), - [sym_mutual] = STATE(2413), - [sym_postulate] = STATE(2413), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2452), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2452), + [sym_mutual] = STATE(2452), + [sym_postulate] = STATE(2452), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [1240] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1241] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3683), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3825), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1242] = { - [sym_primitive] = STATE(2416), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2416), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2416), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(2416), - [sym_abstract] = STATE(2416), - [sym_private] = STATE(2416), - [sym_function_clause] = STATE(2416), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2416), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2416), - [sym_data] = STATE(2416), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2416), - [sym_macro] = STATE(2416), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2416), - [sym_record_signature_only] = STATE(2416), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2416), - [sym_syntax] = STATE(2416), - [sym_record] = STATE(2416), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2416), - [sym_generalize] = STATE(2416), - [sym_mutual] = STATE(2416), - [sym_postulate] = STATE(2416), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_PIPE_RPAREN] = ACTIONS(2534), }, [1243] = { - [sym_typed_binding] = STATE(1243), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1243), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1108), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(3575), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1141), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1877), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3829), + [sym_pragma] = ACTIONS(3), }, [1244] = { - [anon_sym_COLON] = ACTIONS(1147), + [sym__field_assignments1] = STATE(2456), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(3829), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(3685), [sym_pragma] = ACTIONS(3), }, [1245] = { - [anon_sym_in] = ACTIONS(3687), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1246] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(2047), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3833), }, [1247] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2314), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2049), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3835), + [sym_pragma] = ACTIONS(3), }, [1248] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2419), - [aux_sym__open_args1_repeat1] = STATE(2419), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2049), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), - }, - [1249] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(3689), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_2] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + }, + [1249] = { + [sym__expr2] = STATE(2459), + [sym_do] = STATE(2459), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2459), + [sym_lambda] = STATE(2459), + [sym__application] = STATE(2459), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [1250] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(2460), + [sym_do] = STATE(2460), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2460), + [sym_lambda] = STATE(2460), + [sym__application] = STATE(2460), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [1251] = { + [sym_anonymous_name] = STATE(1254), + [sym__binding_name] = STATE(2465), + [anon_sym__] = ACTIONS(2059), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3837), + [anon_sym_] = ACTIONS(3839), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_4] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3843), + [sym_name] = ACTIONS(2073), }, [1252] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2424), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_open] = STATE(2467), + [sym__expr2] = STATE(2466), + [sym_do] = STATE(2466), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(2466), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2466), + [sym_lambda] = STATE(2466), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [1253] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_4] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(2468), + [sym_do] = STATE(2468), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(2468), + [sym_let] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [1254] = { + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_2] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [1255] = { - [anon_sym_RPAREN] = ACTIONS(3691), + [sym_anonymous_name] = STATE(1254), + [sym_typed_binding] = STATE(1255), + [sym_untyped_binding] = STATE(1255), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1257), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(2059), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2061), + [anon_sym_] = ACTIONS(2063), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(3845), + [anon_sym_2] = ACTIONS(1299), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(2073), }, [1256] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2427), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_2] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3847), }, [1257] = { - [anon_sym_LBRACE] = ACTIONS(3695), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_2] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [1258] = { + [anon_sym_RPAREN] = ACTIONS(3833), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3691), [sym_pragma] = ACTIONS(3), }, [1259] = { + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3691), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1260] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_4] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2472), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3849), }, [1261] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3697), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1262] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3691), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2473), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3849), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1263] = { - [sym__atom_no_curly] = STATE(408), - [sym_literal] = STATE(398), - [sym_record_assignments] = STATE(398), - [sym__atom_curly] = STATE(408), - [sym_atom] = STATE(1263), - [aux_sym__open_args1_repeat1] = STATE(1263), - [anon_sym__] = ACTIONS(3699), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3702), - [anon_sym_unquote] = ACTIONS(3699), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3705), - [anon_sym_Set] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(3708), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3699), - [anon_sym_quoteTerm] = ACTIONS(3699), - [anon_sym_4] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(3699), - [sym__const_ellipsis] = ACTIONS(3699), - [anon_sym_record] = ACTIONS(3711), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(3699), - [anon_sym_] = ACTIONS(3714), - [anon_sym_DOT] = ACTIONS(3717), - [anon_sym_LPAREN_PIPE] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3723), - [anon_sym_3] = ACTIONS(3726), - [aux_sym_string_token1] = ACTIONS(3729), - [anon_sym_Prop] = ACTIONS(3699), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2474), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1264] = { - [sym_literal] = STATE(415), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(425), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(426), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(427), - [sym__atom_curly] = STATE(425), - [sym_record_assignments] = STATE(415), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(643), - [anon_sym_unquote] = ACTIONS(643), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(645), - [anon_sym_Set] = ACTIONS(643), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_LBRACE_LBRACE] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2475), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(643), - [anon_sym_quoteTerm] = ACTIONS(643), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(643), - [sym__const_ellipsis] = ACTIONS(643), - [anon_sym_record] = ACTIONS(651), - [anon_sym_QMARK] = ACTIONS(643), - [anon_sym_] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(655), - [anon_sym_LPAREN_PIPE] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(659), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(661), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(643), - [anon_sym_3] = ACTIONS(663), }, [1265] = { - [anon_sym_COLON] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_RPAREN] = ACTIONS(3078), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), - [anon_sym_2] = ACTIONS(3078), - [anon_sym_where] = ACTIONS(3078), - [anon_sym_PIPE_RPAREN] = ACTIONS(3078), - [anon_sym_4] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3732), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2477), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(3851), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1266] = { - [anon_sym_COLON] = ACTIONS(3734), - [anon_sym_SEMI] = ACTIONS(3734), - [anon_sym_RPAREN] = ACTIONS(3734), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3734), - [anon_sym_2] = ACTIONS(3734), - [anon_sym_where] = ACTIONS(3734), - [anon_sym_PIPE_RPAREN] = ACTIONS(3734), - [anon_sym_4] = ACTIONS(3734), - [anon_sym_RBRACE] = ACTIONS(3736), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2478), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3853), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1267] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_4] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym__atom_curly] = STATE(1269), + [sym__atom_no_curly] = STATE(1269), + [sym_literal] = STATE(1259), + [sym_record_assignments] = STATE(1259), + [sym_atom] = STATE(2471), + [anon_sym__] = ACTIONS(2075), + [anon_sym_quoteTerm] = ACTIONS(2075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2079), + [anon_sym_QMARK] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2081), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2083), + [sym_qualified_name] = ACTIONS(2075), + [anon_sym_quote] = ACTIONS(2075), + [anon_sym_3] = ACTIONS(2085), + [anon_sym_Prop] = ACTIONS(2075), + [sym__const_ellipsis] = ACTIONS(2075), + [anon_sym_record] = ACTIONS(2087), + [anon_sym_] = ACTIONS(2089), + [anon_sym_unquote] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_string_token1] = ACTIONS(2095), + [anon_sym_Set] = ACTIONS(2075), }, [1268] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3738), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2480), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3855), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1269] = { - [anon_sym_RPAREN] = ACTIONS(3738), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1270] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2432), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3740), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1269), + [sym__atom_no_curly] = STATE(1269), + [sym_literal] = STATE(1259), + [sym_record_assignments] = STATE(1259), + [sym_atom] = STATE(2481), + [aux_sym__open_args1_repeat1] = STATE(2481), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(2075), + [anon_sym_quoteTerm] = ACTIONS(2075), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2077), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2079), + [anon_sym_QMARK] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_2] = ACTIONS(419), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2083), + [sym_qualified_name] = ACTIONS(2075), + [anon_sym_quote] = ACTIONS(2075), + [anon_sym_3] = ACTIONS(2085), + [anon_sym_Prop] = ACTIONS(2075), + [sym__const_ellipsis] = ACTIONS(2075), + [anon_sym_record] = ACTIONS(2087), + [anon_sym_] = ACTIONS(2089), + [anon_sym_unquote] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2093), + [aux_sym_string_token1] = ACTIONS(2095), + [anon_sym_Set] = ACTIONS(2075), }, [1271] = { - [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_2] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3857), }, [1272] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3738), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(2483), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2483), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2483), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2483), + [sym_abstract] = STATE(2483), + [sym_private] = STATE(2483), + [sym_function_clause] = STATE(2483), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2483), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2484), + [sym_infix] = STATE(2483), + [sym_data] = STATE(2483), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2483), + [sym_macro] = STATE(2483), + [sym_test] = STATE(2483), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2483), + [sym_record_signature_only] = STATE(2483), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2483), + [sym_syntax] = STATE(2483), + [sym_record] = STATE(2483), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2483), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2483), + [sym_mutual] = STATE(2483), + [sym_postulate] = STATE(2483), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1273] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3859), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3738), }, [1274] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_4] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_primitive] = STATE(2486), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2486), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2486), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2486), + [sym_abstract] = STATE(2486), + [sym_private] = STATE(2486), + [sym_function_clause] = STATE(2486), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2486), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(2486), + [sym_data] = STATE(2486), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2486), + [sym_macro] = STATE(2486), + [sym_test] = STATE(2486), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2486), + [sym_record_signature_only] = STATE(2486), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2486), + [sym_syntax] = STATE(2486), + [sym_record] = STATE(2486), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2486), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2486), + [sym_mutual] = STATE(2486), + [sym_postulate] = STATE(2486), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1275] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2488), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3861), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3744), [sym_pragma] = ACTIONS(3), }, [1276] = { + [anon_sym_LBRACE] = ACTIONS(3863), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3738), [sym_pragma] = ACTIONS(3), }, [1277] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(3746), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_PIPE_RPAREN] = ACTIONS(3833), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1278] = { - [anon_sym_COLON] = ACTIONS(2053), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(3833), [sym_pragma] = ACTIONS(3), }, [1279] = { - [anon_sym_COLON] = ACTIONS(1929), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3833), }, [1280] = { - [anon_sym_COLON] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1246), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2055), }, [1281] = { - [anon_sym_COLON] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1258), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(2055), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1282] = { - [anon_sym_COLON] = ACTIONS(3748), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3750), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1278), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1283] = { - [anon_sym_COLON] = ACTIONS(3752), - [anon_sym_2] = ACTIONS(3750), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_literal] = STATE(395), + [sym_record_assignments] = STATE(395), + [sym_atom] = STATE(1245), + [anon_sym__] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(2119), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_3] = ACTIONS(625), + [anon_sym_Prop] = ACTIONS(613), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_record] = ACTIONS(619), + [anon_sym_] = ACTIONS(2115), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2121), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1284] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1286), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1285] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2439), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3754), + [anon_sym_COLON] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1286] = { - [sym_primitive] = STATE(2441), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2441), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2441), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2442), - [sym_field] = STATE(2441), - [sym_abstract] = STATE(2441), - [sym_private] = STATE(2441), - [sym_function_clause] = STATE(2441), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2441), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2441), - [sym_data] = STATE(2441), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2441), - [sym_macro] = STATE(2441), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2441), - [sym_record_signature_only] = STATE(2441), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2441), - [sym_syntax] = STATE(2441), - [sym_record] = STATE(2441), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2441), - [sym_generalize] = STATE(2441), - [sym_mutual] = STATE(2441), - [sym_postulate] = STATE(2441), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(3756), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3865), + [sym_pragma] = ACTIONS(3), }, [1287] = { - [sym_typed_binding] = STATE(2450), - [sym_anonymous_name] = STATE(2449), - [sym_untyped_binding] = STATE(2450), - [sym__lambda_binding] = STATE(2451), - [sym__binding_name] = STATE(2452), - [anon_sym__] = ACTIONS(3758), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3760), - [anon_sym_] = ACTIONS(3762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_LPAREN] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3768), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [sym_name] = ACTIONS(3772), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [1288] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1246), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2055), }, [1289] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2453), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3754), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1258), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(2055), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1290] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3774), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1278), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1291] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2456), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3776), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1286), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1292] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2457), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3778), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2494), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [1293] = { - [sym__atom_no_curly] = STATE(1302), - [sym_literal] = STATE(1284), - [sym_record_assignments] = STATE(1284), - [sym__atom_curly] = STATE(1302), - [sym_atom] = STATE(2438), - [anon_sym__] = ACTIONS(2134), - [anon_sym_unquote] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3780), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(3782), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [anon_sym_] = ACTIONS(3784), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(3788), - [anon_sym_3] = ACTIONS(2164), - [aux_sym_string_token1] = ACTIONS(2160), - [anon_sym_Prop] = ACTIONS(2134), + [anon_sym_COLON] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(459), }, [1294] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2463), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(3782), + [anon_sym_RPAREN] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1295] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2465), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(3780), + [anon_sym_2] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1296] = { - [sym__atom_no_curly] = STATE(2476), - [sym_literal] = STATE(2466), - [aux_sym__open_args1_repeat1] = STATE(2477), - [sym__atom_curly] = STATE(2476), - [sym_record_assignments] = STATE(2466), - [sym_atom] = STATE(2477), - [sym__atoms1] = STATE(2478), - [anon_sym__] = ACTIONS(3792), - [anon_sym_unquote] = ACTIONS(3792), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3794), + [anon_sym_COLON] = ACTIONS(3776), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3796), - [anon_sym_Set] = ACTIONS(3792), - [anon_sym_LPAREN] = ACTIONS(3798), + [anon_sym_RBRACE] = ACTIONS(459), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3792), - [anon_sym_quoteTerm] = ACTIONS(3792), - [anon_sym_quote] = ACTIONS(3792), - [sym__const_ellipsis] = ACTIONS(3792), - [anon_sym_record] = ACTIONS(3800), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_] = ACTIONS(3802), - [anon_sym_DOT] = ACTIONS(3804), - [anon_sym_LPAREN_PIPE] = ACTIONS(3806), - [anon_sym_LBRACE] = ACTIONS(3808), - [anon_sym_3] = ACTIONS(3810), - [aux_sym_string_token1] = ACTIONS(3812), - [anon_sym_Prop] = ACTIONS(3792), }, [1297] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2479), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3867), + [sym_pragma] = ACTIONS(3), }, [1298] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2480), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1298), + [sym_untyped_binding] = STATE(1298), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1152), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(3720), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1297), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(1953), }, [1299] = { + [anon_sym_COLON] = ACTIONS(1303), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(3869), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3814), }, [1300] = { - [sym__newline] = ACTIONS(3816), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3816), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2383), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1301] = { - [sym_literal] = STATE(2482), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2492), - [aux_sym__open_args1_repeat1] = STATE(2493), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2494), - [sym__atom_curly] = STATE(2492), - [sym_record_assignments] = STATE(2482), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3818), - [anon_sym_unquote] = ACTIONS(3818), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(3820), - [anon_sym_Set] = ACTIONS(3818), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3822), - [anon_sym_LPAREN] = ACTIONS(3824), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3818), - [anon_sym_quoteTerm] = ACTIONS(3818), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3818), - [sym__const_ellipsis] = ACTIONS(3818), - [anon_sym_record] = ACTIONS(3826), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_] = ACTIONS(3828), - [anon_sym_DOT] = ACTIONS(3830), - [anon_sym_LPAREN_PIPE] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(3836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(3818), - [anon_sym_3] = ACTIONS(3838), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2497), + [aux_sym__open_args1_repeat1] = STATE(2497), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_Prop] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1302] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(737), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3871), }, [1303] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_literal] = STATE(1284), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1302), - [sym_record_assignments] = STATE(1284), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2146), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [anon_sym_] = ACTIONS(3840), - [anon_sym__] = ACTIONS(2134), - [anon_sym_unquote] = ACTIONS(2134), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3842), - [anon_sym_LPAREN] = ACTIONS(3844), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(3846), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_primitive] = STATE(2499), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2499), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2499), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2499), + [sym_abstract] = STATE(2499), + [sym_private] = STATE(2499), + [sym_function_clause] = STATE(2499), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2499), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2500), + [sym_infix] = STATE(2499), + [sym_data] = STATE(2499), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2499), + [sym_macro] = STATE(2499), + [sym_test] = STATE(2499), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2499), + [sym_record_signature_only] = STATE(2499), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2499), + [sym_syntax] = STATE(2499), + [sym_record] = STATE(2499), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2499), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2499), + [sym_mutual] = STATE(2499), + [sym_postulate] = STATE(2499), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1304] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - }, - [1305] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3873), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3814), + }, + [1305] = { + [sym_primitive] = STATE(2502), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2502), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2502), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2502), + [sym_abstract] = STATE(2502), + [sym_private] = STATE(2502), + [sym_function_clause] = STATE(2502), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2502), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(2502), + [sym_data] = STATE(2502), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2502), + [sym_macro] = STATE(2502), + [sym_test] = STATE(2502), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2502), + [sym_record_signature_only] = STATE(2502), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2502), + [sym_syntax] = STATE(2502), + [sym_record] = STATE(2502), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2502), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2502), + [sym_mutual] = STATE(2502), + [sym_postulate] = STATE(2502), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1306] = { - [sym_do] = STATE(2499), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2499), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2499), - [sym_lambda] = STATE(2499), - [sym__application] = STATE(2499), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1997), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2003), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1307] = { - [sym_do] = STATE(2500), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2500), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2500), - [sym_lambda] = STATE(2500), - [sym__application] = STATE(2500), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [1308] = { - [sym_do] = STATE(2501), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2501), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2501), - [sym_lambda] = STATE(2501), - [sym__application] = STATE(2501), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_PIPE_RPAREN] = ACTIONS(3078), }, [1309] = { - [sym_do] = STATE(2502), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2502), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2502), - [sym_lambda] = STATE(2502), - [sym__application] = STATE(2502), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2506), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1310] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_4] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym_name] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3140), + [anon_sym_PIPE_RPAREN] = ACTIONS(3140), + [anon_sym_2] = ACTIONS(3140), + [anon_sym_where] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3875), }, [1311] = { - [anon_sym_RPAREN] = ACTIONS(3848), + [anon_sym_COLON] = ACTIONS(2135), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1312] = { - [anon_sym_COLON] = ACTIONS(3850), + [anon_sym_COLON] = ACTIONS(2005), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1313] = { - [anon_sym_COLON] = ACTIONS(3852), + [anon_sym_COLON] = ACTIONS(2123), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3750), [sym_pragma] = ACTIONS(3), }, [1314] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(2506), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1315] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(2507), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1316] = { - [aux_sym_syntax_repeat2] = STATE(1316), - [anon_sym_COLON] = ACTIONS(3854), + [anon_sym_COLON] = ACTIONS(3879), + [anon_sym_4] = ACTIONS(3879), + [anon_sym_SEMI] = ACTIONS(3879), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3856), + [anon_sym_RPAREN] = ACTIONS(3879), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3879), + [anon_sym_PIPE_RPAREN] = ACTIONS(3879), + [anon_sym_2] = ACTIONS(3879), + [anon_sym_where] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3881), }, [1317] = { - [sym__dedent] = ACTIONS(3859), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3861), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_PIPE_RPAREN] = ACTIONS(995), }, [1318] = { - [sym__newline] = ACTIONS(3863), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3863), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3883), }, [1319] = { - [aux_sym_syntax_repeat2] = STATE(451), - [sym_simple_type_sig] = STATE(452), - [aux_sym__simple_type_sig_block_repeat1] = STATE(1319), - [sym__dedent] = ACTIONS(3859), + [anon_sym_RPAREN] = ACTIONS(3883), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3865), }, [1320] = { - [sym__newline] = ACTIONS(3868), - [anon_sym_COLON] = ACTIONS(3868), - [anon_sym_with] = ACTIONS(3868), + [anon_sym_PIPE_RPAREN] = ACTIONS(3883), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3868), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3868), - [anon_sym_where] = ACTIONS(3868), - [anon_sym_rewrite] = ACTIONS(3868), - [anon_sym_module] = ACTIONS(3868), }, [1321] = { - [anon_sym_3] = ACTIONS(1497), - [anon_sym_pattern] = ACTIONS(1497), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(1497), - [anon_sym_quoteGoal] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [sym_qualified_name] = ACTIONS(1497), - [anon_sym_quoteTerm] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_quote] = ACTIONS(1497), - [sym__const_ellipsis] = ACTIONS(1497), - [anon_sym_record] = ACTIONS(1497), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_] = ACTIONS(1497), - [anon_sym_syntax] = ACTIONS(1497), - [anon_sym_instance] = ACTIONS(1497), - [anon_sym_infix] = ACTIONS(1497), - [anon_sym_macro] = ACTIONS(1497), - [anon_sym_field] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_generalize] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1497), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1499), - [sym__const_lambda] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [aux_sym_integer_token1] = ACTIONS(1497), - [anon_sym_open] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_Set] = ACTIONS(1497), - [anon_sym_unquote] = ACTIONS(1497), - [sym__dedent] = ACTIONS(1499), - [anon_sym_codata] = ACTIONS(1497), - [anon_sym_infixr] = ACTIONS(1497), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(1497), - [anon_sym_postulate] = ACTIONS(1497), - [anon_sym_mutual] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_LPAREN_PIPE] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1497), - [sym__const_forall] = ACTIONS(1497), - [aux_sym_string_token1] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_data] = ACTIONS(1497), - [anon_sym_tactic] = ACTIONS(1497), - [anon_sym_Prop] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2509), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3885), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1322] = { - [sym__newline] = ACTIONS(3870), + [anon_sym_LBRACE] = ACTIONS(3887), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3870), }, [1323] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_3] = ACTIONS(1567), - [anon_sym_pattern] = ACTIONS(1570), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(1573), - [anon_sym_quoteGoal] = ACTIONS(1576), - [anon_sym_abstract] = ACTIONS(1579), - [sym_qualified_name] = ACTIONS(1582), - [anon_sym_quoteTerm] = ACTIONS(1582), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_quote] = ACTIONS(1582), - [sym__const_ellipsis] = ACTIONS(1582), - [anon_sym_record] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1582), - [anon_sym_] = ACTIONS(1591), - [anon_sym_syntax] = ACTIONS(1594), - [anon_sym_instance] = ACTIONS(1597), - [anon_sym_infix] = ACTIONS(1600), - [anon_sym_macro] = ACTIONS(1603), - [anon_sym_field] = ACTIONS(1606), - [anon_sym_private] = ACTIONS(1609), - [anon_sym_generalize] = ACTIONS(1612), - [anon_sym__] = ACTIONS(1582), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1615), - [sym__const_lambda] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1621), - [aux_sym_integer_token1] = ACTIONS(1624), - [anon_sym_open] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_Set] = ACTIONS(1582), - [anon_sym_unquote] = ACTIONS(1582), - [sym__dedent] = ACTIONS(1499), - [anon_sym_codata] = ACTIONS(1633), - [anon_sym_infixr] = ACTIONS(1600), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(1600), - [anon_sym_postulate] = ACTIONS(1636), - [anon_sym_mutual] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1642), - [anon_sym_LPAREN_PIPE] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1648), - [sym__const_forall] = ACTIONS(1651), - [aux_sym_string_token1] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_data] = ACTIONS(1660), - [anon_sym_tactic] = ACTIONS(1663), - [anon_sym_Prop] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1666), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3883), }, [1324] = { - [sym_primitive] = STATE(2508), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2508), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2508), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2509), - [sym_field] = STATE(2508), - [sym_abstract] = STATE(2508), - [sym_private] = STATE(2508), - [sym_function_clause] = STATE(2508), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2508), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2508), - [sym_data] = STATE(2508), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2508), - [sym_macro] = STATE(2508), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2508), - [sym_record_signature_only] = STATE(2508), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2508), - [sym_syntax] = STATE(2508), - [sym_record] = STATE(2508), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2508), - [sym_generalize] = STATE(2508), - [sym_mutual] = STATE(2508), - [sym_postulate] = STATE(2508), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(3883), + [sym_pragma] = ACTIONS(3), }, [1325] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(3872), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_PIPE_RPAREN] = ACTIONS(1427), }, [1326] = { - [sym_primitive] = STATE(2511), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2511), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2511), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(2511), - [sym_abstract] = STATE(2511), - [sym_private] = STATE(2511), - [sym_function_clause] = STATE(2511), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2511), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2511), - [sym_data] = STATE(2511), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2511), - [sym_macro] = STATE(2511), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2511), - [sym_record_signature_only] = STATE(2511), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2511), - [sym_syntax] = STATE(2511), - [sym_record] = STATE(2511), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2511), - [sym_generalize] = STATE(2511), - [sym_mutual] = STATE(2511), - [sym_postulate] = STATE(2511), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1327] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(3889), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + }, + [1327] = { + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [1328] = { - [sym_do] = STATE(2512), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2512), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym__application] = STATE(2512), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [1329] = { - [sym_do] = STATE(2513), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2513), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2513), - [sym_lambda] = STATE(2513), - [sym__application] = STATE(2513), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3891), + [sym_pragma] = ACTIONS(3), }, [1330] = { - [sym_anonymous_name] = STATE(1333), - [sym__binding_name] = STATE(2518), - [anon_sym__] = ACTIONS(2190), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3874), - [anon_sym_] = ACTIONS(3876), + [sym__field_assignments1] = STATE(2513), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(3891), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3880), - [sym_name] = ACTIONS(2204), }, [1331] = { - [sym_do] = STATE(2520), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2520), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2520), - [sym_lambda] = STATE(2520), - [sym_open] = STATE(2519), - [sym__application] = STATE(2520), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [1332] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2521), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(2521), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(2521), - [sym__expr2] = STATE(2521), - [sym_lambda] = STATE(2521), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [sym__newline] = ACTIONS(3893), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_with] = ACTIONS(3893), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(3893), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_rewrite] = ACTIONS(3893), + [anon_sym_module] = ACTIONS(3893), }, [1333] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(1117), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), }, [1334] = { - [sym_typed_binding] = STATE(1334), - [sym_anonymous_name] = STATE(1333), - [sym_untyped_binding] = STATE(1334), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(1336), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(2190), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2192), - [anon_sym_] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(3882), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(2204), - }, - [1335] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_where] = ACTIONS(1147), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(3927), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3884), + }, + [1335] = { + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [1336] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [1337] = { - [anon_sym_in] = ACTIONS(3886), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3929), }, [1338] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(3929), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), }, [1339] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(3929), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3888), }, [1340] = { - [anon_sym_RPAREN] = ACTIONS(3888), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(3929), }, [1341] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2527), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(3890), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2538), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(3931), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1342] = { - [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3933), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1343] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3888), + [anon_sym_2] = ACTIONS(3929), [sym_pragma] = ACTIONS(3), }, [1344] = { - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3888), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [1345] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - }, - [1346] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3894), + [anon_sym_RBRACE] = ACTIONS(3935), [sym_pragma] = ACTIONS(3), }, + [1346] = { + [sym__atom_curly] = STATE(483), + [sym__atom_no_curly] = STATE(483), + [sym_literal] = STATE(473), + [sym_record_assignments] = STATE(473), + [sym_atom] = STATE(1346), + [aux_sym__open_args1_repeat1] = STATE(1346), + [sym__newline] = ACTIONS(2214), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(3937), + [sym_qualified_name] = ACTIONS(3940), + [anon_sym_quote] = ACTIONS(3940), + [anon_sym_3] = ACTIONS(3943), + [anon_sym_Prop] = ACTIONS(3940), + [sym__const_ellipsis] = ACTIONS(3940), + [anon_sym_record] = ACTIONS(3946), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(3949), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym__] = ACTIONS(3940), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3952), + [anon_sym_quoteTerm] = ACTIONS(3940), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3940), + [anon_sym_LPAREN] = ACTIONS(3958), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_unquote] = ACTIONS(3940), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(3967), + [anon_sym_Set] = ACTIONS(3940), + [anon_sym_rewrite] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + }, [1347] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [sym_literal] = STATE(522), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(533), + [sym__atom_no_curly] = STATE(533), + [aux_sym__open_args1_repeat1] = STATE(120), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(532), + [sym_record_assignments] = STATE(522), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(809), + [anon_sym_quoteTerm] = ACTIONS(809), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(811), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_LBRACE_LBRACE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(815), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(817), + [sym_qualified_name] = ACTIONS(809), + [anon_sym_quote] = ACTIONS(809), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(809), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(819), + [sym__const_ellipsis] = ACTIONS(809), + [anon_sym_3] = ACTIONS(821), + [anon_sym_] = ACTIONS(823), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(827), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(829), + [anon_sym_Set] = ACTIONS(809), }, [1348] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2531), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3896), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1349] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym_primitive] = STATE(2542), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2542), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2542), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2542), + [sym_abstract] = STATE(2542), + [sym_private] = STATE(2542), + [sym_function_clause] = STATE(2542), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2542), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(2542), + [sym_data] = STATE(2542), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2542), + [sym_macro] = STATE(2542), + [sym_test] = STATE(2542), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2542), + [sym_record_signature_only] = STATE(2542), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2542), + [sym_syntax] = STATE(2542), + [sym_record] = STATE(2542), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2542), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2542), + [sym_mutual] = STATE(2542), + [sym_postulate] = STATE(2542), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1350] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2532), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3896), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(43), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), + [sym_pragma] = ACTIONS(3), }, [1351] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2534), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3898), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(3970), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1352] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2535), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3900), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [1353] = { - [sym__atom_no_curly] = STATE(1357), - [sym_literal] = STATE(1347), - [sym_record_assignments] = STATE(1347), - [sym__atom_curly] = STATE(1357), - [sym_atom] = STATE(2530), - [anon_sym__] = ACTIONS(2216), - [anon_sym_unquote] = ACTIONS(2216), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2218), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2220), - [anon_sym_Set] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(3972), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2216), - [anon_sym_quoteTerm] = ACTIONS(2216), - [anon_sym_quote] = ACTIONS(2216), - [sym__const_ellipsis] = ACTIONS(2216), - [anon_sym_record] = ACTIONS(2224), - [anon_sym_QMARK] = ACTIONS(2216), - [anon_sym_] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_LPAREN_PIPE] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_3] = ACTIONS(2234), - [aux_sym_string_token1] = ACTIONS(2236), - [anon_sym_Prop] = ACTIONS(2216), }, [1354] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2536), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(1566), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), + [sym_pragma] = ACTIONS(3), }, [1355] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2538), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3902), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(758), + [sym__field_assignments1] = STATE(2565), + [sym_field_assignment] = STATE(1582), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym__expr2] = STATE(1583), + [sym_do] = STATE(1583), + [sym_atom] = STATE(769), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1583), + [sym_let] = STATE(1583), + [sym_lambda] = STATE(1583), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(2602), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [1356] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2539), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(4006), + [anon_sym_where] = ACTIONS(2610), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1357] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), + [sym_pragma] = ACTIONS(3), }, [1358] = { - [sym__atom_no_curly] = STATE(1357), - [sym_literal] = STATE(1347), - [sym_record_assignments] = STATE(1347), - [sym__atom_curly] = STATE(1357), - [sym_atom] = STATE(2540), - [aux_sym__open_args1_repeat1] = STATE(2540), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(2216), - [anon_sym_unquote] = ACTIONS(2216), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2218), + [sym__newline] = ACTIONS(4008), + [anon_sym_COLON] = ACTIONS(4008), + [anon_sym_with] = ACTIONS(4008), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2220), - [anon_sym_Set] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_EQ] = ACTIONS(4008), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(2216), - [anon_sym_quoteTerm] = ACTIONS(2216), - [anon_sym_quote] = ACTIONS(2216), - [sym__const_ellipsis] = ACTIONS(2216), - [anon_sym_record] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(2216), - [anon_sym_] = ACTIONS(2226), - [anon_sym_DOT] = ACTIONS(2228), - [anon_sym_LPAREN_PIPE] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_3] = ACTIONS(2234), - [aux_sym_string_token1] = ACTIONS(2236), - [anon_sym_Prop] = ACTIONS(2216), + [anon_sym_in] = ACTIONS(4008), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_rewrite] = ACTIONS(4008), + [anon_sym_module] = ACTIONS(4008), }, [1359] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(3904), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(4010), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1360] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [aux_sym_syntax_repeat1] = STATE(1684), + [sym_hole_name] = STATE(1684), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1073), + [anon_sym_] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(4012), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1069), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1071), }, [1361] = { + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(3888), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1185), }, [1362] = { - [sym__lambda_where_block] = STATE(2542), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(1135), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(1295), }, [1363] = { - [anon_sym__] = ACTIONS(3906), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3908), - [sym__const_lambda] = ACTIONS(3906), - [anon_sym_let] = ACTIONS(3906), - [aux_sym_integer_token1] = ACTIONS(3906), - [anon_sym_Set] = ACTIONS(3906), - [anon_sym_LPAREN] = ACTIONS(3906), - [anon_sym_quoteGoal] = ACTIONS(3906), - [anon_sym_unquote] = ACTIONS(3906), - [sym__dedent] = ACTIONS(3908), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3906), - [anon_sym_quoteTerm] = ACTIONS(3906), - [anon_sym_do] = ACTIONS(3906), - [anon_sym_quote] = ACTIONS(3906), - [sym__const_ellipsis] = ACTIONS(3906), - [anon_sym_record] = ACTIONS(3906), - [anon_sym_QMARK] = ACTIONS(3906), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(3906), - [anon_sym_DOT] = ACTIONS(3906), - [anon_sym_LPAREN_PIPE] = ACTIONS(3908), - [anon_sym_LBRACE] = ACTIONS(3906), - [sym__const_forall] = ACTIONS(3906), - [aux_sym_string_token1] = ACTIONS(3908), - [anon_sym_tactic] = ACTIONS(3906), - [anon_sym_Prop] = ACTIONS(3906), - [anon_sym_3] = ACTIONS(3906), - }, - [1364] = { - [sym__newline] = ACTIONS(3910), - [anon_sym_COLON] = ACTIONS(3910), - [anon_sym_with] = ACTIONS(3910), + [sym__binding_name] = STATE(2570), + [sym_anonymous_name] = STATE(1362), + [aux_sym_infix_repeat1] = STATE(2570), + [sym__newline] = ACTIONS(2708), + [anon_sym_in] = ACTIONS(4014), + [anon_sym__] = ACTIONS(2275), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3910), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3910), - [anon_sym_where] = ACTIONS(3910), - [anon_sym_rewrite] = ACTIONS(3910), - [anon_sym_module] = ACTIONS(3910), + [sym_name] = ACTIONS(2277), }, - [1365] = { - [sym_literal] = STATE(457), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), + [1364] = { [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__with_expr] = STATE(473), - [aux_sym__open_args1_repeat1] = STATE(475), - [sym__do_stmt] = STATE(476), - [sym__do_stmt_where] = STATE(476), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [aux_sym_do_repeat1] = STATE(1365), - [anon_sym__] = ACTIONS(3912), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3915), - [sym__const_lambda] = ACTIONS(3918), - [anon_sym_let] = ACTIONS(3921), - [aux_sym_integer_token1] = ACTIONS(3924), - [anon_sym_Set] = ACTIONS(3912), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym_quoteGoal] = ACTIONS(3930), - [anon_sym_unquote] = ACTIONS(3912), - [sym__dedent] = ACTIONS(3908), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3912), - [anon_sym_quoteTerm] = ACTIONS(3912), - [anon_sym_do] = ACTIONS(3933), - [anon_sym_quote] = ACTIONS(3912), - [sym__const_ellipsis] = ACTIONS(3912), - [anon_sym_record] = ACTIONS(3936), - [anon_sym_QMARK] = ACTIONS(3912), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(3939), - [anon_sym_DOT] = ACTIONS(3942), - [anon_sym_LPAREN_PIPE] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3948), - [sym__const_forall] = ACTIONS(3951), - [aux_sym_string_token1] = ACTIONS(3954), - [anon_sym_tactic] = ACTIONS(3957), - [anon_sym_Prop] = ACTIONS(3912), - [anon_sym_3] = ACTIONS(3960), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), + [sym_pragma] = ACTIONS(3), + }, + [1365] = { + [sym_literal] = STATE(1367), + [sym__open_args1] = STATE(2571), + [sym_import_directive] = STATE(2572), + [sym_atom] = STATE(1380), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_record_assignments] = STATE(1367), + [aux_sym__open_args1_repeat1] = STATE(1380), + [aux_sym_module_macro_repeat1] = STATE(2572), + [sym__open_as] = STATE(2573), + [sym__newline] = ACTIONS(2798), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2291), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(4016), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(1181), }, [1366] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [sym_name] = ACTIONS(2065), + [sym__binding_name] = STATE(319), + [sym_anonymous_name] = STATE(316), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(1755), + [sym_untyped_binding] = STATE(1755), + [sym_typed_binding] = STATE(1755), + [sym__typed_untyped_binding1] = STATE(2575), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2800), + [anon_sym_] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(4018), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), }, [1367] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_] = ACTIONS(2256), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [sym_name] = ACTIONS(2256), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_renaming] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_using] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_hiding] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_public] = ACTIONS(119), }, [1368] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3963), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2577), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4020), }, [1369] = { - [sym__field_assignments1] = STATE(2544), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(3963), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_renaming] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_using] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_hiding] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_public] = ACTIONS(293), }, [1370] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [sym_name] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2578), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4020), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1371] = { + [sym__module_name] = STATE(2580), + [sym_qualified_name] = ACTIONS(4022), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3965), [sym_pragma] = ACTIONS(3), }, [1372] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(2546), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2581), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1373] = { - [sym__module_name] = STATE(492), - [sym_module_assignment] = STATE(2547), - [sym_field_assignment] = STATE(2547), - [sym_qualified_name] = ACTIONS(759), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2583), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4024), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1374] = { - [aux_sym__record_assignments1_repeat1] = STATE(2548), - [anon_sym_SEMI] = ACTIONS(2260), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3967), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2584), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [1375] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(121), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_renaming] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_using] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_hiding] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_public] = ACTIONS(119), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2585), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1376] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2550), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3969), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_literal] = STATE(1367), + [sym_record_assignments] = STATE(1367), + [sym_atom] = STATE(2576), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), }, [1377] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_SEMI] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(255), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(255), - [anon_sym_renaming] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_using] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_hiding] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_public] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2587), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1378] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2551), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3969), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1379] = { + [sym_import_directive] = STATE(2572), + [aux_sym_module_macro_repeat1] = STATE(2572), + [sym__newline] = ACTIONS(2798), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3971), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + }, + [1379] = { + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_renaming] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_using] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_hiding] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_public] = ACTIONS(411), }, [1380] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2554), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3973), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_literal] = STATE(1367), + [sym_record_assignments] = STATE(1367), + [sym_atom] = STATE(2588), + [aux_sym__open_args1_repeat1] = STATE(2588), + [sym__newline] = ACTIONS(2832), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(2834), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_hiding] = ACTIONS(2834), + [anon_sym_in] = ACTIONS(2834), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(2834), }, [1381] = { + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(2798), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [1382] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2556), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3977), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_literal] = STATE(1367), + [sym__open_args1] = STATE(2571), + [sym_import_directive] = STATE(2572), + [sym_atom] = STATE(1380), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_record_assignments] = STATE(1367), + [aux_sym__open_args1_repeat1] = STATE(1380), + [aux_sym_module_macro_repeat1] = STATE(2572), + [sym__newline] = ACTIONS(2798), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(4016), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(1181), }, [1383] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(2549), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_3] = ACTIONS(2290), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), + [anon_sym_COLON] = ACTIONS(4030), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4032), }, [1384] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2557), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(4034), + [anon_sym_2] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1385] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2559), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3979), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(2593), + [sym_do] = STATE(2593), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2593), + [sym_lambda] = STATE(2593), + [sym__application] = STATE(2593), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1386] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2560), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__expr2] = STATE(2594), + [sym_do] = STATE(2594), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2594), + [sym_lambda] = STATE(2594), + [sym__application] = STATE(2594), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1387] = { - [anon_sym_using] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2868), - [anon_sym_hiding] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_public] = ACTIONS(2868), - [anon_sym_renaming] = ACTIONS(2868), + [sym__expr2] = STATE(2595), + [sym_do] = STATE(2595), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2595), + [sym_lambda] = STATE(2595), + [sym__application] = STATE(2595), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1388] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_renaming] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_using] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_hiding] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), + [sym__expr2] = STATE(2596), + [sym_do] = STATE(2596), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2596), + [sym_lambda] = STATE(2596), + [sym__application] = STATE(2596), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1389] = { - [sym_import_directive] = STATE(2561), - [aux_sym_module_macro_repeat1] = STATE(2561), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_SEMI] = ACTIONS(3983), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3983), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_rewrite] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [1390] = { - [sym_import_directive] = STATE(2562), - [aux_sym_module_macro_repeat1] = STATE(2562), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym_COLON] = ACTIONS(4036), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(3983), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), }, [1391] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(2563), - [aux_sym__open_args1_repeat1] = STATE(2563), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteTerm] = ACTIONS(2264), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_renaming] = ACTIONS(2878), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2878), - [anon_sym_3] = ACTIONS(2290), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1392] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(4040), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4032), + [sym_pragma] = ACTIONS(3), }, [1393] = { + [sym__expr2] = STATE(2600), + [sym_do] = STATE(2600), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2600), + [sym_lambda] = STATE(2600), + [sym__application] = STATE(2600), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), + }, + [1394] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), + [sym_pragma] = ACTIONS(3), + }, + [1395] = { + [anon_sym_LBRACE] = ACTIONS(4042), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [1396] = { + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + }, + [1397] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [1394] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2565), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3993), - }, - [1395] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - }, - [1396] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2566), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(3993), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [1397] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2568), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(3995), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_rewrite] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1398] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2569), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2603), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4044), }, [1399] = { - [sym__atom_no_curly] = STATE(1405), - [sym_literal] = STATE(1393), - [sym_record_assignments] = STATE(1393), - [sym__atom_curly] = STATE(1405), - [sym_atom] = STATE(2564), - [anon_sym__] = ACTIONS(2296), - [anon_sym_unquote] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3999), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(4001), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [anon_sym_] = ACTIONS(4003), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_3] = ACTIONS(2316), - [aux_sym_string_token1] = ACTIONS(2314), - [anon_sym_Prop] = ACTIONS(2296), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_rewrite] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1400] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2575), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2604), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(4044), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1401] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2577), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4009), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2606), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4046), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1402] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2578), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2607), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1403] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4011), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2608), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1404] = { - [sym__newline] = ACTIONS(4013), - [anon_sym_where] = ACTIONS(4015), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2609), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4013), }, [1405] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_literal] = STATE(1397), + [sym_record_assignments] = STATE(1397), + [sym_atom] = STATE(2602), + [anon_sym__] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4050), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(4052), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_Prop] = ACTIONS(2323), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_record] = ACTIONS(2331), + [anon_sym_] = ACTIONS(4054), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), }, [1406] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_literal] = STATE(1393), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1405), - [sym_record_assignments] = STATE(1393), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(727), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [anon_sym_] = ACTIONS(4017), - [anon_sym__] = ACTIONS(2296), - [anon_sym_unquote] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4021), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2616), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1407] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_rewrite] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1408] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4011), + [sym_literal] = STATE(1397), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1410), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_record_assignments] = STATE(1397), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_] = ACTIONS(4062), + [anon_sym__] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4068), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), }, [1409] = { - [anon_sym_COLON] = ACTIONS(4025), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4027), + [sym__const_right_arrow] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(479), }, [1410] = { - [anon_sym_COLON] = ACTIONS(4029), - [anon_sym_2] = ACTIONS(4027), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_rewrite] = ACTIONS(475), + [anon_sym_module] = ACTIONS(475), }, [1411] = { - [sym_do] = STATE(2588), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2588), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2588), - [sym_lambda] = STATE(2588), - [sym__application] = STATE(2588), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4070), }, [1412] = { - [sym_do] = STATE(2589), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2589), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2589), - [sym_lambda] = STATE(2589), - [sym__application] = STATE(2589), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(2002), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), + [sym_pragma] = ACTIONS(3), }, [1413] = { - [sym_do] = STATE(2590), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2590), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2590), - [sym_lambda] = STATE(2590), - [sym__application] = STATE(2590), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_where] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1414] = { - [sym_do] = STATE(2591), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2591), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2591), - [sym_lambda] = STATE(2591), - [sym__application] = STATE(2591), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_module_application] = STATE(2624), + [sym_qualified_name] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1415] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_where] = ACTIONS(3166), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(4076), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym_name] = ACTIONS(2718), }, [1416] = { - [anon_sym_RPAREN] = ACTIONS(4031), + [sym__newline] = ACTIONS(4078), + [anon_sym_COLON] = ACTIONS(4078), + [anon_sym_with] = ACTIONS(4078), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4078), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4078), + [anon_sym_where] = ACTIONS(4078), + [anon_sym_rewrite] = ACTIONS(4078), + [anon_sym_module] = ACTIONS(4078), }, [1417] = { - [anon_sym_COLON] = ACTIONS(4033), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [1418] = { - [anon_sym_COLON] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(2254), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4080), }, [1419] = { + [anon_sym_RPAREN] = ACTIONS(4080), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4035), [sym_pragma] = ACTIONS(3), }, [1420] = { - [aux_sym__field_assignments1_repeat1] = STATE(2596), - [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_PIPE_RPAREN] = ACTIONS(4080), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4039), [sym_pragma] = ACTIONS(3), }, [1421] = { - [anon_sym_COLON] = ACTIONS(4041), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2627), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4082), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4027), [sym_pragma] = ACTIONS(3), }, [1422] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(2603), - [sym_record_constructor_instance] = STATE(2604), - [sym__record_directive] = STATE(2604), - [aux_sym_record_declarations_block_repeat1] = STATE(2605), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [sym_record_constructor] = STATE(2604), - [sym_record_induction] = STATE(2604), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym_record_eta] = STATE(2604), - [sym__atom_curly] = STATE(40), - [sym_module] = STATE(455), - [sym_record_assignments] = STATE(7), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [anon_sym_inductive] = ACTIONS(4043), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_no_DASHeta_DASHequality] = ACTIONS(4045), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_coinductive] = ACTIONS(4043), - [anon_sym_instance] = ACTIONS(4047), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym__dedent] = ACTIONS(4049), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_constructor] = ACTIONS(4051), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_eta_DASHequality] = ACTIONS(4045), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(4084), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1423] = { - [sym__newline] = ACTIONS(4053), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4053), + [anon_sym_4] = ACTIONS(4080), }, [1424] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(2606), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4080), + [sym_pragma] = ACTIONS(3), }, [1425] = { - [sym_record_declarations_block] = STATE(2607), - [sym__newline] = ACTIONS(4053), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(2330), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4053), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [1426] = { - [sym_typed_binding] = STATE(1426), - [sym_anonymous_name] = STATE(502), - [sym_untyped_binding] = STATE(1426), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(1426), - [sym__binding_name] = STATE(505), - [anon_sym_COLON] = ACTIONS(3053), - [anon_sym__] = ACTIONS(4055), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4058), - [anon_sym_] = ACTIONS(4061), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4064), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym_LBRACE] = ACTIONS(4070), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(4073), - [sym_name] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4086), + [sym_pragma] = ACTIONS(3), }, [1427] = { + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_2] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - }, - [1428] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(4079), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, - [1429] = { - [sym_primitive] = STATE(2609), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2609), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2609), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(2609), - [sym_abstract] = STATE(2609), - [sym_private] = STATE(2609), - [sym_function_clause] = STATE(2609), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2609), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2609), - [sym_data] = STATE(2609), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2609), - [sym_macro] = STATE(2609), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2609), - [sym_record_signature_only] = STATE(2609), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2609), - [sym_syntax] = STATE(2609), - [sym_record] = STATE(2609), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2609), - [sym_generalize] = STATE(2609), - [sym_mutual] = STATE(2609), - [sym_postulate] = STATE(2609), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [1428] = { + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2631), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4088), }, - [1430] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [1429] = { [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_name] = ACTIONS(4090), + }, + [1430] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1431] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(4079), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(2639), + [sym_typed_binding] = STATE(2640), + [sym_untyped_binding] = STATE(2640), + [sym__lambda_binding] = STATE(2641), + [sym__binding_name] = STATE(2642), + [anon_sym__] = ACTIONS(4092), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4094), + [anon_sym_] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4102), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [sym_name] = ACTIONS(4106), }, [1432] = { - [anon_sym_COLON] = ACTIONS(4081), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4083), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2643), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(4088), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1433] = { - [anon_sym_COLON] = ACTIONS(4085), - [anon_sym_2] = ACTIONS(4083), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2654), + [sym__atom_no_curly] = STATE(2654), + [sym_literal] = STATE(2644), + [aux_sym__open_args1_repeat1] = STATE(2655), + [sym_record_assignments] = STATE(2644), + [sym_atom] = STATE(2655), + [sym__atoms1] = STATE(2656), + [anon_sym__] = ACTIONS(4108), + [anon_sym_quoteTerm] = ACTIONS(4108), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4114), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4116), + [sym_qualified_name] = ACTIONS(4108), + [anon_sym_quote] = ACTIONS(4108), + [anon_sym_3] = ACTIONS(4118), + [anon_sym_Prop] = ACTIONS(4108), + [sym__const_ellipsis] = ACTIONS(4108), + [anon_sym_record] = ACTIONS(4120), + [anon_sym_] = ACTIONS(4122), + [anon_sym_unquote] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [aux_sym_string_token1] = ACTIONS(4128), + [anon_sym_Set] = ACTIONS(4108), }, [1434] = { - [sym_do] = STATE(2613), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2613), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2613), - [sym_lambda] = STATE(2613), - [sym__application] = STATE(2613), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_primitive] = STATE(2658), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2658), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2658), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2658), + [sym_abstract] = STATE(2658), + [sym_private] = STATE(2658), + [sym_function_clause] = STATE(2658), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2658), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2659), + [sym_infix] = STATE(2658), + [sym_data] = STATE(2658), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2658), + [sym_macro] = STATE(2658), + [sym_test] = STATE(2658), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2658), + [sym_record_signature_only] = STATE(2658), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2658), + [sym_syntax] = STATE(2658), + [sym_record] = STATE(2658), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2658), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2658), + [sym_mutual] = STATE(2658), + [sym_postulate] = STATE(2658), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(4130), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1435] = { - [sym_do] = STATE(2614), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2614), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2614), - [sym_lambda] = STATE(2614), - [sym__application] = STATE(2614), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2661), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4132), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1436] = { - [sym_do] = STATE(2615), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2615), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2615), - [sym_lambda] = STATE(2615), - [sym__application] = STATE(2615), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2662), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1437] = { - [sym_do] = STATE(2616), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2616), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2616), - [sym_lambda] = STATE(2616), - [sym__application] = STATE(2616), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2663), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1438] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_2] = ACTIONS(2718), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2664), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [1439] = { - [anon_sym_RPAREN] = ACTIONS(4087), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_literal] = STATE(1427), + [sym_record_assignments] = STATE(1427), + [sym_atom] = STATE(2630), + [anon_sym__] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2366), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(4138), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_Prop] = ACTIONS(2360), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_record] = ACTIONS(2376), + [anon_sym_] = ACTIONS(4140), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), }, [1440] = { - [anon_sym_COLON] = ACTIONS(4089), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2671), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1441] = { - [anon_sym_COLON] = ACTIONS(4091), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4083), - [sym_pragma] = ACTIONS(3), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2672), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1442] = { - [sym_do] = STATE(2620), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2620), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2620), - [sym_lambda] = STATE(2620), - [sym__application] = STATE(2620), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1443] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_literal] = STATE(1427), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1445), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_record_assignments] = STATE(1427), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_] = ACTIONS(4148), + [anon_sym__] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4152), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4154), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), }, [1444] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__const_right_arrow] = ACTIONS(4156), + [anon_sym_PIPE] = ACTIONS(479), }, [1445] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_2] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1446] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4093), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4156), }, [1447] = { - [sym__field_assignments1] = STATE(2622), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(4093), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(2678), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2688), + [sym__atom_no_curly] = STATE(2688), + [aux_sym__open_args1_repeat1] = STATE(2689), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2690), + [sym_record_assignments] = STATE(2678), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(4158), + [anon_sym_quoteTerm] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(4160), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4166), + [sym_qualified_name] = ACTIONS(4158), + [anon_sym_quote] = ACTIONS(4158), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(4168), + [sym__const_ellipsis] = ACTIONS(4158), + [anon_sym_3] = ACTIONS(4170), + [anon_sym_] = ACTIONS(4172), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4176), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(4178), + [anon_sym_Set] = ACTIONS(4158), }, [1448] = { + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_2] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1449] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [sym_name] = ACTIONS(4180), }, [1450] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4095), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1451] = { - [anon_sym_RPAREN] = ACTIONS(4095), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(2698), + [sym_typed_binding] = STATE(2699), + [sym_untyped_binding] = STATE(2699), + [sym__lambda_binding] = STATE(2700), + [sym__binding_name] = STATE(2701), + [anon_sym__] = ACTIONS(4182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4184), + [anon_sym_] = ACTIONS(4186), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4192), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(4194), + [sym_name] = ACTIONS(4196), }, [1452] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2625), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4097), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2703), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4198), }, [1453] = { - [anon_sym_LBRACE] = ACTIONS(4099), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2704), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4198), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1454] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4095), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2705), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1455] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4095), + [sym__atom_curly] = STATE(2716), + [sym__atom_no_curly] = STATE(2716), + [sym_literal] = STATE(2706), + [aux_sym__open_args1_repeat1] = STATE(2717), + [sym_record_assignments] = STATE(2706), + [sym_atom] = STATE(2717), + [sym__atoms1] = STATE(2718), + [anon_sym__] = ACTIONS(4200), + [anon_sym_quoteTerm] = ACTIONS(4200), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4202), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4206), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4208), + [sym_qualified_name] = ACTIONS(4200), + [anon_sym_quote] = ACTIONS(4200), + [anon_sym_3] = ACTIONS(4210), + [anon_sym_Prop] = ACTIONS(4200), + [sym__const_ellipsis] = ACTIONS(4200), + [anon_sym_record] = ACTIONS(4212), + [anon_sym_] = ACTIONS(4214), + [anon_sym_unquote] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [aux_sym_string_token1] = ACTIONS(4220), + [anon_sym_Set] = ACTIONS(4200), }, [1456] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [sym_primitive] = STATE(2720), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2720), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2720), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2720), + [sym_abstract] = STATE(2720), + [sym_private] = STATE(2720), + [sym_function_clause] = STATE(2720), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2720), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2721), + [sym_infix] = STATE(2720), + [sym_data] = STATE(2720), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2720), + [sym_macro] = STATE(2720), + [sym_test] = STATE(2720), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2720), + [sym_record_signature_only] = STATE(2720), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2720), + [sym_syntax] = STATE(2720), + [sym_record] = STATE(2720), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2720), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2720), + [sym_mutual] = STATE(2720), + [sym_postulate] = STATE(2720), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(4222), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1457] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4101), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2723), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4224), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1458] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4095), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2724), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [1459] = { - [sym__atom_no_curly] = STATE(544), - [sym_literal] = STATE(534), - [sym_record_assignments] = STATE(534), - [sym__atom_curly] = STATE(544), - [sym_atom] = STATE(1459), - [aux_sym__open_args1_repeat1] = STATE(1459), - [anon_sym__] = ACTIONS(4103), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4106), - [anon_sym_unquote] = ACTIONS(4103), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4109), - [anon_sym_Set] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4112), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(4103), - [anon_sym_quoteTerm] = ACTIONS(4103), - [anon_sym_quote] = ACTIONS(4103), - [sym__const_ellipsis] = ACTIONS(4103), - [anon_sym_record] = ACTIONS(4115), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(4103), - [anon_sym_] = ACTIONS(4118), - [anon_sym_DOT] = ACTIONS(4121), - [anon_sym_LPAREN_PIPE] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_3] = ACTIONS(4130), - [aux_sym_string_token1] = ACTIONS(4133), - [anon_sym_Prop] = ACTIONS(4103), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2725), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1460] = { - [sym_literal] = STATE(550), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(560), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(561), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(562), - [sym__atom_curly] = STATE(560), - [sym_record_assignments] = STATE(550), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(853), - [anon_sym_unquote] = ACTIONS(853), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(855), - [anon_sym_Set] = ACTIONS(853), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_LBRACE_LBRACE] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(853), - [anon_sym_quoteTerm] = ACTIONS(853), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(853), - [sym__const_ellipsis] = ACTIONS(853), - [anon_sym_record] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(853), - [anon_sym_] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(865), - [anon_sym_LPAREN_PIPE] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(871), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(853), - [anon_sym_3] = ACTIONS(873), + [sym__atom_curly] = STATE(1463), + [sym__atom_no_curly] = STATE(1463), + [sym_literal] = STATE(1448), + [sym_record_assignments] = STATE(1448), + [sym_atom] = STATE(2702), + [anon_sym__] = ACTIONS(2392), + [anon_sym_quoteTerm] = ACTIONS(2392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2402), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2404), + [sym_qualified_name] = ACTIONS(2392), + [anon_sym_quote] = ACTIONS(2392), + [anon_sym_3] = ACTIONS(2412), + [anon_sym_Prop] = ACTIONS(2392), + [sym__const_ellipsis] = ACTIONS(2392), + [anon_sym_record] = ACTIONS(2410), + [anon_sym_] = ACTIONS(2414), + [anon_sym_unquote] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [aux_sym_string_token1] = ACTIONS(2422), + [anon_sym_Set] = ACTIONS(2392), }, [1461] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_2] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2727), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1462] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4136), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2728), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1463] = { - [anon_sym_RPAREN] = ACTIONS(4136), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1464] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2630), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4138), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(1448), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1465), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1463), + [sym__atom_no_curly] = STATE(1463), + [sym_record_assignments] = STATE(1448), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(2392), + [anon_sym_quoteTerm] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(2396), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_LPAREN_PIPE] = ACTIONS(2404), + [sym_qualified_name] = ACTIONS(2392), + [anon_sym_quote] = ACTIONS(2392), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(2410), + [sym__const_ellipsis] = ACTIONS(2392), + [anon_sym_3] = ACTIONS(2412), + [anon_sym_] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [anon_sym_Set] = ACTIONS(2392), [sym_pragma] = ACTIONS(3), }, [1465] = { - [anon_sym_LBRACE] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1466] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4136), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(1448), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1463), + [sym__atom_no_curly] = STATE(1463), + [aux_sym__open_args1_repeat1] = STATE(1464), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1465), + [sym_record_assignments] = STATE(1448), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(2392), + [anon_sym_quoteTerm] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(2396), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2404), + [sym_qualified_name] = ACTIONS(2392), + [anon_sym_quote] = ACTIONS(2392), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(2410), + [sym__const_ellipsis] = ACTIONS(2392), + [anon_sym_3] = ACTIONS(2412), + [anon_sym_] = ACTIONS(2414), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [anon_sym_Set] = ACTIONS(2392), }, [1467] = { - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4136), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1468] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_2] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2730), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4230), }, [1469] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4142), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4232), }, [1470] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4136), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1471] = { - [anon_sym__] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4144), + [sym_anonymous_name] = STATE(2738), + [sym_typed_binding] = STATE(2739), + [sym_untyped_binding] = STATE(2739), + [sym__lambda_binding] = STATE(2740), + [sym__binding_name] = STATE(2741), + [anon_sym__] = ACTIONS(4234), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4236), + [anon_sym_] = ACTIONS(4238), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4244), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [sym_name] = ACTIONS(4248), }, [1472] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(4146), - [anon_sym_2] = ACTIONS(4146), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(4146), - [sym_pragma] = ACTIONS(3), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2742), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(4230), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1473] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4152), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2753), + [sym__atom_no_curly] = STATE(2753), + [sym_literal] = STATE(2743), + [aux_sym__open_args1_repeat1] = STATE(2754), + [sym_record_assignments] = STATE(2743), + [sym_atom] = STATE(2754), + [sym__atoms1] = STATE(2755), + [anon_sym__] = ACTIONS(4250), + [anon_sym_quoteTerm] = ACTIONS(4250), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4256), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4258), + [sym_qualified_name] = ACTIONS(4250), + [anon_sym_quote] = ACTIONS(4250), + [anon_sym_3] = ACTIONS(4260), + [anon_sym_Prop] = ACTIONS(4250), + [sym__const_ellipsis] = ACTIONS(4250), + [anon_sym_record] = ACTIONS(4262), + [anon_sym_] = ACTIONS(4264), + [anon_sym_unquote] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [aux_sym_string_token1] = ACTIONS(4270), + [anon_sym_Set] = ACTIONS(4250), }, [1474] = { - [anon_sym__] = ACTIONS(4154), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4154), + [sym_primitive] = STATE(2757), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2757), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2757), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2757), + [sym_abstract] = STATE(2757), + [sym_private] = STATE(2757), + [sym_function_clause] = STATE(2757), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2757), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2758), + [sym_infix] = STATE(2757), + [sym_data] = STATE(2757), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2757), + [sym_macro] = STATE(2757), + [sym_test] = STATE(2757), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2757), + [sym_record_signature_only] = STATE(2757), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2757), + [sym_syntax] = STATE(2757), + [sym_record] = STATE(2757), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2757), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2757), + [sym_mutual] = STATE(2757), + [sym_postulate] = STATE(2757), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(4272), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1475] = { - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4156), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4150), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2760), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4274), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1476] = { - [anon_sym_2] = ACTIONS(4150), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4158), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2761), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1477] = { - [aux_sym_syntax_repeat2] = STATE(2639), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4160), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2762), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1478] = { - [sym_hole_name] = STATE(1478), - [aux_sym_syntax_repeat1] = STATE(1478), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4162), - [anon_sym_] = ACTIONS(4165), - [anon_sym_EQ] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4173), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2763), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4176), }, [1479] = { - [sym__binding_name] = STATE(1479), - [aux_sym_infix_repeat1] = STATE(1479), - [sym_anonymous_name] = STATE(574), - [sym__newline] = ACTIONS(4179), - [anon_sym__] = ACTIONS(4181), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4184), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_literal] = STATE(1467), + [sym_record_assignments] = STATE(1467), + [sym_atom] = STATE(2729), + [anon_sym__] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4278), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(4280), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_Prop] = ACTIONS(2424), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_record] = ACTIONS(2440), + [anon_sym_] = ACTIONS(4282), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_LBRACE] = ACTIONS(4286), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), }, [1480] = { - [sym__field_name] = STATE(2640), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2396), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2770), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1481] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2410), - [sym_name] = ACTIONS(2410), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2771), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1482] = { - [sym__field_name] = STATE(2642), - [aux_sym__arg_name_repeat1] = STATE(2642), - [sym_name] = ACTIONS(2396), - [anon_sym_DOT_DOT] = ACTIONS(2392), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2394), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4187), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1483] = { - [anon_sym_COLON] = ACTIONS(4189), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(1467), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1485), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_record_assignments] = STATE(1467), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_] = ACTIONS(4290), + [anon_sym__] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4292), + [anon_sym_LPAREN] = ACTIONS(4294), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_LBRACE] = ACTIONS(4296), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), }, [1484] = { - [sym__field_name] = STATE(2644), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2402), + [sym__const_right_arrow] = ACTIONS(4298), + [anon_sym_PIPE] = ACTIONS(479), }, [1485] = { - [anon_sym_2] = ACTIONS(2410), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2410), - [sym_name] = ACTIONS(2410), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1486] = { - [sym__field_name] = STATE(2645), - [aux_sym__arg_name_repeat1] = STATE(2645), - [anon_sym_2] = ACTIONS(4191), - [anon_sym_DOT_DOT] = ACTIONS(2398), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2400), - [sym_name] = ACTIONS(2402), + [sym__const_right_arrow] = ACTIONS(4298), }, [1487] = { - [sym__field_name] = STATE(2646), - [aux_sym__arg_name_repeat2] = STATE(2646), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2396), + [sym_literal] = STATE(2777), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2787), + [sym__atom_no_curly] = STATE(2787), + [aux_sym__open_args1_repeat1] = STATE(2788), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2789), + [sym_record_assignments] = STATE(2777), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(4300), + [anon_sym_quoteTerm] = ACTIONS(4300), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(4302), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(4306), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4308), + [sym_qualified_name] = ACTIONS(4300), + [anon_sym_quote] = ACTIONS(4300), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(4300), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(4310), + [sym__const_ellipsis] = ACTIONS(4300), + [anon_sym_3] = ACTIONS(4312), + [anon_sym_] = ACTIONS(4314), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4300), + [anon_sym_DOT] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4318), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(4320), + [anon_sym_Set] = ACTIONS(4300), }, [1488] = { - [sym__field_name] = STATE(2647), - [aux_sym__arg_name_repeat2] = STATE(2647), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(119), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1489] = { - [sym__field_name] = STATE(2648), - [aux_sym__arg_name_repeat2] = STATE(2648), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2402), + [sym_name] = ACTIONS(4322), }, [1490] = { - [anon_sym_COLON] = ACTIONS(4193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4195), - [anon_sym_] = ACTIONS(4193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4193), - [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(4193), - [anon_sym_DOT_DOT] = ACTIONS(4195), - [sym_name] = ACTIONS(4193), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1491] = { - [sym__field_name] = STATE(2649), - [aux_sym__arg_name_repeat1] = STATE(2649), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4187), - [anon_sym_DOT] = ACTIONS(2394), - [sym_name] = ACTIONS(2396), + [sym_anonymous_name] = STATE(2797), + [sym_typed_binding] = STATE(2798), + [sym_untyped_binding] = STATE(2798), + [sym__lambda_binding] = STATE(2799), + [sym__binding_name] = STATE(2800), + [anon_sym__] = ACTIONS(4324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4326), + [anon_sym_] = ACTIONS(4328), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4334), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(4336), + [sym_name] = ACTIONS(4338), }, [1492] = { - [sym__newline] = ACTIONS(4197), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2802), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4340), }, [1493] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(4199), - [anon_sym_overlap] = ACTIONS(4201), - [anon_sym_] = ACTIONS(4201), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4201), - [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_instance] = ACTIONS(4201), - [sym__dedent] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4199), - [sym_name] = ACTIONS(4201), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2803), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4340), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1494] = { - [sym__newline] = ACTIONS(4203), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2804), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4203), }, [1495] = { - [sym__field_name] = STATE(586), - [sym_type_sig_instance] = STATE(583), - [aux_sym__type_sig_block_repeat1] = STATE(1495), - [aux_sym__arg_names_repeat1] = STATE(586), - [sym__arg_names] = STATE(585), - [sym__arg_name] = STATE(586), - [sym_type_sig] = STATE(583), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4205), - [anon_sym_overlap] = ACTIONS(4208), - [anon_sym_] = ACTIONS(4211), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4214), - [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(4217), - [anon_sym_instance] = ACTIONS(4220), - [sym__dedent] = ACTIONS(4199), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [sym_name] = ACTIONS(4226), + [sym__atom_curly] = STATE(2815), + [sym__atom_no_curly] = STATE(2815), + [sym_literal] = STATE(2805), + [aux_sym__open_args1_repeat1] = STATE(2816), + [sym_record_assignments] = STATE(2805), + [sym_atom] = STATE(2816), + [sym__atoms1] = STATE(2817), + [anon_sym__] = ACTIONS(4342), + [anon_sym_quoteTerm] = ACTIONS(4342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4346), + [anon_sym_QMARK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4348), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4350), + [sym_qualified_name] = ACTIONS(4342), + [anon_sym_quote] = ACTIONS(4342), + [anon_sym_3] = ACTIONS(4352), + [anon_sym_Prop] = ACTIONS(4342), + [sym__const_ellipsis] = ACTIONS(4342), + [anon_sym_record] = ACTIONS(4354), + [anon_sym_] = ACTIONS(4356), + [anon_sym_unquote] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_LBRACE] = ACTIONS(4360), + [aux_sym_string_token1] = ACTIONS(4362), + [anon_sym_Set] = ACTIONS(4342), }, [1496] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(2650), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), + [sym_primitive] = STATE(2819), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2819), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2819), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2819), + [sym_abstract] = STATE(2819), + [sym_private] = STATE(2819), + [sym_function_clause] = STATE(2819), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_open] = STATE(2819), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2820), + [sym_infix] = STATE(2819), + [sym_data] = STATE(2819), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_instance] = STATE(2819), + [sym_macro] = STATE(2819), + [sym_test] = STATE(2819), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2819), + [sym_record_signature_only] = STATE(2819), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2819), + [sym_syntax] = STATE(2819), + [sym_record] = STATE(2819), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2819), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2819), + [sym_mutual] = STATE(2819), + [sym_postulate] = STATE(2819), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(4364), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1497] = { - [sym__field_name] = STATE(1497), - [sym__arg_name] = STATE(1497), - [aux_sym__arg_names_repeat1] = STATE(1497), - [anon_sym_COLON] = ACTIONS(4229), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4231), - [anon_sym_] = ACTIONS(4234), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4237), - [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_DOT_DOT] = ACTIONS(4243), - [sym_name] = ACTIONS(4246), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2822), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4366), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1498] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2823), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1499] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(1300), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2824), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4368), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1500] = { - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4281), + [sym__atom_curly] = STATE(1503), + [sym__atom_no_curly] = STATE(1503), + [sym_literal] = STATE(1488), + [sym_record_assignments] = STATE(1488), + [sym_atom] = STATE(2801), + [anon_sym__] = ACTIONS(2456), + [anon_sym_quoteTerm] = ACTIONS(2456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2464), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2460), + [anon_sym_QMARK] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2466), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2468), + [sym_qualified_name] = ACTIONS(2456), + [anon_sym_quote] = ACTIONS(2456), + [anon_sym_3] = ACTIONS(2476), + [anon_sym_Prop] = ACTIONS(2456), + [sym__const_ellipsis] = ACTIONS(2456), + [anon_sym_record] = ACTIONS(2474), + [anon_sym_] = ACTIONS(2478), + [anon_sym_unquote] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [aux_sym_string_token1] = ACTIONS(2486), + [anon_sym_Set] = ACTIONS(2456), }, [1501] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2826), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4370), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1502] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2827), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1503] = { + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4283), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1504] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(1404), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym_literal] = STATE(1488), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1505), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1503), + [sym__atom_no_curly] = STATE(1503), + [sym_record_assignments] = STATE(1488), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(2456), + [anon_sym_quoteTerm] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(2460), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(2456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LPAREN_PIPE] = ACTIONS(2468), + [sym_qualified_name] = ACTIONS(2456), + [anon_sym_quote] = ACTIONS(2456), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(2474), + [sym__const_ellipsis] = ACTIONS(2456), + [anon_sym_3] = ACTIONS(2476), + [anon_sym_] = ACTIONS(2478), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [anon_sym_Set] = ACTIONS(2456), + [sym_pragma] = ACTIONS(3), }, [1505] = { - [sym_literal] = STATE(660), - [sym__field_assignments1] = STATE(2695), - [sym_field_assignment] = STATE(1420), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1421), - [sym__atom_no_curly] = STATE(672), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym_do] = STATE(1421), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [sym__application] = STATE(1421), - [sym__expr2] = STATE(1421), - [sym_lambda] = STATE(1421), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2326), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(4283), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1506] = { - [anon_sym_COLON] = ACTIONS(4317), - [anon_sym_where] = ACTIONS(2334), + [sym_literal] = STATE(1488), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1503), + [sym__atom_no_curly] = STATE(1503), + [aux_sym__open_args1_repeat1] = STATE(1504), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1505), + [sym_record_assignments] = STATE(1488), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(2456), + [anon_sym_quoteTerm] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(2460), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(2456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2468), + [sym_qualified_name] = ACTIONS(2456), + [anon_sym_quote] = ACTIONS(2456), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(2474), + [sym__const_ellipsis] = ACTIONS(2456), + [anon_sym_3] = ACTIONS(2476), + [anon_sym_] = ACTIONS(2478), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [anon_sym_Set] = ACTIONS(2456), }, [1507] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(119), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [1508] = { - [sym__newline] = ACTIONS(4319), - [anon_sym_COLON] = ACTIONS(4319), - [anon_sym_with] = ACTIONS(4319), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4319), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4319), - [anon_sym_where] = ACTIONS(4319), - [anon_sym_rewrite] = ACTIONS(4319), - [anon_sym_module] = ACTIONS(4319), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2829), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4372), }, [1509] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(4321), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4374), }, [1510] = { - [sym_hole_name] = STATE(1478), - [aux_sym_syntax_repeat1] = STATE(1478), - [anon_sym_LBRACE_LBRACE] = ACTIONS(887), - [anon_sym_] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(4323), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(883), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [1511] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1029), + [sym_anonymous_name] = STATE(2837), + [sym_typed_binding] = STATE(2838), + [sym_untyped_binding] = STATE(2838), + [sym__lambda_binding] = STATE(2839), + [sym__binding_name] = STATE(2840), + [anon_sym__] = ACTIONS(4376), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4378), + [anon_sym_] = ACTIONS(4380), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4386), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [sym_name] = ACTIONS(4390), }, [1512] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(1139), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2841), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(4372), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1513] = { - [sym__binding_name] = STATE(2700), - [aux_sym_infix_repeat1] = STATE(2700), - [sym_anonymous_name] = STATE(1512), - [sym__newline] = ACTIONS(2390), - [anon_sym__] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(4325), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2440), + [sym__atom_curly] = STATE(2852), + [sym__atom_no_curly] = STATE(2852), + [sym_literal] = STATE(2842), + [aux_sym__open_args1_repeat1] = STATE(2853), + [sym_record_assignments] = STATE(2842), + [sym_atom] = STATE(2853), + [sym__atoms1] = STATE(2854), + [anon_sym__] = ACTIONS(4392), + [anon_sym_quoteTerm] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4394), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4396), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4398), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4400), + [sym_qualified_name] = ACTIONS(4392), + [anon_sym_quote] = ACTIONS(4392), + [anon_sym_3] = ACTIONS(4402), + [anon_sym_Prop] = ACTIONS(4392), + [sym__const_ellipsis] = ACTIONS(4392), + [anon_sym_record] = ACTIONS(4404), + [anon_sym_] = ACTIONS(4406), + [anon_sym_unquote] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4410), + [aux_sym_string_token1] = ACTIONS(4412), + [anon_sym_Set] = ACTIONS(4392), }, [1514] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(4327), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [1515] = { - [sym_primitive] = STATE(2702), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2702), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2702), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(2702), - [sym_abstract] = STATE(2702), - [sym_private] = STATE(2702), - [sym_function_clause] = STATE(2702), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(2856), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2856), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2856), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2856), + [sym_abstract] = STATE(2856), + [sym_private] = STATE(2856), + [sym_function_clause] = STATE(2856), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2702), + [sym_open] = STATE(2856), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2857), + [sym_infix] = STATE(2856), + [sym_data] = STATE(2856), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2702), - [sym_data] = STATE(2702), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2702), - [sym_macro] = STATE(2702), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2702), - [sym_record_signature_only] = STATE(2702), - [sym_atom] = STATE(158), + [sym_instance] = STATE(2856), + [sym_macro] = STATE(2856), + [sym_test] = STATE(2856), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2856), + [sym_record_signature_only] = STATE(2856), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2856), + [sym_syntax] = STATE(2856), + [sym_record] = STATE(2856), [sym_do] = STATE(43), - [sym_pattern] = STATE(2702), - [sym_syntax] = STATE(2702), - [sym_record] = STATE(2702), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2702), - [sym_generalize] = STATE(2702), - [sym_mutual] = STATE(2702), - [sym_postulate] = STATE(2702), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2856), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2856), + [sym_mutual] = STATE(2856), + [sym_postulate] = STATE(2856), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(4414), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [1515] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2859), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4416), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1516] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2860), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1517] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(4327), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2861), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4418), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1518] = { - [anon_sym_COLON] = ACTIONS(4329), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2862), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4331), }, [1519] = { - [anon_sym_COLON] = ACTIONS(4333), - [anon_sym_2] = ACTIONS(4331), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_literal] = STATE(1507), + [sym_record_assignments] = STATE(1507), + [sym_atom] = STATE(2828), + [anon_sym__] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4420), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2494), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(4422), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_Prop] = ACTIONS(2488), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_record] = ACTIONS(2504), + [anon_sym_] = ACTIONS(4424), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4428), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), }, [1520] = { - [sym_do] = STATE(2706), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2706), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2706), - [sym_lambda] = STATE(2706), - [sym__application] = STATE(2706), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2869), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1521] = { - [sym_do] = STATE(2707), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2707), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(2707), - [sym_lambda] = STATE(2707), - [sym__application] = STATE(2707), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(2870), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1522] = { - [sym_do] = STATE(2708), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2708), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(2708), - [sym_lambda] = STATE(2708), - [sym__application] = STATE(2708), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [1523] = { - [sym_do] = STATE(2709), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2709), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(2709), - [sym_lambda] = STATE(2709), - [sym__application] = STATE(2709), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_literal] = STATE(1507), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1525), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_record_assignments] = STATE(1507), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_] = ACTIONS(4432), + [anon_sym__] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4436), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4438), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), }, [1524] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_rewrite] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [sym__const_right_arrow] = ACTIONS(4440), + [anon_sym_PIPE] = ACTIONS(479), }, [1525] = { - [anon_sym_RPAREN] = ACTIONS(4335), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [1526] = { - [anon_sym_COLON] = ACTIONS(4337), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4440), }, [1527] = { - [anon_sym_COLON] = ACTIONS(4339), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4331), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(2876), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2886), + [sym__atom_no_curly] = STATE(2886), + [aux_sym__open_args1_repeat1] = STATE(2887), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2888), + [sym_record_assignments] = STATE(2876), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(4442), + [anon_sym_quoteTerm] = ACTIONS(4442), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(4444), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4450), + [sym_qualified_name] = ACTIONS(4442), + [anon_sym_quote] = ACTIONS(4442), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(4442), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(4452), + [sym__const_ellipsis] = ACTIONS(4442), + [anon_sym_3] = ACTIONS(4454), + [anon_sym_] = ACTIONS(4456), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(4462), + [anon_sym_Set] = ACTIONS(4442), }, [1528] = { - [sym_do] = STATE(2713), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(2713), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(2713), - [sym_lambda] = STATE(2713), - [sym__application] = STATE(2713), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [sym_name] = ACTIONS(2157), }, [1529] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_DOT_DOT] = ACTIONS(2534), + [sym_name] = ACTIONS(2532), }, [1530] = { - [sym_literal] = STATE(1532), - [sym_atom] = STATE(1546), - [sym__atom_curly] = STATE(1543), - [sym_import_directive] = STATE(2714), - [aux_sym_module_macro_repeat1] = STATE(2714), - [sym__open_args1] = STATE(2715), - [sym__atom_no_curly] = STATE(1543), - [sym_record_assignments] = STATE(1532), - [aux_sym__open_args1_repeat1] = STATE(1546), - [sym__open_as] = STATE(2716), - [sym__newline] = ACTIONS(2842), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(4341), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_3] = ACTIONS(2482), - [anon_sym_public] = ACTIONS(1191), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4464), + [sym_pragma] = ACTIONS(3), }, [1531] = { - [sym_typed_binding] = STATE(1825), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(1825), - [sym__typed_untyped_binding1] = STATE(2718), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(1825), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2844), - [anon_sym_] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(4343), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2852), + [sym__field_assignments1] = STATE(2890), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(4464), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), }, [1532] = { - [sym__newline] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [sym_name] = ACTIONS(1425), + }, + [1533] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4466), + [sym_pragma] = ACTIONS(3), + }, + [1534] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2892), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), + }, + [1535] = { + [sym__module_name] = STATE(558), + [sym_module_assignment] = STATE(2893), + [sym_field_assignment] = STATE(2893), + [sym_qualified_name] = ACTIONS(853), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [1536] = { + [aux_sym__record_assignments1_repeat1] = STATE(2894), + [anon_sym_SEMI] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4468), + [sym_pragma] = ACTIONS(3), + }, + [1537] = { [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_renaming] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), [anon_sym_using] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [anon_sym_hiding] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_public] = ACTIONS(119), }, - [1533] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2720), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4345), - }, - [1534] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_renaming] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_using] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_hiding] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_public] = ACTIONS(253), - }, - [1535] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2721), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4345), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1536] = { - [sym__module_name] = STATE(2723), - [sym_qualified_name] = ACTIONS(4347), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [1537] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2725), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4349), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, [1538] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2726), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4351), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2896), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4470), }, [1539] = { - [sym__atom_no_curly] = STATE(1543), - [sym_literal] = STATE(1532), - [sym_record_assignments] = STATE(1532), - [sym__atom_curly] = STATE(1543), - [sym_atom] = STATE(2719), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_3] = ACTIONS(2482), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), + [anon_sym_RPAREN] = ACTIONS(295), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_renaming] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_using] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_hiding] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_public] = ACTIONS(293), }, [1540] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2727), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2897), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4470), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1541] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2729), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2898), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1542] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2730), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4472), }, [1543] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_renaming] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_using] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_hiding] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2901), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4474), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1544] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2842), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(4476), }, [1545] = { - [sym_import_directive] = STATE(2714), - [aux_sym_module_macro_repeat1] = STATE(2714), - [sym__newline] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2903), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [1546] = { - [sym__atom_no_curly] = STATE(1543), - [sym_literal] = STATE(1532), - [sym_record_assignments] = STATE(1532), - [sym__atom_curly] = STATE(1543), - [sym_atom] = STATE(2732), - [aux_sym__open_args1_repeat1] = STATE(2732), - [sym__newline] = ACTIONS(2876), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(2878), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2904), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4478), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [1547] = { + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(2895), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2564), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + }, + [1548] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2906), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4480), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [1549] = { + [anon_sym_using] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(2878), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(2878), - [anon_sym_3] = ACTIONS(2482), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2824), + [anon_sym_hiding] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_renaming] = ACTIONS(2824), }, - [1547] = { - [sym_literal] = STATE(1532), - [sym_atom] = STATE(1546), - [sym__atom_curly] = STATE(1543), - [sym_import_directive] = STATE(2714), - [aux_sym_module_macro_repeat1] = STATE(2714), - [sym__open_args1] = STATE(2715), - [sym__atom_no_curly] = STATE(1543), - [sym_record_assignments] = STATE(1532), - [aux_sym__open_args1_repeat1] = STATE(1546), - [sym__newline] = ACTIONS(2842), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(4341), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), + [1550] = { + [sym_import_directive] = STATE(2907), + [aux_sym_module_macro_repeat1] = STATE(2907), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_3] = ACTIONS(2482), - [anon_sym_public] = ACTIONS(1191), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), }, - [1548] = { - [anon_sym_LBRACE] = ACTIONS(4355), + [1551] = { + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_renaming] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_using] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_hiding] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_public] = ACTIONS(411), + }, + [1552] = { + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(2908), + [aux_sym__open_args1_repeat1] = STATE(2908), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_renaming] = ACTIONS(2834), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_Prop] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2834), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2834), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2834), + }, + [1553] = { + [sym_import_directive] = STATE(2909), + [aux_sym_module_macro_repeat1] = STATE(2909), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4484), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), }, - [1549] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [1554] = { + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, - [1550] = { + [1555] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_rewrite] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), - }, - [1551] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2735), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4357), - }, - [1552] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_rewrite] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [1553] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2736), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(4357), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [1554] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2738), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4359), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [1555] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2739), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4361), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_Set] = ACTIONS(119), }, [1556] = { - [sym__atom_no_curly] = STATE(1561), - [sym_literal] = STATE(1550), - [sym_record_assignments] = STATE(1550), - [sym__atom_curly] = STATE(1561), - [sym_atom] = STATE(2734), - [anon_sym__] = ACTIONS(2486), - [anon_sym_unquote] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4363), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(4365), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [anon_sym_] = ACTIONS(4367), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(4371), - [anon_sym_3] = ACTIONS(2506), - [aux_sym_string_token1] = ACTIONS(2504), - [anon_sym_Prop] = ACTIONS(2486), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2911), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4494), }, [1557] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2745), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1558] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2747), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2912), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(4494), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1559] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2748), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(2914), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4496), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1560] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(2915), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4375), }, [1561] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_rewrite] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2916), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4498), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1562] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_literal] = STATE(1550), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1561), - [sym_record_assignments] = STATE(1550), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(191), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [anon_sym_] = ACTIONS(4377), - [anon_sym__] = ACTIONS(2486), - [anon_sym_unquote] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4381), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2917), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1563] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_rewrite] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_literal] = STATE(1555), + [sym_record_assignments] = STATE(1555), + [sym_atom] = STATE(2910), + [anon_sym__] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4500), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2576), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(4502), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_Prop] = ACTIONS(2572), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_record] = ACTIONS(2580), + [anon_sym_] = ACTIONS(4504), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4508), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), }, [1564] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4375), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2924), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4510), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1565] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1566] = { + [sym__newline] = ACTIONS(4512), + [anon_sym_in] = ACTIONS(4512), + [anon_sym_where] = ACTIONS(4514), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4385), }, [1567] = { - [anon_sym_RPAREN] = ACTIONS(4385), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(1555), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1569), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_record_assignments] = STATE(1555), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_] = ACTIONS(4516), + [anon_sym__] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4518), + [anon_sym_LPAREN] = ACTIONS(4520), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4522), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), }, [1568] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2756), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4387), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4524), + [anon_sym_PIPE] = ACTIONS(479), }, [1569] = { - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [1570] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4385), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4524), }, [1571] = { + [anon_sym_COLON] = ACTIONS(4526), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4385), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4528), }, [1572] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - }, - [1573] = { + [anon_sym_COLON] = ACTIONS(4530), + [anon_sym_2] = ACTIONS(4528), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4391), [sym_pragma] = ACTIONS(3), }, + [1573] = { + [sym__expr2] = STATE(2934), + [sym_do] = STATE(2934), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2934), + [sym_lambda] = STATE(2934), + [sym__application] = STATE(2934), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, [1574] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4385), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(2935), + [sym_do] = STATE(2935), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2935), + [sym_lambda] = STATE(2935), + [sym__application] = STATE(2935), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1575] = { - [sym__atom_no_curly] = STATE(632), - [sym_literal] = STATE(622), - [sym_record_assignments] = STATE(622), - [sym__atom_curly] = STATE(632), - [sym_atom] = STATE(1575), - [aux_sym__open_args1_repeat1] = STATE(1575), - [sym__newline] = ACTIONS(3096), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4393), - [anon_sym_quoteTerm] = ACTIONS(4393), - [anon_sym_quote] = ACTIONS(4393), - [sym__const_ellipsis] = ACTIONS(4393), - [anon_sym_record] = ACTIONS(4396), - [anon_sym_QMARK] = ACTIONS(4393), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(4399), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym__] = ACTIONS(4393), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4402), - [anon_sym_unquote] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(4405), - [anon_sym_Set] = ACTIONS(4393), - [anon_sym_LPAREN] = ACTIONS(4408), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LPAREN_PIPE] = ACTIONS(4414), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_3] = ACTIONS(4420), - [aux_sym_string_token1] = ACTIONS(4423), - [anon_sym_Prop] = ACTIONS(4393), - [anon_sym_rewrite] = ACTIONS(1683), - [anon_sym_module] = ACTIONS(1683), + [sym__expr2] = STATE(2936), + [sym_do] = STATE(2936), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2936), + [sym_lambda] = STATE(2936), + [sym__application] = STATE(2936), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1576] = { - [sym_literal] = STATE(641), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(652), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(153), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(651), - [sym__atom_curly] = STATE(652), - [sym_record_assignments] = STATE(641), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(997), - [anon_sym_unquote] = ACTIONS(997), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(999), - [anon_sym_Set] = ACTIONS(997), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(997), - [anon_sym_quoteTerm] = ACTIONS(997), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(997), - [sym__const_ellipsis] = ACTIONS(997), - [anon_sym_record] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_LPAREN_PIPE] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(1015), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(997), - [anon_sym_3] = ACTIONS(1017), + [sym__expr2] = STATE(2937), + [sym_do] = STATE(2937), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2937), + [sym_lambda] = STATE(2937), + [sym__application] = STATE(2937), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1577] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(1998), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym_name] = ACTIONS(2862), }, [1578] = { - [anon_sym_COLON] = ACTIONS(4426), - [anon_sym_where] = ACTIONS(2958), + [anon_sym_COLON] = ACTIONS(4532), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1579] = { - [sym_module_application] = STATE(2761), - [sym_qualified_name] = ACTIONS(4428), + [anon_sym_RPAREN] = ACTIONS(4534), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1580] = { - [anon_sym_where] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4430), - [sym_pragma] = ACTIONS(3), - }, - [1581] = { - [sym__newline] = ACTIONS(4432), - [anon_sym_COLON] = ACTIONS(4432), - [anon_sym_with] = ACTIONS(4432), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(4432), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_rewrite] = ACTIONS(4432), - [anon_sym_module] = ACTIONS(4432), - }, - [1582] = { - [sym__newline] = ACTIONS(121), + [anon_sym_COLON] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(2530), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + }, + [1581] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4536), + [sym_pragma] = ACTIONS(3), + }, + [1582] = { + [aux_sym__field_assignments1_repeat1] = STATE(2942), + [anon_sym_SEMI] = ACTIONS(4538), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4540), + [sym_pragma] = ACTIONS(3), }, [1583] = { - [sym_primitive] = STATE(2763), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2763), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2763), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2764), - [sym_field] = STATE(2763), - [sym_abstract] = STATE(2763), - [sym_private] = STATE(2763), - [sym_function_clause] = STATE(2763), - [sym_lhs_decl] = STATE(155), + [anon_sym_COLON] = ACTIONS(4542), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4528), + [sym_pragma] = ACTIONS(3), + }, + [1584] = { + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym_postulate] = STATE(323), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym_module_macro] = STATE(323), + [sym__atom_curly] = STATE(37), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [sym_record_constructor_instance] = STATE(2949), + [sym__record_directive] = STATE(2949), + [aux_sym_record_declarations_block_repeat1] = STATE(2950), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2763), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(2951), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2763), - [sym_data] = STATE(2763), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2763), - [sym_macro] = STATE(2763), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2763), - [sym_record_signature_only] = STATE(2763), - [sym_atom] = STATE(158), + [sym_record_constructor] = STATE(2949), + [sym_record_induction] = STATE(2949), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__atoms1] = STATE(47), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), [sym_do] = STATE(43), - [sym_pattern] = STATE(2763), - [sym_syntax] = STATE(2763), - [sym_record] = STATE(2763), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2763), - [sym_generalize] = STATE(2763), - [sym_mutual] = STATE(2763), - [sym_postulate] = STATE(2763), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4434), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1584] = { - [sym_typed_binding] = STATE(2772), - [sym_anonymous_name] = STATE(2771), - [sym_untyped_binding] = STATE(2772), - [sym__lambda_binding] = STATE(2773), - [sym__binding_name] = STATE(2774), - [anon_sym__] = ACTIONS(4436), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4438), - [anon_sym_] = ACTIONS(4440), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4446), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [sym_name] = ACTIONS(4450), + [sym_record_eta] = STATE(2949), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [anon_sym_inductive] = ACTIONS(4544), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_no_DASHeta_DASHequality] = ACTIONS(4546), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_coinductive] = ACTIONS(4544), + [anon_sym_instance] = ACTIONS(4548), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [anon_sym_constructor] = ACTIONS(4550), + [sym__dedent] = ACTIONS(4552), + [anon_sym_infixl] = ACTIONS(29), + [sym_comment] = ACTIONS(3), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_eta_DASHequality] = ACTIONS(4546), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [1585] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__newline] = ACTIONS(4554), + [anon_sym_in] = ACTIONS(4554), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1586] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(2952), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4452), }, [1587] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2777), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4454), + [sym_record_declarations_block] = STATE(2953), + [sym__newline] = ACTIONS(4554), + [anon_sym_in] = ACTIONS(4554), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(2606), + [sym_pragma] = ACTIONS(3), }, [1588] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2778), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4454), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_anonymous_name] = STATE(568), + [sym_typed_binding] = STATE(1588), + [sym_untyped_binding] = STATE(1588), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(1588), + [sym__binding_name] = STATE(571), + [anon_sym_COLON] = ACTIONS(3117), + [anon_sym__] = ACTIONS(4556), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4559), + [anon_sym_] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4571), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(4574), + [sym_name] = ACTIONS(4577), }, [1589] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2780), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4456), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_4] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [1590] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2781), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4458), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1591] = { - [sym__atom_no_curly] = STATE(1598), - [sym_literal] = STATE(1582), - [sym_record_assignments] = STATE(1582), - [sym__atom_curly] = STATE(1598), - [sym_atom] = STATE(2776), - [anon_sym__] = ACTIONS(2522), - [anon_sym_unquote] = ACTIONS(2522), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2528), - [anon_sym_Set] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_COLON] = ACTIONS(4580), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2522), - [anon_sym_quoteTerm] = ACTIONS(2522), - [anon_sym_quote] = ACTIONS(2522), - [sym__const_ellipsis] = ACTIONS(2522), - [anon_sym_record] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_LPAREN_PIPE] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_3] = ACTIONS(2552), - [aux_sym_string_token1] = ACTIONS(2548), - [anon_sym_Prop] = ACTIONS(2522), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4582), }, [1592] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2782), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(4584), + [anon_sym_2] = ACTIONS(4582), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1593] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2784), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(2957), + [sym_do] = STATE(2957), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2957), + [sym_lambda] = STATE(2957), + [sym__application] = STATE(2957), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1594] = { - [sym__atom_no_curly] = STATE(2795), - [sym_literal] = STATE(2785), - [aux_sym__open_args1_repeat1] = STATE(2796), - [sym__atom_curly] = STATE(2795), - [sym_record_assignments] = STATE(2785), - [sym_atom] = STATE(2796), - [sym__atoms1] = STATE(2797), - [anon_sym__] = ACTIONS(4462), - [anon_sym_unquote] = ACTIONS(4462), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4464), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4466), - [anon_sym_Set] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4468), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4462), - [anon_sym_quoteTerm] = ACTIONS(4462), - [anon_sym_quote] = ACTIONS(4462), - [sym__const_ellipsis] = ACTIONS(4462), - [anon_sym_record] = ACTIONS(4470), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_] = ACTIONS(4472), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_LPAREN_PIPE] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_3] = ACTIONS(4480), - [aux_sym_string_token1] = ACTIONS(4482), - [anon_sym_Prop] = ACTIONS(4462), + [sym__expr2] = STATE(2958), + [sym_do] = STATE(2958), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2958), + [sym_lambda] = STATE(2958), + [sym__application] = STATE(2958), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1595] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2798), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__expr2] = STATE(2959), + [sym_do] = STATE(2959), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2959), + [sym_lambda] = STATE(2959), + [sym__application] = STATE(2959), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1596] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2799), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__expr2] = STATE(2960), + [sym_do] = STATE(2960), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2960), + [sym_lambda] = STATE(2960), + [sym__application] = STATE(2960), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1597] = { - [sym_literal] = STATE(1582), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(1598), - [aux_sym__open_args1_repeat1] = STATE(1599), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1600), - [sym__atom_curly] = STATE(1598), - [sym_record_assignments] = STATE(1582), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2522), - [anon_sym_unquote] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(2528), - [anon_sym_Set] = ACTIONS(2522), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_4] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2522), - [anon_sym_quoteTerm] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2522), - [sym__const_ellipsis] = ACTIONS(2522), - [anon_sym_record] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_LPAREN_PIPE] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(2548), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2522), - [anon_sym_3] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [1598] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4586), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1599] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1600), - [sym__atom_curly] = STATE(1598), - [sym_literal] = STATE(1582), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1598), - [sym_record_assignments] = STATE(1582), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(2522), - [anon_sym_unquote] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(2528), - [anon_sym_Set] = ACTIONS(2522), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(4588), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2522), - [anon_sym_quoteTerm] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2522), - [sym__const_ellipsis] = ACTIONS(2522), - [anon_sym_record] = ACTIONS(2536), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_LPAREN_PIPE] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(2548), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2522), - [anon_sym_3] = ACTIONS(2552), }, [1600] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4582), + [sym_pragma] = ACTIONS(3), }, [1601] = { - [sym__newline] = ACTIONS(121), + [sym__expr2] = STATE(2964), + [sym_do] = STATE(2964), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2964), + [sym_lambda] = STATE(2964), + [sym__application] = STATE(2964), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), }, [1602] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2801), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4484), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1603] = { - [sym_primitive] = STATE(2803), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2803), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2803), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2804), - [sym_field] = STATE(2803), - [sym_abstract] = STATE(2803), - [sym_private] = STATE(2803), - [sym_function_clause] = STATE(2803), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2803), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2803), - [sym_data] = STATE(2803), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2803), - [sym_macro] = STATE(2803), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2803), - [sym_record_signature_only] = STATE(2803), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2803), - [sym_syntax] = STATE(2803), - [sym_record] = STATE(2803), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2803), - [sym_generalize] = STATE(2803), - [sym_mutual] = STATE(2803), - [sym_postulate] = STATE(2803), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4486), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_4] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1604] = { - [sym_typed_binding] = STATE(2812), - [sym_anonymous_name] = STATE(2811), - [sym_untyped_binding] = STATE(2812), - [sym__lambda_binding] = STATE(2813), - [sym__binding_name] = STATE(2814), - [anon_sym__] = ACTIONS(4488), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4490), - [anon_sym_] = ACTIONS(4492), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_LBRACE] = ACTIONS(4498), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [sym_name] = ACTIONS(4502), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4592), }, [1605] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1606] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2815), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(4484), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_PIPE_RPAREN] = ACTIONS(4592), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1607] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4504), + [anon_sym_4] = ACTIONS(4592), }, [1608] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2818), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4506), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2967), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4594), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1609] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2819), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4508), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(4596), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1610] = { - [sym__atom_no_curly] = STATE(1618), - [sym_literal] = STATE(1601), - [sym_record_assignments] = STATE(1601), - [sym__atom_curly] = STATE(1618), - [sym_atom] = STATE(2800), - [anon_sym__] = ACTIONS(2554), - [anon_sym_unquote] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4510), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(4512), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [anon_sym_] = ACTIONS(4514), - [anon_sym_DOT] = ACTIONS(4516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(4518), - [anon_sym_3] = ACTIONS(2584), - [aux_sym_string_token1] = ACTIONS(2580), - [anon_sym_Prop] = ACTIONS(2554), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4592), + [sym_pragma] = ACTIONS(3), }, [1611] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2825), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_4] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1612] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2827), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4598), + [sym_pragma] = ACTIONS(3), }, [1613] = { - [sym__atom_no_curly] = STATE(2838), - [sym_literal] = STATE(2828), - [aux_sym__open_args1_repeat1] = STATE(2839), - [sym__atom_curly] = STATE(2838), - [sym_record_assignments] = STATE(2828), - [sym_atom] = STATE(2839), - [sym__atoms1] = STATE(2840), - [anon_sym__] = ACTIONS(4522), - [anon_sym_unquote] = ACTIONS(4522), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4524), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4526), - [anon_sym_Set] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4528), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4522), - [anon_sym_quoteTerm] = ACTIONS(4522), - [anon_sym_quote] = ACTIONS(4522), - [sym__const_ellipsis] = ACTIONS(4522), - [anon_sym_record] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4522), - [anon_sym_] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_LPAREN_PIPE] = ACTIONS(4536), - [anon_sym_LBRACE] = ACTIONS(4538), - [anon_sym_3] = ACTIONS(4540), - [aux_sym_string_token1] = ACTIONS(4542), - [anon_sym_Prop] = ACTIONS(4522), + [sym__atom_curly] = STATE(596), + [sym__atom_no_curly] = STATE(596), + [sym_literal] = STATE(586), + [sym_record_assignments] = STATE(586), + [sym_atom] = STATE(1613), + [aux_sym__open_args1_repeat1] = STATE(1613), + [anon_sym__] = ACTIONS(4600), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4603), + [anon_sym_quoteTerm] = ACTIONS(4600), + [anon_sym_4] = ACTIONS(1527), + [aux_sym_integer_token1] = ACTIONS(4606), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4612), + [sym_qualified_name] = ACTIONS(4600), + [anon_sym_quote] = ACTIONS(4600), + [anon_sym_3] = ACTIONS(4615), + [anon_sym_Prop] = ACTIONS(4600), + [sym__const_ellipsis] = ACTIONS(4600), + [anon_sym_record] = ACTIONS(4618), + [anon_sym_] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_unquote] = ACTIONS(4600), + [anon_sym_LBRACE] = ACTIONS(4627), + [aux_sym_string_token1] = ACTIONS(4630), + [anon_sym_Set] = ACTIONS(4600), }, [1614] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2841), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_literal] = STATE(620), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(630), + [sym__atom_no_curly] = STATE(630), + [aux_sym__open_args1_repeat1] = STATE(631), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(632), + [sym_record_assignments] = STATE(620), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(951), + [anon_sym_quoteTerm] = ACTIONS(951), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(953), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_LBRACE_LBRACE] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(959), + [sym_qualified_name] = ACTIONS(951), + [anon_sym_quote] = ACTIONS(951), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(951), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(961), + [sym__const_ellipsis] = ACTIONS(951), + [anon_sym_3] = ACTIONS(963), + [anon_sym_] = ACTIONS(965), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(969), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(971), + [anon_sym_Set] = ACTIONS(951), }, [1615] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2842), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [1616] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(4633), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4544), + }, + [1616] = { + [sym_primitive] = STATE(2971), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2971), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2971), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2971), + [sym_abstract] = STATE(2971), + [sym_private] = STATE(2971), + [sym_function_clause] = STATE(2971), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2971), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(2971), + [sym_data] = STATE(2971), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2971), + [sym_macro] = STATE(2971), + [sym_test] = STATE(2971), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2971), + [sym_record_signature_only] = STATE(2971), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2971), + [sym_syntax] = STATE(2971), + [sym_record] = STATE(2971), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2971), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2971), + [sym_mutual] = STATE(2971), + [sym_postulate] = STATE(2971), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1617] = { - [sym_literal] = STATE(2844), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2854), - [aux_sym__open_args1_repeat1] = STATE(2855), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2856), - [sym__atom_curly] = STATE(2854), - [sym_record_assignments] = STATE(2844), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4546), - [anon_sym_unquote] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(4548), - [anon_sym_Set] = ACTIONS(4546), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4552), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4546), - [anon_sym_quoteTerm] = ACTIONS(4546), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4546), - [sym__const_ellipsis] = ACTIONS(4546), - [anon_sym_record] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_LPAREN_PIPE] = ACTIONS(4560), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(4564), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(4546), - [anon_sym_3] = ACTIONS(4566), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1618] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(4633), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1619] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_literal] = STATE(1601), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1618), - [sym_record_assignments] = STATE(1601), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2566), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [anon_sym_] = ACTIONS(4568), - [anon_sym__] = ACTIONS(2554), - [anon_sym_unquote] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4570), - [anon_sym_LPAREN] = ACTIONS(4572), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(4574), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_4] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [1620] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_pragma] = ACTIONS(3), }, [1621] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__field_assignments1] = STATE(2973), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(4635), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4544), }, [1622] = { - [sym__newline] = ACTIONS(811), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_4] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [1623] = { - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4576), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_4] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1624] = { - [anon_sym_RPAREN] = ACTIONS(4576), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4637), }, [1625] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(2863), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_RPAREN] = ACTIONS(4637), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1626] = { - [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_PIPE_RPAREN] = ACTIONS(4637), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1627] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2976), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4639), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4576), [sym_pragma] = ACTIONS(3), }, [1628] = { + [anon_sym_LBRACE] = ACTIONS(4641), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4576), }, [1629] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4637), }, [1630] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4582), + [anon_sym_2] = ACTIONS(4637), [sym_pragma] = ACTIONS(3), }, [1631] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4576), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_4] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1632] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(4643), + [sym_pragma] = ACTIONS(3), }, [1633] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4584), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [1634] = { - [sym_primitive] = STATE(2869), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2869), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2869), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2870), - [sym_field] = STATE(2869), - [sym_abstract] = STATE(2869), - [sym_private] = STATE(2869), - [sym_function_clause] = STATE(2869), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2869), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2869), - [sym_data] = STATE(2869), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2869), - [sym_macro] = STATE(2869), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2869), - [sym_record_signature_only] = STATE(2869), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2869), - [sym_syntax] = STATE(2869), - [sym_record] = STATE(2869), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2869), - [sym_generalize] = STATE(2869), - [sym_mutual] = STATE(2869), - [sym_postulate] = STATE(2869), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4586), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [1635] = { - [sym_typed_binding] = STATE(2878), - [sym_anonymous_name] = STATE(2877), - [sym_untyped_binding] = STATE(2878), - [sym__lambda_binding] = STATE(2879), - [sym__binding_name] = STATE(2880), - [anon_sym__] = ACTIONS(4588), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4590), - [anon_sym_] = ACTIONS(4592), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4594), - [anon_sym_LPAREN] = ACTIONS(4596), - [anon_sym_LBRACE] = ACTIONS(4598), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(4600), - [sym_name] = ACTIONS(4602), + [anon_sym_COLON] = ACTIONS(4645), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4647), }, [1636] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(4649), + [anon_sym_2] = ACTIONS(4647), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1637] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(4584), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(2982), + [sym_do] = STATE(2982), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2982), + [sym_lambda] = STATE(2982), + [sym__application] = STATE(2982), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1638] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4604), + [sym__expr2] = STATE(2983), + [sym_do] = STATE(2983), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(2983), + [sym_lambda] = STATE(2983), + [sym__application] = STATE(2983), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1639] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2884), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4606), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__expr2] = STATE(2984), + [sym_do] = STATE(2984), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(2984), + [sym_lambda] = STATE(2984), + [sym__application] = STATE(2984), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1640] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__expr2] = STATE(2985), + [sym_do] = STATE(2985), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(2985), + [sym_lambda] = STATE(2985), + [sym__application] = STATE(2985), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1641] = { - [sym__atom_no_curly] = STATE(1649), - [sym_literal] = STATE(1632), - [sym_record_assignments] = STATE(1632), - [sym__atom_curly] = STATE(1649), - [sym_atom] = STATE(2866), - [anon_sym__] = ACTIONS(2594), - [anon_sym_unquote] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4610), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(4612), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_] = ACTIONS(4614), - [anon_sym_DOT] = ACTIONS(4616), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(4618), - [anon_sym_3] = ACTIONS(2624), - [aux_sym_string_token1] = ACTIONS(2620), - [anon_sym_Prop] = ACTIONS(2594), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_2] = ACTIONS(2862), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [1642] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2891), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(4651), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1643] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(4653), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1644] = { - [sym__atom_no_curly] = STATE(2904), - [sym_literal] = STATE(2894), - [aux_sym__open_args1_repeat1] = STATE(2905), - [sym__atom_curly] = STATE(2904), - [sym_record_assignments] = STATE(2894), - [sym_atom] = STATE(2905), - [sym__atoms1] = STATE(2906), - [anon_sym__] = ACTIONS(4622), - [anon_sym_unquote] = ACTIONS(4622), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4626), - [anon_sym_Set] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4628), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4622), - [anon_sym_quoteTerm] = ACTIONS(4622), - [anon_sym_quote] = ACTIONS(4622), - [sym__const_ellipsis] = ACTIONS(4622), - [anon_sym_record] = ACTIONS(4630), - [anon_sym_QMARK] = ACTIONS(4622), - [anon_sym_] = ACTIONS(4632), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_LPAREN_PIPE] = ACTIONS(4636), - [anon_sym_LBRACE] = ACTIONS(4638), - [anon_sym_3] = ACTIONS(4640), - [aux_sym_string_token1] = ACTIONS(4642), - [anon_sym_Prop] = ACTIONS(4622), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4647), + [sym_pragma] = ACTIONS(3), }, [1645] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2907), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__expr2] = STATE(2989), + [sym_do] = STATE(2989), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(2989), + [sym_lambda] = STATE(2989), + [sym__application] = STATE(2989), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [1646] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2908), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [1647] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4644), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1648] = { - [sym_literal] = STATE(2910), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(2920), - [aux_sym__open_args1_repeat1] = STATE(2921), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2922), - [sym__atom_curly] = STATE(2920), - [sym_record_assignments] = STATE(2910), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4646), - [anon_sym_unquote] = ACTIONS(4646), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(4648), - [anon_sym_Set] = ACTIONS(4646), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4652), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4646), - [anon_sym_quoteTerm] = ACTIONS(4646), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4646), - [sym__const_ellipsis] = ACTIONS(4646), - [anon_sym_record] = ACTIONS(4654), - [anon_sym_QMARK] = ACTIONS(4646), - [anon_sym_] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_LPAREN_PIPE] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(4664), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(4646), - [anon_sym_3] = ACTIONS(4666), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4657), }, [1649] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1650] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_literal] = STATE(1632), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1649), - [sym_record_assignments] = STATE(1632), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2606), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_] = ACTIONS(4668), - [anon_sym__] = ACTIONS(2594), - [anon_sym_unquote] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4672), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4616), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [anon_sym_PIPE_RPAREN] = ACTIONS(4657), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1651] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4657), }, [1652] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(2992), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4659), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4644), }, [1653] = { - [anon_sym_COLON] = ACTIONS(119), - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(4661), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), }, [1654] = { - [sym_primitive] = STATE(2928), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2928), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2928), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2929), - [sym_field] = STATE(2928), - [sym_abstract] = STATE(2928), - [sym_private] = STATE(2928), - [sym_function_clause] = STATE(2928), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2928), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2928), - [sym_data] = STATE(2928), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2928), - [sym_macro] = STATE(2928), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2928), - [sym_record_signature_only] = STATE(2928), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2928), - [sym_syntax] = STATE(2928), - [sym_record] = STATE(2928), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2928), - [sym_generalize] = STATE(2928), - [sym_mutual] = STATE(2928), - [sym_postulate] = STATE(2928), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4676), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4657), + [sym_pragma] = ACTIONS(3), }, [1655] = { - [sym_typed_binding] = STATE(2937), - [sym_anonymous_name] = STATE(2936), - [sym_untyped_binding] = STATE(2937), - [sym__lambda_binding] = STATE(2938), - [sym__binding_name] = STATE(2939), - [anon_sym__] = ACTIONS(4678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4680), - [anon_sym_] = ACTIONS(4682), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4686), - [anon_sym_LBRACE] = ACTIONS(4688), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [sym_name] = ACTIONS(4692), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1656] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [1657] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4663), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4694), + }, + [1657] = { + [sym__atom_curly] = STATE(657), + [sym__atom_no_curly] = STATE(657), + [sym_literal] = STATE(647), + [sym_record_assignments] = STATE(647), + [sym_atom] = STATE(1657), + [aux_sym__open_args1_repeat1] = STATE(1657), + [anon_sym__] = ACTIONS(4665), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4668), + [anon_sym_quoteTerm] = ACTIONS(4665), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4671), + [anon_sym_QMARK] = ACTIONS(4665), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_2] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4677), + [sym_qualified_name] = ACTIONS(4665), + [anon_sym_quote] = ACTIONS(4665), + [anon_sym_3] = ACTIONS(4680), + [anon_sym_Prop] = ACTIONS(4665), + [sym__const_ellipsis] = ACTIONS(4665), + [anon_sym_record] = ACTIONS(4683), + [anon_sym_] = ACTIONS(4686), + [anon_sym_DOT] = ACTIONS(4689), + [anon_sym_unquote] = ACTIONS(4665), + [anon_sym_LBRACE] = ACTIONS(4692), + [aux_sym_string_token1] = ACTIONS(4695), + [anon_sym_Set] = ACTIONS(4665), }, [1658] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2942), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4696), + [sym_literal] = STATE(681), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(691), + [sym__atom_no_curly] = STATE(691), + [aux_sym__open_args1_repeat1] = STATE(692), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(693), + [sym_record_assignments] = STATE(681), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1047), + [anon_sym_quoteTerm] = ACTIONS(1047), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(1049), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1055), + [sym_qualified_name] = ACTIONS(1047), + [anon_sym_quote] = ACTIONS(1047), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(1057), + [sym__const_ellipsis] = ACTIONS(1047), + [anon_sym_3] = ACTIONS(1059), + [anon_sym_] = ACTIONS(1061), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(1067), + [anon_sym_Set] = ACTIONS(1047), }, [1659] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2943), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4696), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(4698), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1660] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2945), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4698), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [1661] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2946), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(2996), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(2996), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(2996), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(2996), + [sym_abstract] = STATE(2996), + [sym_private] = STATE(2996), + [sym_function_clause] = STATE(2996), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(2996), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(2996), + [sym_data] = STATE(2996), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(2996), + [sym_macro] = STATE(2996), + [sym_test] = STATE(2996), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(2996), + [sym_record_signature_only] = STATE(2996), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(2996), + [sym_syntax] = STATE(2996), + [sym_record] = STATE(2996), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(2996), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(2996), + [sym_mutual] = STATE(2996), + [sym_postulate] = STATE(2996), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [1661] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [1662] = { - [sym__atom_no_curly] = STATE(1669), - [sym_literal] = STATE(1653), - [sym_record_assignments] = STATE(1653), - [sym__atom_curly] = STATE(1669), - [sym_atom] = STATE(2941), - [anon_sym__] = ACTIONS(2626), - [anon_sym_unquote] = ACTIONS(2626), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2632), - [anon_sym_Set] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2638), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2626), - [anon_sym_quoteTerm] = ACTIONS(2626), - [anon_sym_quote] = ACTIONS(2626), - [sym__const_ellipsis] = ACTIONS(2626), - [anon_sym_record] = ACTIONS(2640), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LPAREN_PIPE] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_3] = ACTIONS(2656), - [aux_sym_string_token1] = ACTIONS(2652), - [anon_sym_Prop] = ACTIONS(2626), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(4698), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1663] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2947), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [1664] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2949), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4700), + [sym_pragma] = ACTIONS(3), }, [1665] = { - [sym__atom_no_curly] = STATE(2960), - [sym_literal] = STATE(2950), - [aux_sym__open_args1_repeat1] = STATE(2961), - [sym__atom_curly] = STATE(2960), - [sym_record_assignments] = STATE(2950), - [sym_atom] = STATE(2961), - [sym__atoms1] = STATE(2962), - [anon_sym__] = ACTIONS(4704), - [anon_sym_unquote] = ACTIONS(4704), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4706), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4708), - [anon_sym_Set] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4710), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4704), - [anon_sym_quoteTerm] = ACTIONS(4704), - [anon_sym_quote] = ACTIONS(4704), - [sym__const_ellipsis] = ACTIONS(4704), - [anon_sym_record] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_LPAREN_PIPE] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_3] = ACTIONS(4722), - [aux_sym_string_token1] = ACTIONS(4724), - [anon_sym_Prop] = ACTIONS(4704), + [sym__field_assignments1] = STATE(2998), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(4700), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1666] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(2963), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [1667] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(2964), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1668] = { - [sym_literal] = STATE(1653), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(1669), - [aux_sym__open_args1_repeat1] = STATE(1670), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1671), - [sym__atom_curly] = STATE(1669), - [sym_record_assignments] = STATE(1653), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2626), - [anon_sym_unquote] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(2632), - [anon_sym_Set] = ACTIONS(2626), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2626), - [anon_sym_quoteTerm] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2626), - [sym__const_ellipsis] = ACTIONS(2626), - [anon_sym_record] = ACTIONS(2640), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LPAREN_PIPE] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(2626), - [anon_sym_3] = ACTIONS(2656), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4702), }, [1669] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(4702), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1670] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1671), - [sym__atom_curly] = STATE(1669), - [sym_literal] = STATE(1653), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1669), - [sym_record_assignments] = STATE(1653), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(2626), - [anon_sym_unquote] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(2632), - [anon_sym_Set] = ACTIONS(2626), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2626), - [anon_sym_quoteTerm] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2626), - [sym__const_ellipsis] = ACTIONS(2626), - [anon_sym_record] = ACTIONS(2640), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LPAREN_PIPE] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(2626), - [anon_sym_3] = ACTIONS(2656), + [anon_sym_PIPE_RPAREN] = ACTIONS(4702), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1671] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3001), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4704), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1672] = { - [anon_sym_COLON] = ACTIONS(119), - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(4706), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), }, [1673] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2966), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4726), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4702), }, [1674] = { - [sym_primitive] = STATE(2968), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(2968), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(2968), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(2969), - [sym_field] = STATE(2968), - [sym_abstract] = STATE(2968), - [sym_private] = STATE(2968), - [sym_function_clause] = STATE(2968), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(2968), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(2968), - [sym_data] = STATE(2968), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(2968), - [sym_macro] = STATE(2968), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(2968), - [sym_record_signature_only] = STATE(2968), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(2968), - [sym_syntax] = STATE(2968), - [sym_record] = STATE(2968), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(2968), - [sym_generalize] = STATE(2968), - [sym_mutual] = STATE(2968), - [sym_postulate] = STATE(2968), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4728), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4702), + [sym_pragma] = ACTIONS(3), }, [1675] = { - [sym_typed_binding] = STATE(2977), - [sym_anonymous_name] = STATE(2976), - [sym_untyped_binding] = STATE(2977), - [sym__lambda_binding] = STATE(2978), - [sym__binding_name] = STATE(2979), - [anon_sym__] = ACTIONS(4730), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4732), - [anon_sym_] = ACTIONS(4734), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4736), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_LBRACE] = ACTIONS(4740), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [sym_name] = ACTIONS(4744), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1676] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4708), + [sym_pragma] = ACTIONS(3), }, [1677] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2980), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(4726), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym__] = ACTIONS(4710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4710), }, [1678] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(4712), + [anon_sym_2] = ACTIONS(4712), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4712), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4746), }, [1679] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(2983), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4748), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_EQ] = ACTIONS(4718), + [sym_pragma] = ACTIONS(3), }, [1680] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2984), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4750), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym__] = ACTIONS(4720), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4720), }, [1681] = { - [sym__atom_no_curly] = STATE(1689), - [sym_literal] = STATE(1672), - [sym_record_assignments] = STATE(1672), - [sym__atom_curly] = STATE(1689), - [sym_atom] = STATE(2965), - [anon_sym__] = ACTIONS(2658), - [anon_sym_unquote] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4752), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(4754), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(4760), - [anon_sym_3] = ACTIONS(2688), - [aux_sym_string_token1] = ACTIONS(2684), - [anon_sym_Prop] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4722), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4716), }, [1682] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2990), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_2] = ACTIONS(4716), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4724), + [sym_pragma] = ACTIONS(3), }, [1683] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2992), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [aux_sym_syntax_repeat2] = STATE(3010), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4726), }, [1684] = { - [sym__atom_no_curly] = STATE(3003), - [sym_literal] = STATE(2993), - [aux_sym__open_args1_repeat1] = STATE(3004), - [sym__atom_curly] = STATE(3003), - [sym_record_assignments] = STATE(2993), - [sym_atom] = STATE(3004), - [sym__atoms1] = STATE(3005), - [anon_sym__] = ACTIONS(4764), - [anon_sym_unquote] = ACTIONS(4764), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4766), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4768), - [anon_sym_Set] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4770), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4764), - [anon_sym_quoteTerm] = ACTIONS(4764), - [anon_sym_quote] = ACTIONS(4764), - [sym__const_ellipsis] = ACTIONS(4764), - [anon_sym_record] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4764), - [anon_sym_] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_LPAREN_PIPE] = ACTIONS(4778), - [anon_sym_LBRACE] = ACTIONS(4780), - [anon_sym_3] = ACTIONS(4782), - [aux_sym_string_token1] = ACTIONS(4784), - [anon_sym_Prop] = ACTIONS(4764), + [aux_sym_syntax_repeat1] = STATE(1684), + [sym_hole_name] = STATE(1684), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4728), + [anon_sym_] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4734), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4736), + [anon_sym_LBRACE] = ACTIONS(4739), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4742), }, [1685] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3006), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__binding_name] = STATE(1685), + [sym_anonymous_name] = STATE(701), + [aux_sym_infix_repeat1] = STATE(1685), + [sym__newline] = ACTIONS(4745), + [anon_sym__] = ACTIONS(4747), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4750), }, [1686] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3007), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__field_name] = STATE(3011), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2714), }, [1687] = { + [anon_sym_RBRACE_RBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2730), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(2728), + [sym_name] = ACTIONS(2728), }, [1688] = { - [sym_literal] = STATE(3009), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(3019), - [aux_sym__open_args1_repeat1] = STATE(3020), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3021), - [sym__atom_curly] = STATE(3019), - [sym_record_assignments] = STATE(3009), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4788), - [anon_sym_unquote] = ACTIONS(4788), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(4790), - [anon_sym_Set] = ACTIONS(4788), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4794), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4788), - [anon_sym_quoteTerm] = ACTIONS(4788), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4788), - [sym__const_ellipsis] = ACTIONS(4788), - [anon_sym_record] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_] = ACTIONS(4798), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_LPAREN_PIPE] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(4804), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(4806), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(4788), - [anon_sym_3] = ACTIONS(4808), + [sym__field_name] = STATE(3013), + [aux_sym__arg_name_repeat1] = STATE(3013), + [sym_name] = ACTIONS(2714), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2712), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4753), }, [1689] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(4755), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1690] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_literal] = STATE(1672), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1689), - [sym_record_assignments] = STATE(1672), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2670), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_] = ACTIONS(4810), - [anon_sym__] = ACTIONS(2658), - [anon_sym_unquote] = ACTIONS(2658), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4812), - [anon_sym_LPAREN] = ACTIONS(4814), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(4816), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym__field_name] = STATE(3015), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2720), }, [1691] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [anon_sym_2] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2728), + [sym_name] = ACTIONS(2728), }, [1692] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__field_name] = STATE(3016), + [aux_sym__arg_name_repeat1] = STATE(3016), + [anon_sym_2] = ACTIONS(4757), + [anon_sym_DOT_DOT] = ACTIONS(2716), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4786), + [anon_sym_DOT] = ACTIONS(2718), + [sym_name] = ACTIONS(2720), }, [1693] = { - [anon_sym_COLON] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__field_name] = STATE(3017), + [aux_sym__arg_name_repeat2] = STATE(3017), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2714), }, [1694] = { + [sym__field_name] = STATE(3018), + [aux_sym__arg_name_repeat2] = STATE(3018), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4818), + [sym_name] = ACTIONS(2714), }, [1695] = { - [anon_sym_RPAREN] = ACTIONS(4818), + [sym__field_name] = STATE(3019), + [aux_sym__arg_name_repeat2] = STATE(3019), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2720), }, [1696] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3028), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4820), + [anon_sym_COLON] = ACTIONS(4759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4761), + [anon_sym_] = ACTIONS(4759), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4759), [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_DOT_DOT] = ACTIONS(4761), + [sym_name] = ACTIONS(4759), }, [1697] = { - [anon_sym_LBRACE] = ACTIONS(4822), - [sym_comment] = ACTIONS(3), + [sym__field_name] = STATE(3020), + [aux_sym__arg_name_repeat1] = STATE(3020), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4753), + [anon_sym_DOT] = ACTIONS(2712), + [sym_name] = ACTIONS(2714), }, [1698] = { + [sym__newline] = ACTIONS(4763), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4818), [sym_pragma] = ACTIONS(3), }, [1699] = { + [sym__field_name] = STATE(1699), + [aux_sym__arg_names_repeat1] = STATE(1699), + [sym__arg_name] = STATE(1699), + [anon_sym_COLON] = ACTIONS(4765), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4767), + [anon_sym_] = ACTIONS(4770), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4773), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4818), + [anon_sym_LBRACE] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4779), + [sym_name] = ACTIONS(4782), }, [1700] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4785), + [anon_sym_overlap] = ACTIONS(4787), + [anon_sym_] = ACTIONS(4787), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_DOT] = ACTIONS(4787), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(4787), + [anon_sym_instance] = ACTIONS(4787), + [sym__dedent] = ACTIONS(4785), + [anon_sym_DOT_DOT] = ACTIONS(4785), + [sym_name] = ACTIONS(4787), }, [1701] = { + [sym__newline] = ACTIONS(4789), + [anon_sym_in] = ACTIONS(4789), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4824), [sym_pragma] = ACTIONS(3), }, [1702] = { + [aux_sym__arg_names_repeat1] = STATE(710), + [sym__field_name] = STATE(710), + [sym_type_sig_instance] = STATE(711), + [aux_sym__type_sig_block_repeat1] = STATE(1702), + [sym__arg_names] = STATE(713), + [sym__arg_name] = STATE(710), + [sym_type_sig] = STATE(711), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4791), + [anon_sym_overlap] = ACTIONS(4794), + [anon_sym_] = ACTIONS(4797), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4818), + [anon_sym_DOT] = ACTIONS(4800), [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(4803), + [anon_sym_instance] = ACTIONS(4806), + [sym__dedent] = ACTIONS(4785), + [anon_sym_DOT_DOT] = ACTIONS(4809), + [sym_name] = ACTIONS(4812), }, [1703] = { - [sym__atom_no_curly] = STATE(3041), - [sym_literal] = STATE(3031), - [sym_record_assignments] = STATE(3031), - [sym__atom_curly] = STATE(3041), - [sym_atom] = STATE(1703), - [aux_sym__open_args1_repeat1] = STATE(1703), - [anon_sym__] = ACTIONS(4826), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4829), - [sym__const_lambda] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(4832), - [anon_sym_Set] = ACTIONS(4826), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_quoteGoal] = ACTIONS(1683), - [anon_sym_unquote] = ACTIONS(4826), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4826), - [anon_sym_quoteTerm] = ACTIONS(4826), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(4826), - [sym__const_ellipsis] = ACTIONS(4826), - [anon_sym_record] = ACTIONS(4838), - [anon_sym_QMARK] = ACTIONS(4826), - [anon_sym_] = ACTIONS(4841), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_LPAREN_PIPE] = ACTIONS(4847), - [anon_sym_LBRACE] = ACTIONS(4850), - [sym__const_forall] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(4853), - [anon_sym_tactic] = ACTIONS(1683), - [anon_sym_Prop] = ACTIONS(4826), - [anon_sym_3] = ACTIONS(4856), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(3021), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [1704] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3042), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4815), + [sym_pragma] = ACTIONS(3), }, [1705] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_rewrite] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [1706] = { - [anon_sym_COLON] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_2] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym__expr2] = STATE(3023), + [sym_do] = STATE(3023), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3023), + [sym_lambda] = STATE(3023), + [sym__application] = STATE(3023), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [1707] = { - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3024), + [sym_do] = STATE(3024), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3024), + [sym_lambda] = STATE(3024), + [sym__application] = STATE(3024), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4863), }, [1708] = { - [anon_sym_RPAREN] = ACTIONS(4863), + [sym_anonymous_name] = STATE(1711), + [sym__binding_name] = STATE(3029), + [anon_sym__] = ACTIONS(2742), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4817), + [anon_sym_] = ACTIONS(4819), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4821), + [anon_sym_LBRACE] = ACTIONS(4823), + [sym_name] = ACTIONS(2756), }, [1709] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3045), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4865), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(3031), + [sym__expr2] = STATE(3030), + [sym_do] = STATE(3030), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3030), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3030), + [sym_lambda] = STATE(3030), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [1710] = { - [anon_sym_LBRACE] = ACTIONS(4867), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3032), + [sym_do] = STATE(3032), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3032), + [sym_let] = STATE(3032), + [sym_lambda] = STATE(3032), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [1711] = { + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4863), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [1712] = { + [sym_anonymous_name] = STATE(1711), + [sym_typed_binding] = STATE(1712), + [sym_untyped_binding] = STATE(1712), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(1714), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(2742), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2744), + [anon_sym_] = ACTIONS(2746), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(4825), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4863), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(2756), }, [1713] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_2] = ACTIONS(1397), + [sym__newline] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(4827), }, [1714] = { + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4869), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [1715] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4863), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1716] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3048), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4829), }, [1717] = { - [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4829), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4873), [sym_pragma] = ACTIONS(3), }, [1718] = { - [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_PIPE_RPAREN] = ACTIONS(4829), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4873), }, [1719] = { - [anon_sym_COLON] = ACTIONS(4877), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1720] = { - [anon_sym_COLON] = ACTIONS(4879), - [anon_sym_2] = ACTIONS(4873), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3037), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4831), }, [1721] = { - [sym_primitive] = STATE(3054), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3054), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3054), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3055), - [sym_field] = STATE(3054), - [sym_abstract] = STATE(3054), - [sym_private] = STATE(3054), - [sym_function_clause] = STATE(3054), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3054), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3054), - [sym_data] = STATE(3054), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3054), - [sym_macro] = STATE(3054), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3054), - [sym_record_signature_only] = STATE(3054), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3054), - [sym_syntax] = STATE(3054), - [sym_record] = STATE(3054), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3054), - [sym_generalize] = STATE(3054), - [sym_mutual] = STATE(3054), - [sym_postulate] = STATE(3054), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1722] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(4881), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3038), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4831), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1723] = { - [sym_primitive] = STATE(3057), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3057), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3057), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3057), - [sym_abstract] = STATE(3057), - [sym_private] = STATE(3057), - [sym_function_clause] = STATE(3057), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3057), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3057), - [sym_data] = STATE(3057), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3057), - [sym_macro] = STATE(3057), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3057), - [sym_record_signature_only] = STATE(3057), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3057), - [sym_syntax] = STATE(3057), - [sym_record] = STATE(3057), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3057), - [sym_generalize] = STATE(3057), - [sym_mutual] = STATE(3057), - [sym_postulate] = STATE(3057), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3039), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [1724] = { - [sym_typed_binding] = STATE(1724), - [sym_anonymous_name] = STATE(1105), - [sym_untyped_binding] = STATE(1724), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1108), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(1863), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1865), - [anon_sym_] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(3575), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(1877), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3040), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1725] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4883), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3042), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(4833), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1726] = { - [anon_sym_in] = ACTIONS(4885), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3043), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4835), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1727] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2314), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym__atom_curly] = STATE(1729), + [sym__atom_no_curly] = STATE(1729), + [sym_literal] = STATE(1719), + [sym_record_assignments] = STATE(1719), + [sym_atom] = STATE(3036), + [anon_sym__] = ACTIONS(2760), + [anon_sym_quoteTerm] = ACTIONS(2760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2766), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_qualified_name] = ACTIONS(2760), + [anon_sym_quote] = ACTIONS(2760), + [anon_sym_3] = ACTIONS(2770), + [anon_sym_Prop] = ACTIONS(2760), + [sym__const_ellipsis] = ACTIONS(2760), + [anon_sym_record] = ACTIONS(2772), + [anon_sym_] = ACTIONS(2774), + [anon_sym_unquote] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [aux_sym_string_token1] = ACTIONS(2780), + [anon_sym_Set] = ACTIONS(2760), }, [1728] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(3060), - [aux_sym__open_args1_repeat1] = STATE(3060), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2724), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3045), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1729] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(4887), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1730] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__atom_curly] = STATE(1729), + [sym__atom_no_curly] = STATE(1729), + [sym_literal] = STATE(1719), + [sym_record_assignments] = STATE(1719), + [sym_atom] = STATE(3046), + [aux_sym__open_args1_repeat1] = STATE(3046), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(2760), + [anon_sym_quoteTerm] = ACTIONS(2760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2762), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(2766), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(2768), + [sym_qualified_name] = ACTIONS(2760), + [anon_sym_quote] = ACTIONS(2760), + [anon_sym_3] = ACTIONS(2770), + [anon_sym_Prop] = ACTIONS(2760), + [sym__const_ellipsis] = ACTIONS(2760), + [anon_sym_record] = ACTIONS(2772), + [anon_sym_] = ACTIONS(2774), + [anon_sym_unquote] = ACTIONS(2760), + [anon_sym_DOT] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2778), + [aux_sym_string_token1] = ACTIONS(2780), + [anon_sym_Set] = ACTIONS(2760), }, [1731] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_rewrite] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym__newline] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4839), }, [1732] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3067), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1733] = { - [sym_primitive] = STATE(3068), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3068), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3068), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3069), - [sym_field] = STATE(3068), - [sym_abstract] = STATE(3068), - [sym_private] = STATE(3068), - [sym_function_clause] = STATE(3068), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(3048), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3048), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3048), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3048), + [sym_abstract] = STATE(3048), + [sym_private] = STATE(3048), + [sym_function_clause] = STATE(3048), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3068), + [sym_open] = STATE(3048), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3049), + [sym_infix] = STATE(3048), + [sym_data] = STATE(3048), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3068), - [sym_data] = STATE(3068), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3068), - [sym_macro] = STATE(3068), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3068), - [sym_record_signature_only] = STATE(3068), - [sym_atom] = STATE(158), + [sym_instance] = STATE(3048), + [sym_macro] = STATE(3048), + [sym_test] = STATE(3048), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3048), + [sym_record_signature_only] = STATE(3048), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3048), + [sym_syntax] = STATE(3048), + [sym_record] = STATE(3048), [sym_do] = STATE(43), - [sym_pattern] = STATE(3068), - [sym_syntax] = STATE(3068), - [sym_record] = STATE(3068), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3068), - [sym_generalize] = STATE(3068), - [sym_mutual] = STATE(3068), - [sym_postulate] = STATE(3068), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3048), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3048), + [sym_mutual] = STATE(3048), + [sym_postulate] = STATE(3048), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [1734] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(4891), + [1733] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(4841), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [1735] = { - [sym_primitive] = STATE(3071), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3071), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3071), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3071), - [sym_abstract] = STATE(3071), - [sym_private] = STATE(3071), - [sym_function_clause] = STATE(3071), - [sym_lhs_decl] = STATE(155), + [1734] = { + [sym_primitive] = STATE(3051), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3051), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3051), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3051), + [sym_abstract] = STATE(3051), + [sym_private] = STATE(3051), + [sym_function_clause] = STATE(3051), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3071), + [sym_open] = STATE(3051), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3051), + [sym_data] = STATE(3051), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3071), - [sym_data] = STATE(3071), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3071), - [sym_macro] = STATE(3071), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3071), - [sym_record_signature_only] = STATE(3071), - [sym_atom] = STATE(158), + [sym_instance] = STATE(3051), + [sym_macro] = STATE(3051), + [sym_test] = STATE(3051), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3051), + [sym_record_signature_only] = STATE(3051), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3051), + [sym_syntax] = STATE(3051), + [sym_record] = STATE(3051), [sym_do] = STATE(43), - [sym_pattern] = STATE(3071), - [sym_syntax] = STATE(3071), - [sym_record] = STATE(3071), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3071), - [sym_generalize] = STATE(3071), - [sym_mutual] = STATE(3071), - [sym_postulate] = STATE(3071), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3051), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3051), + [sym_mutual] = STATE(3051), + [sym_postulate] = STATE(3051), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [1735] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3053), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4843), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1736] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(4845), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), }, [1737] = { - [sym_do] = STATE(3072), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3072), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3072), - [sym_lambda] = STATE(3072), - [sym__application] = STATE(3072), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4829), }, [1738] = { - [sym_do] = STATE(3073), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3073), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3073), - [sym_lambda] = STATE(3073), - [sym__application] = STATE(3073), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4829), + [sym_pragma] = ACTIONS(3), }, [1739] = { - [sym_anonymous_name] = STATE(1742), - [sym__binding_name] = STATE(3078), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4893), - [anon_sym_] = ACTIONS(4895), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_LBRACE] = ACTIONS(4899), - [sym_name] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1740] = { - [sym_do] = STATE(3080), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3080), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3080), - [sym_lambda] = STATE(3080), - [sym_open] = STATE(3079), - [sym__application] = STATE(3080), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4847), + [sym_pragma] = ACTIONS(3), }, [1741] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3081), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3081), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3081), - [sym__expr2] = STATE(3081), - [sym_lambda] = STATE(3081), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [1742] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4851), + [sym__const_lambda] = ACTIONS(4849), + [anon_sym_quoteGoal] = ACTIONS(4849), + [aux_sym_integer_token1] = ACTIONS(4849), + [anon_sym_do] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4849), + [anon_sym_QMARK] = ACTIONS(4849), + [anon_sym_quoteTerm] = ACTIONS(4849), + [sym__dedent] = ACTIONS(4851), + [anon_sym_LPAREN_PIPE] = ACTIONS(4851), + [sym_qualified_name] = ACTIONS(4849), + [anon_sym_quote] = ACTIONS(4849), + [anon_sym_tactic] = ACTIONS(4849), + [anon_sym_Prop] = ACTIONS(4849), + [sym__const_ellipsis] = ACTIONS(4849), + [anon_sym_record] = ACTIONS(4849), + [anon_sym_let] = ACTIONS(4849), + [anon_sym_3] = ACTIONS(4849), + [anon_sym_] = ACTIONS(4849), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4849), + [anon_sym_unquote] = ACTIONS(4849), + [anon_sym_LBRACE] = ACTIONS(4849), + [sym__const_forall] = ACTIONS(4849), + [aux_sym_string_token1] = ACTIONS(4851), + [anon_sym_Set] = ACTIONS(4849), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), }, [1743] = { - [sym_typed_binding] = STATE(1743), - [sym_anonymous_name] = STATE(1742), - [sym_untyped_binding] = STATE(1743), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(1745), - [anon_sym_COLON] = ACTIONS(1143), - [anon_sym__] = ACTIONS(2732), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(4901), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(1141), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(2746), + [sym__newline] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_with] = ACTIONS(4853), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4853), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4853), + [anon_sym_where] = ACTIONS(4853), + [anon_sym_rewrite] = ACTIONS(4853), + [anon_sym_module] = ACTIONS(4853), }, [1744] = { - [anon_sym_COLON] = ACTIONS(1147), - [anon_sym_SEMI] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(4903), + [sym_literal] = STATE(714), + [sym__do_stmt_where] = STATE(729), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__do_stmt] = STATE(729), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [aux_sym_do_repeat1] = STATE(1744), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(734), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [sym_let] = STATE(43), + [anon_sym__] = ACTIONS(4855), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4858), + [sym__const_lambda] = ACTIONS(4861), + [anon_sym_quoteGoal] = ACTIONS(4864), + [aux_sym_integer_token1] = ACTIONS(4867), + [anon_sym_do] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4873), + [anon_sym_QMARK] = ACTIONS(4855), + [anon_sym_quoteTerm] = ACTIONS(4855), + [sym__dedent] = ACTIONS(4851), + [anon_sym_LPAREN_PIPE] = ACTIONS(4876), + [sym_qualified_name] = ACTIONS(4855), + [anon_sym_quote] = ACTIONS(4855), + [anon_sym_tactic] = ACTIONS(4879), + [anon_sym_Prop] = ACTIONS(4855), + [sym__const_ellipsis] = ACTIONS(4855), + [anon_sym_record] = ACTIONS(4882), + [anon_sym_let] = ACTIONS(4885), + [anon_sym_3] = ACTIONS(4888), + [anon_sym_] = ACTIONS(4891), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_unquote] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4897), + [sym__const_forall] = ACTIONS(4900), + [aux_sym_string_token1] = ACTIONS(4903), + [anon_sym_Set] = ACTIONS(4855), [sym_pragma] = ACTIONS(3), }, [1745] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), + [sym__lambda_where_block] = STATE(3056), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym__indent] = ACTIONS(1291), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), }, [1746] = { - [anon_sym_in] = ACTIONS(4905), + [sym_import_directive] = STATE(3057), + [aux_sym_module_macro_repeat1] = STATE(3057), + [sym__newline] = ACTIONS(4906), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), }, [1747] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(4906), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [1748] = { + [sym_literal] = STATE(739), + [sym__open_args1] = STATE(3058), + [sym_import_directive] = STATE(3057), + [sym_atom] = STATE(755), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_record_assignments] = STATE(739), + [aux_sym__open_args1_repeat1] = STATE(755), + [aux_sym_module_macro_repeat1] = STATE(3057), + [sym__newline] = ACTIONS(4906), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4907), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_] = ACTIONS(1173), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(1181), }, [1749] = { - [anon_sym_RPAREN] = ACTIONS(4907), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(1099), + [sym_do] = STATE(1099), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(1099), + [sym_lambda] = STATE(1099), + [sym__application] = STATE(1099), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1750] = { - [sym_primitive] = STATE(3087), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3087), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3087), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3088), - [sym_field] = STATE(3087), - [sym_abstract] = STATE(3087), - [sym_private] = STATE(3087), - [sym_function_clause] = STATE(3087), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3087), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3087), - [sym_data] = STATE(3087), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3087), - [sym_macro] = STATE(3087), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3087), - [sym_record_signature_only] = STATE(3087), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3087), - [sym_syntax] = STATE(3087), - [sym_record] = STATE(3087), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3087), - [sym_generalize] = STATE(3087), - [sym_mutual] = STATE(3087), - [sym_postulate] = STATE(3087), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4909), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__expr2] = STATE(1100), + [sym_do] = STATE(1100), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(1100), + [sym_lambda] = STATE(1100), + [sym__application] = STATE(1100), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [1751] = { - [sym_typed_binding] = STATE(3096), - [sym_anonymous_name] = STATE(3095), - [sym_untyped_binding] = STATE(3096), - [sym__lambda_binding] = STATE(3097), - [sym__binding_name] = STATE(3098), - [anon_sym__] = ACTIONS(4911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), - [anon_sym_] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [sym_name] = ACTIONS(4925), - }, - [1752] = { + [sym_module_application] = STATE(3059), + [sym_qualified_name] = ACTIONS(3154), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4927), + }, + [1752] = { + [sym_open] = STATE(1129), + [sym__expr2] = STATE(1128), + [sym_do] = STATE(1128), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(1128), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(1128), + [sym_lambda] = STATE(1128), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [1753] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(4929), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [sym__expr2] = STATE(1130), + [sym_do] = STATE(1130), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(1130), + [sym_lambda] = STATE(1130), + [sym__application] = STATE(1130), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [1754] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(3102), - [sym__atom_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [sym_atom] = STATE(3102), - [sym__atoms1] = STATE(3103), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(4908), + [sym_pragma] = ACTIONS(3), }, [1755] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3104), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_anonymous_name] = STATE(316), + [sym_typed_binding] = STATE(3061), + [sym_untyped_binding] = STATE(3061), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(3061), + [sym__binding_name] = STATE(319), + [anon_sym__] = ACTIONS(481), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2800), + [anon_sym_] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2808), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(495), + [sym_name] = ACTIONS(497), }, [1756] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4933), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_renaming] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_hiding] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_public] = ACTIONS(993), }, [1757] = { - [anon_sym_SEMI] = ACTIONS(4935), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4935), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4910), }, [1758] = { - [sym_literal] = STATE(792), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(802), - [aux_sym__open_args1_repeat1] = STATE(3107), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(4937), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(4910), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1759] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(192), - [sym_record_assignments] = STATE(174), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2756), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4929), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, [1760] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4933), + [sym__newline] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4914), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4912), + [anon_sym_quoteTerm] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4912), + [sym_qualified_name] = ACTIONS(4914), + [anon_sym_quote] = ACTIONS(4914), + [anon_sym_renaming] = ACTIONS(4914), + [anon_sym_Prop] = ACTIONS(4914), + [sym__const_ellipsis] = ACTIONS(4914), + [anon_sym_record] = ACTIONS(4914), + [anon_sym_using] = ACTIONS(4914), + [anon_sym_3] = ACTIONS(4914), + [anon_sym_] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_unquote] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_hiding] = ACTIONS(4914), + [aux_sym_string_token1] = ACTIONS(4912), + [anon_sym_Set] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), }, [1761] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3109), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_PIPE_RPAREN] = ACTIONS(4910), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1762] = { - [anon_sym_LBRACE] = ACTIONS(4941), + [sym_renaming] = STATE(3066), + [anon_sym_module] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(4918), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4920), }, [1763] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3068), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4922), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(4907), [sym_pragma] = ACTIONS(3), }, [1764] = { + [anon_sym_LBRACE] = ACTIONS(4924), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(4907), }, [1765] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1399), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), + [sym__import_name] = STATE(3071), + [sym__comma_import_names1] = STATE(3072), + [anon_sym_module] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4918), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4928), }, [1766] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4943), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4910), }, [1767] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2314), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2770), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4910), + [sym_pragma] = ACTIONS(3), }, [1768] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(3112), - [aux_sym__open_args1_repeat1] = STATE(3112), - [anon_sym_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(1897), - [anon_sym_unquote] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1899), - [aux_sym_integer_token1] = ACTIONS(1901), - [anon_sym_Set] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_quoteTerm] = ACTIONS(1897), - [anon_sym_quote] = ACTIONS(1897), - [sym__const_ellipsis] = ACTIONS(1897), - [anon_sym_record] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1897), - [anon_sym_] = ACTIONS(1907), - [anon_sym_DOT] = ACTIONS(2770), - [anon_sym_LPAREN_PIPE] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_3] = ACTIONS(1915), - [aux_sym_string_token1] = ACTIONS(1917), - [anon_sym_Prop] = ACTIONS(1897), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_renaming] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_using] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_hiding] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), }, [1769] = { - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_SEMI] = ACTIONS(1457), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(4930), [sym_pragma] = ACTIONS(3), }, [1770] = { - [sym_comment] = ACTIONS(3), - [anon_sym_POUND_DASH_RBRACE] = ACTIONS(4947), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_literal] = STATE(739), + [sym_record_assignments] = STATE(739), + [sym_atom] = STATE(1770), + [aux_sym__open_args1_repeat1] = STATE(1770), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(4932), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4935), + [anon_sym_quoteTerm] = ACTIONS(4932), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4938), + [anon_sym_QMARK] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4941), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4944), + [sym_qualified_name] = ACTIONS(4932), + [anon_sym_quote] = ACTIONS(4932), + [anon_sym_renaming] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(4932), + [sym__const_ellipsis] = ACTIONS(4932), + [anon_sym_record] = ACTIONS(4947), + [anon_sym_using] = ACTIONS(1527), + [anon_sym_3] = ACTIONS(4950), + [anon_sym_] = ACTIONS(4953), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_unquote] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_hiding] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(4962), + [anon_sym_Set] = ACTIONS(4932), + [anon_sym_public] = ACTIONS(1527), }, [1771] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(4965), + [anon_sym_hiding] = ACTIONS(4967), + [anon_sym_using] = ACTIONS(4967), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_renaming] = ACTIONS(4973), + [sym_pragma] = ACTIONS(3), }, [1772] = { + [anon_sym_COLON] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + }, + [1773] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(4907), [sym_pragma] = ACTIONS(3), - }, - [1773] = { - [sym_lambda_clause] = STATE(3123), - [sym_lambda_clause_absurd] = STATE(3123), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3124), - [sym__atom_no_curly] = STATE(1792), - [aux_sym__open_args1_repeat1] = STATE(3121), - [sym_catchall_pragma] = STATE(3122), - [sym_do] = STATE(3124), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym__lambda_clause] = STATE(3123), - [sym_record_assignments] = STATE(1776), - [sym__application] = STATE(3124), - [sym__expr2] = STATE(3124), - [sym_lambda] = STATE(3124), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2756), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_quote] = ACTIONS(2778), - [anon_sym_] = ACTIONS(2794), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4976), }, [1774] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(3125), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1775] = { - [sym__atom_no_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym_record_assignments] = STATE(1776), - [sym__atom_curly] = STATE(1792), - [sym_atom] = STATE(1775), - [aux_sym__open_args1_repeat1] = STATE(1775), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4956), - [sym__const_lambda] = ACTIONS(1683), - [anon_sym_let] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(4959), - [anon_sym_Set] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_quoteGoal] = ACTIONS(1683), - [anon_sym_unquote] = ACTIONS(4953), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4953), - [anon_sym_quoteTerm] = ACTIONS(4953), - [sym__const_right_arrow] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [sym__const_ellipsis] = ACTIONS(4953), - [anon_sym_record] = ACTIONS(4965), - [anon_sym_QMARK] = ACTIONS(4953), - [anon_sym_quote] = ACTIONS(4953), - [anon_sym_] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_LPAREN_PIPE] = ACTIONS(4974), - [anon_sym_LBRACE] = ACTIONS(4977), - [sym__const_forall] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(4980), - [anon_sym_tactic] = ACTIONS(1683), - [anon_sym_Prop] = ACTIONS(4953), - [anon_sym_3] = ACTIONS(4983), + [anon_sym_PIPE_RPAREN] = ACTIONS(4976), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1776] = { - [anon_sym_SEMI] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3076), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(4978), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), }, [1777] = { - [sym_primitive] = STATE(3128), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3128), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3128), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3129), - [sym_field] = STATE(3128), - [sym_abstract] = STATE(3128), - [sym_private] = STATE(3128), - [sym_function_clause] = STATE(3128), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3128), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3128), - [sym_data] = STATE(3128), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3128), - [sym_macro] = STATE(3128), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3128), - [sym_record_signature_only] = STATE(3128), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3128), - [sym_syntax] = STATE(3128), - [sym_record] = STATE(3128), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3128), - [sym_generalize] = STATE(3128), - [sym_mutual] = STATE(3128), - [sym_postulate] = STATE(3128), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(4986), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(4980), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1778] = { - [sym_typed_binding] = STATE(3130), - [sym_anonymous_name] = STATE(3095), - [sym_untyped_binding] = STATE(3130), - [sym__lambda_binding] = STATE(3131), - [sym__binding_name] = STATE(3098), - [anon_sym__] = ACTIONS(4911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), - [anon_sym_] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [sym_name] = ACTIONS(4925), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(4976), }, [1779] = { - [anon_sym_SEMI] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(4976), + [sym_pragma] = ACTIONS(3), }, [1780] = { - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4988), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), }, [1781] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3134), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4990), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4982), + [sym_pragma] = ACTIONS(3), }, [1782] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3135), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4990), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(3089), + [sym__atom_no_curly] = STATE(3089), + [sym_literal] = STATE(3079), + [sym_record_assignments] = STATE(3079), + [sym_atom] = STATE(1782), + [aux_sym__open_args1_repeat1] = STATE(1782), + [anon_sym__] = ACTIONS(4984), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4987), + [sym__const_lambda] = ACTIONS(1527), + [anon_sym_quoteGoal] = ACTIONS(1527), + [aux_sym_integer_token1] = ACTIONS(4990), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4984), + [anon_sym_quoteTerm] = ACTIONS(4984), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4996), + [sym_qualified_name] = ACTIONS(4984), + [anon_sym_quote] = ACTIONS(4984), + [anon_sym_tactic] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(4984), + [sym__const_ellipsis] = ACTIONS(4984), + [anon_sym_record] = ACTIONS(4999), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_3] = ACTIONS(5002), + [anon_sym_] = ACTIONS(5005), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5008), + [anon_sym_unquote] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym__const_forall] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(5014), + [anon_sym_Set] = ACTIONS(4984), }, [1783] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3137), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(4992), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3090), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1784] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3138), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4994), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_rewrite] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [1785] = { - [sym__atom_no_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym_record_assignments] = STATE(1776), - [sym__atom_curly] = STATE(1792), - [sym_atom] = STATE(3133), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_3] = ACTIONS(2808), - [aux_sym_string_token1] = ACTIONS(2804), - [anon_sym_Prop] = ACTIONS(2778), + [anon_sym_COLON] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1786] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3139), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5021), }, [1787] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3141), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4996), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(5021), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1788] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [aux_sym__open_args1_repeat1] = STATE(3143), - [sym__atom_curly] = STATE(786), - [sym_record_assignments] = STATE(776), - [sym_atom] = STATE(3143), - [sym__atoms1] = STATE(3144), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4998), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [anon_sym_PIPE_RPAREN] = ACTIONS(5021), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1789] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3145), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3093), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5023), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1790] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3146), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(5025), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1791] = { - [anon_sym_SEMI] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5021), }, [1792] = { - [anon_sym_SEMI] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5021), + [sym_pragma] = ACTIONS(3), }, [1793] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(1792), - [sym_record_assignments] = STATE(1776), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(5000), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [anon_sym_COLON] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1794] = { - [anon_sym_SEMI] = ACTIONS(5002), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5027), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5002), }, [1795] = { - [sym__newline] = ACTIONS(5004), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_with] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(5004), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3096), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_rewrite] = ACTIONS(5004), - [anon_sym_module] = ACTIONS(5004), }, [1796] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3148), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(5029), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5031), + [sym_pragma] = ACTIONS(3), }, [1797] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_COLON] = ACTIONS(5033), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5031), }, [1798] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(5035), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1799] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3150), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5006), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_2] = ACTIONS(5031), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1800] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3151), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5006), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5039), + [sym_pragma] = ACTIONS(3), }, [1801] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(3152), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_anonymous_name] = STATE(1149), + [sym_typed_binding] = STATE(1801), + [sym_untyped_binding] = STATE(1801), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1152), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(1939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1941), + [anon_sym_] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(3720), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(1953), }, [1802] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3154), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5008), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5041), }, [1803] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3155), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5010), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2383), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1804] = { - [sym__atom_no_curly] = STATE(1808), - [sym_literal] = STATE(1797), - [sym_record_assignments] = STATE(1797), - [sym__atom_curly] = STATE(1808), - [sym_atom] = STATE(3149), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [anon_sym_quote] = ACTIONS(2816), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_] = ACTIONS(2822), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_3] = ACTIONS(2838), - [aux_sym_string_token1] = ACTIONS(2836), - [anon_sym_Prop] = ACTIONS(2816), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(3104), + [aux_sym__open_args1_repeat1] = STATE(3104), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1805] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3156), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(5043), }, [1806] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3158), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(3106), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3106), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3106), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3106), + [sym_abstract] = STATE(3106), + [sym_private] = STATE(3106), + [sym_function_clause] = STATE(3106), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3106), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3107), + [sym_infix] = STATE(3106), + [sym_data] = STATE(3106), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3106), + [sym_macro] = STATE(3106), + [sym_test] = STATE(3106), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3106), + [sym_record_signature_only] = STATE(3106), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3106), + [sym_syntax] = STATE(3106), + [sym_record] = STATE(3106), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3106), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3106), + [sym_mutual] = STATE(3106), + [sym_postulate] = STATE(3106), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1807] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3159), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5045), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1808] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_primitive] = STATE(3109), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3109), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3109), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3109), + [sym_abstract] = STATE(3109), + [sym_private] = STATE(3109), + [sym_function_clause] = STATE(3109), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3109), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3109), + [sym_data] = STATE(3109), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3109), + [sym_macro] = STATE(3109), + [sym_test] = STATE(3109), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3109), + [sym_record_signature_only] = STATE(3109), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3109), + [sym_syntax] = STATE(3109), + [sym_record] = STATE(3109), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3109), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3109), + [sym_mutual] = STATE(3109), + [sym_postulate] = STATE(3109), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1809] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1808), - [sym_record_assignments] = STATE(1797), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2816), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(5014), - [anon_sym_] = ACTIONS(2822), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [1810] = { - [sym_do] = STATE(3162), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(3162), - [sym__atom_no_curly] = STATE(1808), - [sym_record_assignments] = STATE(1797), - [aux_sym__open_args1_repeat1] = STATE(3161), - [sym__expr2] = STATE(3162), - [sym_lambda] = STATE(3162), - [sym__application] = STATE(3162), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2816), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(5014), - [anon_sym_] = ACTIONS(2822), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3115), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1811] = { - [sym_lambda_clause] = STATE(1813), - [sym_lambda_clause_absurd] = STATE(1813), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(1814), - [sym__atom_no_curly] = STATE(1808), - [aux_sym__open_args1_repeat1] = STATE(1809), - [sym_catchall_pragma] = STATE(1810), - [aux_sym__lambda_where_block_repeat1] = STATE(3164), - [sym_do] = STATE(1814), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym__lambda_clause] = STATE(1813), - [sym_record_assignments] = STATE(1797), - [sym__application] = STATE(1814), - [sym__expr2] = STATE(1814), - [sym_lambda] = STATE(1814), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2146), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(17), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_quote] = ACTIONS(2816), - [anon_sym_] = ACTIONS(2822), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(5016), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_rewrite] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [1812] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5049), + [sym_pragma] = ACTIONS(3), }, [1813] = { - [sym__newline] = ACTIONS(5018), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [1814] = { - [sym__newline] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3117), + [sym_do] = STATE(3117), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3117), + [sym_lambda] = STATE(3117), + [sym__application] = STATE(3117), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [1815] = { - [anon_sym_COLON] = ACTIONS(2812), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2704), + [sym__expr2] = STATE(3118), + [sym_do] = STATE(3118), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3118), + [sym_lambda] = STATE(3118), + [sym__application] = STATE(3118), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), }, [1816] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(5020), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), + [sym_anonymous_name] = STATE(1819), + [sym__binding_name] = STATE(3123), + [anon_sym__] = ACTIONS(2876), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5051), + [anon_sym_] = ACTIONS(5053), [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5057), + [sym_name] = ACTIONS(2890), }, [1817] = { - [sym_import_directive] = STATE(3166), - [aux_sym_module_macro_repeat1] = STATE(3166), - [sym__newline] = ACTIONS(5020), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(3125), + [sym__expr2] = STATE(3124), + [sym_do] = STATE(3124), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3124), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3124), + [sym_lambda] = STATE(3124), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [1818] = { - [sym_literal] = STATE(733), - [sym_atom] = STATE(750), - [sym__atom_curly] = STATE(747), - [sym_import_directive] = STATE(3166), - [aux_sym_module_macro_repeat1] = STATE(3166), - [sym__open_args1] = STATE(3167), - [sym__atom_no_curly] = STATE(747), - [sym_record_assignments] = STATE(733), - [aux_sym__open_args1_repeat1] = STATE(750), - [sym__newline] = ACTIONS(5020), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(1179), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_3] = ACTIONS(1189), - [anon_sym_public] = ACTIONS(1191), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(3126), + [sym_do] = STATE(3126), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3126), + [sym_let] = STATE(3126), + [sym_lambda] = STATE(3126), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [1819] = { - [sym_do] = STATE(1282), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1282), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(1282), - [sym_lambda] = STATE(1282), - [sym__application] = STATE(1282), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [1820] = { - [sym_do] = STATE(1283), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1283), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(1283), - [sym_lambda] = STATE(1283), - [sym__application] = STATE(1283), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_anonymous_name] = STATE(1819), + [sym_typed_binding] = STATE(1820), + [sym_untyped_binding] = STATE(1820), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(1822), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym__] = ACTIONS(2876), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_] = ACTIONS(2880), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(5059), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(1297), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(2890), }, [1821] = { - [sym_module_application] = STATE(3168), - [sym_qualified_name] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(5061), [sym_pragma] = ACTIONS(3), }, [1822] = { - [sym_do] = STATE(1312), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1312), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(1312), - [sym_lambda] = STATE(1312), - [sym_open] = STATE(1311), - [sym__application] = STATE(1312), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [1823] = { - [sym_do] = STATE(1313), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1313), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(1313), - [sym_lambda] = STATE(1313), - [sym__application] = STATE(1313), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [1824] = { [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(5022), [sym_pragma] = ACTIONS(3), + [anon_sym_POUND_DASH_RBRACE] = ACTIONS(5063), + }, + [1824] = { + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(995), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1825] = { - [sym_typed_binding] = STATE(3170), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(3170), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(3170), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(693), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2844), - [anon_sym_] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2852), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(707), - [sym_name] = ACTIONS(709), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5065), }, [1826] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(5065), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_renaming] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_using] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_hiding] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), }, [1827] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(5065), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5024), }, [1828] = { - [anon_sym_RPAREN] = ACTIONS(5024), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(5067), }, [1829] = { - [sym__newline] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), + [sym_anonymous_name] = STATE(3138), + [sym_typed_binding] = STATE(3139), + [sym_untyped_binding] = STATE(3139), + [sym__lambda_binding] = STATE(3140), + [sym__binding_name] = STATE(3141), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5071), + [anon_sym_] = ACTIONS(5073), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [anon_sym_DOT] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(5081), + [sym_name] = ACTIONS(5083), }, [1830] = { - [sym__newline] = ACTIONS(5026), - [anon_sym__] = ACTIONS(5028), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), - [anon_sym_unquote] = ACTIONS(5028), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5028), - [anon_sym_Set] = ACTIONS(5028), - [anon_sym_LPAREN] = ACTIONS(5028), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5028), - [anon_sym_quoteTerm] = ACTIONS(5028), - [anon_sym_renaming] = ACTIONS(5028), - [anon_sym_quote] = ACTIONS(5028), - [sym__const_ellipsis] = ACTIONS(5028), - [anon_sym_record] = ACTIONS(5028), - [anon_sym_using] = ACTIONS(5028), - [anon_sym_QMARK] = ACTIONS(5028), - [anon_sym_] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_LPAREN_PIPE] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(5028), - [anon_sym_hiding] = ACTIONS(5028), - [aux_sym_string_token1] = ACTIONS(5026), - [anon_sym_Prop] = ACTIONS(5028), - [anon_sym_3] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), - }, - [1831] = { - [sym_renaming] = STATE(3175), - [anon_sym_module] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5032), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(3143), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(3143), + [sym__atoms1] = STATE(3144), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5034), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), + }, + [1831] = { + [sym_primitive] = STATE(3146), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3146), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3146), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3146), + [sym_abstract] = STATE(3146), + [sym_private] = STATE(3146), + [sym_function_clause] = STATE(3146), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3146), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3147), + [sym_infix] = STATE(3146), + [sym_data] = STATE(3146), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3146), + [sym_macro] = STATE(3146), + [sym_test] = STATE(3146), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3146), + [sym_record_signature_only] = STATE(3146), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3146), + [sym_syntax] = STATE(3146), + [sym_record] = STATE(3146), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3146), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3146), + [sym_mutual] = STATE(3146), + [sym_postulate] = STATE(3146), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(5087), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1832] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3177), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5036), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1355), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1833] = { - [anon_sym_LBRACE] = ACTIONS(5038), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(3149), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1834] = { - [sym__import_name] = STATE(3180), - [sym__comma_import_names1] = STATE(3181), - [anon_sym_module] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(5032), + [anon_sym_SEMI] = ACTIONS(5091), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5091), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5042), }, [1835] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5024), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(211), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(230), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_record_assignments] = STATE(211), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_] = ACTIONS(1363), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(1369), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1836] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5024), + [sym__const_right_arrow] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(479), }, [1837] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_renaming] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_hiding] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), - }, - [1838] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5044), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5093), + }, + [1838] = { + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(3152), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [1839] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5024), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2383), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1840] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(5046), - [anon_sym_hiding] = ACTIONS(5048), - [anon_sym_using] = ACTIONS(5048), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_renaming] = ACTIONS(5054), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(3153), + [aux_sym__open_args1_repeat1] = STATE(3153), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(1955), + [anon_sym_quoteTerm] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1957), + [aux_sym_integer_token1] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1961), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1963), + [sym_qualified_name] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_quote] = ACTIONS(1955), + [anon_sym_3] = ACTIONS(1965), + [anon_sym_Prop] = ACTIONS(1955), + [sym__const_ellipsis] = ACTIONS(1955), + [anon_sym_record] = ACTIONS(1967), + [anon_sym_] = ACTIONS(1969), + [anon_sym_unquote] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1975), + [anon_sym_Set] = ACTIONS(1955), }, [1841] = { - [sym__atom_no_curly] = STATE(747), - [sym_literal] = STATE(733), - [sym_record_assignments] = STATE(733), - [sym__atom_curly] = STATE(747), - [sym_atom] = STATE(1841), - [aux_sym__open_args1_repeat1] = STATE(1841), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5060), - [anon_sym_unquote] = ACTIONS(5057), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5063), - [anon_sym_Set] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5066), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5057), - [anon_sym_quoteTerm] = ACTIONS(5057), - [anon_sym_renaming] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(5057), - [sym__const_ellipsis] = ACTIONS(5057), - [anon_sym_record] = ACTIONS(5069), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5057), - [anon_sym_] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5075), - [anon_sym_LPAREN_PIPE] = ACTIONS(5078), - [anon_sym_LBRACE] = ACTIONS(5081), - [anon_sym_hiding] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(5084), - [anon_sym_Prop] = ACTIONS(5057), - [anon_sym_3] = ACTIONS(5087), - [anon_sym_public] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(737), + [anon_sym_SEMI] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(737), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(5097), }, [1842] = { - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_3] = ACTIONS(2065), + [sym_primitive] = STATE(3155), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3155), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3155), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3155), + [sym_abstract] = STATE(3155), + [sym_private] = STATE(3155), + [sym_function_clause] = STATE(3155), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3155), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3156), + [sym_infix] = STATE(3155), + [sym_data] = STATE(3155), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3155), + [sym_macro] = STATE(3155), + [sym_test] = STATE(3155), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3155), + [sym_record_signature_only] = STATE(3155), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3155), + [sym_syntax] = STATE(3155), + [sym_record] = STATE(3155), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3155), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3155), + [sym_mutual] = STATE(3155), + [sym_postulate] = STATE(3155), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1843] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5090), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5099), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1844] = { - [sym_primitive] = STATE(3184), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3184), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3184), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3184), - [sym_abstract] = STATE(3184), - [sym_private] = STATE(3184), - [sym_function_clause] = STATE(3184), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(3158), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3158), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3158), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3158), + [sym_abstract] = STATE(3158), + [sym_private] = STATE(3158), + [sym_function_clause] = STATE(3158), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3184), + [sym_open] = STATE(3158), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3158), + [sym_data] = STATE(3158), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3184), - [sym_data] = STATE(3184), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3184), - [sym_macro] = STATE(3184), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3184), - [sym_record_signature_only] = STATE(3184), - [sym_atom] = STATE(158), + [sym_instance] = STATE(3158), + [sym_macro] = STATE(3158), + [sym_test] = STATE(3158), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3158), + [sym_record_signature_only] = STATE(3158), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3158), + [sym_syntax] = STATE(3158), + [sym_record] = STATE(3158), [sym_do] = STATE(43), - [sym_pattern] = STATE(3184), - [sym_syntax] = STATE(3184), - [sym_record] = STATE(3184), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3184), - [sym_generalize] = STATE(3184), - [sym_mutual] = STATE(3184), - [sym_postulate] = STATE(3184), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3158), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3158), + [sym_mutual] = STATE(3158), + [sym_postulate] = STATE(3158), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1845] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3160), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5101), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1846] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5090), + [anon_sym_LBRACE] = ACTIONS(5103), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1847] = { - [anon_sym_COLON] = ACTIONS(3026), - [anon_sym_SEMI] = ACTIONS(2814), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_2] = ACTIONS(5065), [sym_pragma] = ACTIONS(3), }, [1848] = { - [sym_do] = STATE(915), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(915), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(915), - [sym_lambda] = STATE(915), - [sym__application] = STATE(915), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5065), }, [1849] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1850] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5105), + [sym_pragma] = ACTIONS(3), }, [1851] = { - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [1852] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5092), + [anon_sym_SEMI] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1853] = { - [sym__field_assignments1] = STATE(3186), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5092), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(5109), }, [1854] = { - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1855] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [sym_anonymous_name] = STATE(3138), + [sym_typed_binding] = STATE(3169), + [sym_untyped_binding] = STATE(3169), + [sym__lambda_binding] = STATE(3170), + [sym__binding_name] = STATE(3141), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5071), + [anon_sym_] = ACTIONS(5073), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(5081), + [sym_name] = ACTIONS(5083), }, [1856] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5094), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3172), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5111), }, [1857] = { - [anon_sym_RPAREN] = ACTIONS(5094), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3173), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5111), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1858] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3189), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5096), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3174), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1859] = { - [anon_sym_LBRACE] = ACTIONS(5098), - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [aux_sym__open_args1_repeat1] = STATE(3176), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(3176), + [sym__atoms1] = STATE(3177), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [1860] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5094), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3179), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3179), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3179), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3179), + [sym_abstract] = STATE(3179), + [sym_private] = STATE(3179), + [sym_function_clause] = STATE(3179), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3179), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3180), + [sym_infix] = STATE(3179), + [sym_data] = STATE(3179), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3179), + [sym_macro] = STATE(3179), + [sym_test] = STATE(3179), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3179), + [sym_record_signature_only] = STATE(3179), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3179), + [sym_syntax] = STATE(3179), + [sym_record] = STATE(3179), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3179), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3179), + [sym_mutual] = STATE(3179), + [sym_postulate] = STATE(3179), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(5115), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1861] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5094), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3182), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5117), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1862] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3183), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [1863] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5100), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3184), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [1864] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5094), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3185), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [1865] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1865), - [aux_sym__open_args1_repeat1] = STATE(1865), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_unquote] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5120), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), - [anon_sym_3] = ACTIONS(5132), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_literal] = STATE(1852), + [sym_record_assignments] = STATE(1852), + [sym_atom] = STATE(3171), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_Prop] = ACTIONS(2918), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_record] = ACTIONS(2936), + [anon_sym_] = ACTIONS(2940), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), }, [1866] = { - [sym_literal] = STATE(792), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(802), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(803), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3187), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5121), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1867] = { - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_3] = ACTIONS(809), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(3188), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1868] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5135), + [anon_sym_SEMI] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [1869] = { - [anon_sym_RPAREN] = ACTIONS(5135), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1870] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3194), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(1852), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(1868), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_record_assignments] = STATE(1852), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_] = ACTIONS(2940), + [sym__const_right_arrow] = ACTIONS(5123), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), [sym_pragma] = ACTIONS(3), }, [1871] = { - [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_SEMI] = ACTIONS(5125), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5125), }, [1872] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5135), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_literal] = STATE(1852), + [sym_record_assignments] = STATE(1852), + [sym_atom] = STATE(1872), + [aux_sym__open_args1_repeat1] = STATE(1872), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5130), + [sym__const_lambda] = ACTIONS(1527), + [anon_sym_quoteGoal] = ACTIONS(1527), + [aux_sym_integer_token1] = ACTIONS(5133), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5127), + [anon_sym_quoteTerm] = ACTIONS(5127), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5139), + [sym_qualified_name] = ACTIONS(5127), + [anon_sym_quote] = ACTIONS(5127), + [sym__const_right_arrow] = ACTIONS(1527), + [anon_sym_tactic] = ACTIONS(1527), + [sym__const_ellipsis] = ACTIONS(5127), + [anon_sym_record] = ACTIONS(5142), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(5127), + [anon_sym_] = ACTIONS(5145), + [anon_sym_3] = ACTIONS(5148), + [anon_sym_DOT] = ACTIONS(5151), + [anon_sym_unquote] = ACTIONS(5127), + [anon_sym_LBRACE] = ACTIONS(5154), + [sym__const_forall] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(5157), + [anon_sym_Set] = ACTIONS(5127), [sym_pragma] = ACTIONS(3), }, [1873] = { + [sym__newline] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_with] = ACTIONS(5160), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(5160), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5160), + [anon_sym_where] = ACTIONS(5160), + [anon_sym_rewrite] = ACTIONS(5160), + [anon_sym_module] = ACTIONS(5160), }, [1874] = { - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_3] = ACTIONS(1397), + [sym_catchall_pragma] = STATE(3192), + [sym_lambda_clause] = STATE(3194), + [sym_literal] = STATE(1852), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [aux_sym__open_args1_repeat1] = STATE(3193), + [sym__expr2] = STATE(3195), + [sym_do] = STATE(3195), + [sym_atom] = STATE(1868), + [sym_lambda_clause_absurd] = STATE(3194), + [sym__lambda_clause] = STATE(3194), + [sym_record_assignments] = STATE(1852), + [sym__application] = STATE(3195), + [sym_let] = STATE(3195), + [sym_lambda] = STATE(3195), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_] = ACTIONS(2940), + [anon_sym_3] = ACTIONS(2938), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), }, [1875] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5141), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3196), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [1876] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5135), - [sym_pragma] = ACTIONS(3), - }, - [1877] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5143), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - }, - [1878] = { - [sym_primitive] = STATE(3198), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3198), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3198), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3198), - [sym_abstract] = STATE(3198), - [sym_private] = STATE(3198), - [sym_function_clause] = STATE(3198), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3198), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3198), - [sym_data] = STATE(3198), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3198), - [sym_macro] = STATE(3198), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3198), - [sym_record_signature_only] = STATE(3198), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3198), - [sym_syntax] = STATE(3198), - [sym_record] = STATE(3198), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3198), - [sym_generalize] = STATE(3198), - [sym_mutual] = STATE(3198), - [sym_postulate] = STATE(3198), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [1879] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1880] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5143), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [1881] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1882] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [1883] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1883), - [aux_sym__open_args1_repeat1] = STATE(1883), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_unquote] = ACTIONS(5102), - [anon_sym_RPAREN] = ACTIONS(3096), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5145), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_3] = ACTIONS(5132), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), - }, - [1884] = { - [sym_literal] = STATE(792), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(802), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(822), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), - }, - [1885] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, - [1886] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), + [1877] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + }, + [1878] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3198), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5164), + }, + [1879] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3199), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5164), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [1880] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), [sym_expr] = STATE(3200), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5148), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, - [1887] = { - [sym_primitive] = STATE(3202), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3202), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), + [1881] = { [sym_let] = STATE(43), - [sym_module_macro] = STATE(3202), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3203), - [sym_field] = STATE(3202), - [sym_abstract] = STATE(3202), - [sym_private] = STATE(3202), - [sym_function_clause] = STATE(3202), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(3201), + [aux_sym__open_args1_repeat1] = STATE(1118), [sym__expr2] = STATE(43), - [sym_open] = STATE(3202), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3202), - [sym_data] = STATE(3202), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3202), - [sym_macro] = STATE(3202), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3202), - [sym_record_signature_only] = STATE(3202), - [sym_atom] = STATE(158), [sym_do] = STATE(43), - [sym_pattern] = STATE(3202), - [sym_syntax] = STATE(3202), - [sym_record] = STATE(3202), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3202), - [sym_generalize] = STATE(3202), - [sym_mutual] = STATE(3202), - [sym_postulate] = STATE(3202), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(5150), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), + }, + [1882] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3203), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5166), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [1883] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3204), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [1884] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3205), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), + }, + [1885] = { + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [sym_literal] = STATE(1876), + [sym_record_assignments] = STATE(1876), + [sym_atom] = STATE(3197), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2972), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [anon_sym_3] = ACTIONS(2970), + [anon_sym_Prop] = ACTIONS(2962), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_record] = ACTIONS(2966), + [anon_sym_] = ACTIONS(2968), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), + }, + [1886] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3207), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5170), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [1887] = { + [sym__expr2] = STATE(3210), + [sym_do] = STATE(3210), + [sym_literal] = STATE(1876), + [sym_atom] = STATE(1891), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [sym_record_assignments] = STATE(1876), + [aux_sym__open_args1_repeat1] = STATE(3209), + [sym_let] = STATE(3210), + [sym_lambda] = STATE(3210), + [sym__application] = STATE(3210), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_3] = ACTIONS(2970), + [anon_sym_] = ACTIONS(2968), + [sym__const_right_arrow] = ACTIONS(5172), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), + [sym_pragma] = ACTIONS(3), }, [1888] = { - [sym_typed_binding] = STATE(3211), - [sym_anonymous_name] = STATE(3210), - [sym_untyped_binding] = STATE(3211), - [sym__lambda_binding] = STATE(3212), - [sym__binding_name] = STATE(3213), - [anon_sym__] = ACTIONS(5152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5154), - [anon_sym_] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_LBRACE] = ACTIONS(5162), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(521), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [sym_name] = ACTIONS(5166), + [sym_catchall_pragma] = STATE(1887), + [sym_lambda_clause] = STATE(1892), + [sym_literal] = STATE(1876), + [aux_sym__lambda_where_block_repeat1] = STATE(3212), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [aux_sym__open_args1_repeat1] = STATE(1890), + [sym__expr2] = STATE(1893), + [sym_do] = STATE(1893), + [sym_atom] = STATE(1891), + [sym_lambda_clause_absurd] = STATE(1892), + [sym__lambda_clause] = STATE(1892), + [sym_record_assignments] = STATE(1876), + [sym__application] = STATE(1893), + [sym_let] = STATE(1893), + [sym_lambda] = STATE(1893), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [sym__const_right_arrow] = ACTIONS(2964), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_] = ACTIONS(2968), + [anon_sym_3] = ACTIONS(2970), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym__dedent] = ACTIONS(5174), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), }, [1889] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1890] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3214), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(5148), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(1876), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1891), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [sym_record_assignments] = STATE(1876), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_3] = ACTIONS(2970), + [anon_sym_] = ACTIONS(2968), + [sym__const_right_arrow] = ACTIONS(5172), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), + [sym_pragma] = ACTIONS(3), }, [1891] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5168), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [1892] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3217), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5170), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1893] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3218), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(5172), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__newline] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1894] = { - [sym__atom_no_curly] = STATE(1903), - [sym_literal] = STATE(1885), - [sym_record_assignments] = STATE(1885), - [sym__atom_curly] = STATE(1903), - [sym_atom] = STATE(3199), - [anon_sym__] = ACTIONS(2922), - [anon_sym_unquote] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5174), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(5176), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_] = ACTIONS(5178), - [anon_sym_DOT] = ACTIONS(5180), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_3] = ACTIONS(2952), - [aux_sym_string_token1] = ACTIONS(2948), - [anon_sym_Prop] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2848), + [sym_pragma] = ACTIONS(3), }, [1895] = { + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + }, + [1896] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3224), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [1896] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3226), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1897] = { - [sym__atom_no_curly] = STATE(3237), - [sym_literal] = STATE(3227), - [aux_sym__open_args1_repeat1] = STATE(3238), - [sym__atom_curly] = STATE(3237), - [sym_record_assignments] = STATE(3227), - [sym_atom] = STATE(3238), - [sym__atoms1] = STATE(3239), - [anon_sym__] = ACTIONS(5186), - [anon_sym_unquote] = ACTIONS(5186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(3090), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5190), - [anon_sym_Set] = ACTIONS(5186), - [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_RBRACE] = ACTIONS(3082), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5186), - [anon_sym_quoteTerm] = ACTIONS(5186), - [anon_sym_quote] = ACTIONS(5186), - [sym__const_ellipsis] = ACTIONS(5186), - [anon_sym_record] = ACTIONS(5194), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_LPAREN_PIPE] = ACTIONS(5200), - [anon_sym_LBRACE] = ACTIONS(5202), - [anon_sym_3] = ACTIONS(5204), - [aux_sym_string_token1] = ACTIONS(5206), - [anon_sym_Prop] = ACTIONS(5186), }, [1898] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3240), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym__expr2] = STATE(931), + [sym_do] = STATE(931), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(931), + [sym_lambda] = STATE(931), + [sym__application] = STATE(931), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [1899] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3241), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1900] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5208), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [1901] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(5210), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5178), }, [1902] = { - [sym_literal] = STATE(3244), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3254), - [aux_sym__open_args1_repeat1] = STATE(3255), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3256), - [sym__atom_curly] = STATE(3254), - [sym_record_assignments] = STATE(3244), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5212), - [anon_sym_unquote] = ACTIONS(5212), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(5214), - [anon_sym_Set] = ACTIONS(5212), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5218), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5212), - [anon_sym_quoteTerm] = ACTIONS(5212), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5212), - [sym__const_ellipsis] = ACTIONS(5212), - [anon_sym_record] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_] = ACTIONS(5222), - [anon_sym_DOT] = ACTIONS(5224), - [anon_sym_LPAREN_PIPE] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(5228), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(5230), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(5212), - [anon_sym_3] = ACTIONS(5232), + [anon_sym_RPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1903] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(5178), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), }, [1904] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_literal] = STATE(1885), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(1903), - [sym_record_assignments] = STATE(1885), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2934), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_] = ACTIONS(5234), - [anon_sym__] = ACTIONS(2922), - [anon_sym_unquote] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5236), - [anon_sym_LPAREN] = ACTIONS(5238), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(5180), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(5240), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5178), }, [1905] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3216), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), }, [1906] = { - [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(5182), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5208), }, [1907] = { - [sym__newline] = ACTIONS(5242), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5178), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5242), }, [1908] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(3261), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [1909] = { - [sym__declaration_block] = STATE(3262), - [sym__newline] = ACTIONS(5242), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(5184), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5242), }, [1910] = { - [sym__field_assignments1] = STATE(1419), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(2294), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1910), + [aux_sym__open_args1_repeat1] = STATE(1910), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_quoteTerm] = ACTIONS(5186), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(5213), + [anon_sym_unquote] = ACTIONS(5186), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [1911] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [anon_sym_PIPE_RPAREN] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(884), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [1912] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5244), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5219), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1913] = { - [sym_primitive] = STATE(3264), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3264), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3264), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3264), - [sym_abstract] = STATE(3264), - [sym_private] = STATE(3264), - [sym_function_clause] = STATE(3264), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(3220), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3220), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3220), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3220), + [sym_abstract] = STATE(3220), + [sym_private] = STATE(3220), + [sym_function_clause] = STATE(3220), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3264), + [sym_open] = STATE(3220), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3220), + [sym_data] = STATE(3220), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3264), - [sym_data] = STATE(3264), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3264), - [sym_macro] = STATE(3264), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3264), - [sym_record_signature_only] = STATE(3264), - [sym_atom] = STATE(158), + [sym_instance] = STATE(3220), + [sym_macro] = STATE(3220), + [sym_test] = STATE(3220), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3220), + [sym_record_signature_only] = STATE(3220), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3220), + [sym_syntax] = STATE(3220), + [sym_record] = STATE(3220), [sym_do] = STATE(43), - [sym_pattern] = STATE(3264), - [sym_syntax] = STATE(3264), - [sym_record] = STATE(3264), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3264), - [sym_generalize] = STATE(3264), - [sym_mutual] = STATE(3264), - [sym_postulate] = STATE(3264), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3220), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3220), + [sym_mutual] = STATE(3220), + [sym_postulate] = STATE(3220), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1914] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1915] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5244), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5219), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1916] = { - [anon_sym_COLON] = ACTIONS(5246), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5248), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), }, [1917] = { - [anon_sym_COLON] = ACTIONS(5250), - [anon_sym_2] = ACTIONS(5248), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5221), [sym_pragma] = ACTIONS(3), }, [1918] = { - [sym_do] = STATE(3268), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3268), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3268), - [sym_lambda] = STATE(3268), - [sym__application] = STATE(3268), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__field_assignments1] = STATE(3222), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5221), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1919] = { - [sym_do] = STATE(3269), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3269), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3269), - [sym_lambda] = STATE(3269), - [sym__application] = STATE(3269), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), }, [1920] = { - [sym_do] = STATE(3270), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3270), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3270), - [sym_lambda] = STATE(3270), - [sym__application] = STATE(3270), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), }, [1921] = { - [sym_do] = STATE(3271), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3271), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3271), - [sym_lambda] = STATE(3271), - [sym__application] = STATE(3271), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5223), }, [1922] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(5223), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_PIPE_RPAREN] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [1923] = { - [anon_sym_RPAREN] = ACTIONS(5252), + [anon_sym_PIPE_RPAREN] = ACTIONS(5223), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1924] = { - [anon_sym_COLON] = ACTIONS(5254), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3225), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5225), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1925] = { - [anon_sym_COLON] = ACTIONS(5256), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(5227), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5248), [sym_pragma] = ACTIONS(3), }, [1926] = { - [sym_do] = STATE(3275), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3275), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3275), - [sym_lambda] = STATE(3275), - [sym__application] = STATE(3275), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5223), }, [1927] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5223), + [sym_pragma] = ACTIONS(3), }, [1928] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), }, [1929] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5229), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [anon_sym_PIPE_RPAREN] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), }, [1930] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5258), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [1931] = { - [sym__field_assignments1] = STATE(3277), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5258), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [1932] = { + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1932), + [aux_sym__open_args1_repeat1] = STATE(1932), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_quoteTerm] = ACTIONS(5186), + [anon_sym_RPAREN] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [anon_sym_PIPE_RPAREN] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5231), + [anon_sym_unquote] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5213), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [1933] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(899), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [1934] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5234), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5260), }, [1935] = { - [anon_sym_RPAREN] = ACTIONS(5260), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3229), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3229), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3229), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3229), + [sym_abstract] = STATE(3229), + [sym_private] = STATE(3229), + [sym_function_clause] = STATE(3229), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3229), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3229), + [sym_data] = STATE(3229), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3229), + [sym_macro] = STATE(3229), + [sym_test] = STATE(3229), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3229), + [sym_record_signature_only] = STATE(3229), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3229), + [sym_syntax] = STATE(3229), + [sym_record] = STATE(3229), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3229), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3229), + [sym_mutual] = STATE(3229), + [sym_postulate] = STATE(3229), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1936] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3280), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5262), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [1937] = { - [anon_sym_LBRACE] = ACTIONS(5264), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5234), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1938] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5260), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [1939] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5260), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3231), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5236), }, [1940] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(5238), }, [1941] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5266), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [1942] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5260), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(3239), + [sym_typed_binding] = STATE(3240), + [sym_untyped_binding] = STATE(3240), + [sym__lambda_binding] = STATE(3241), + [sym__binding_name] = STATE(3242), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5242), + [anon_sym_] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_LBRACE] = ACTIONS(5250), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(555), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [sym_name] = ACTIONS(5254), }, [1943] = { - [sym__atom_no_curly] = STATE(866), - [sym_literal] = STATE(856), - [sym_record_assignments] = STATE(856), - [sym__atom_curly] = STATE(866), - [sym_atom] = STATE(1943), - [aux_sym__open_args1_repeat1] = STATE(1943), - [anon_sym__] = ACTIONS(5268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5271), - [anon_sym_unquote] = ACTIONS(5268), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5274), - [anon_sym_Set] = ACTIONS(5268), - [anon_sym_LPAREN] = ACTIONS(5277), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3096), - [sym_qualified_name] = ACTIONS(5268), - [anon_sym_quoteTerm] = ACTIONS(5268), - [anon_sym_quote] = ACTIONS(5268), - [sym__const_ellipsis] = ACTIONS(5268), - [anon_sym_record] = ACTIONS(5280), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5268), - [anon_sym_] = ACTIONS(5283), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_LPAREN_PIPE] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5292), - [anon_sym_3] = ACTIONS(5295), - [aux_sym_string_token1] = ACTIONS(5298), - [anon_sym_Prop] = ACTIONS(5268), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3243), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(5236), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [1944] = { - [sym_literal] = STATE(872), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(882), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(883), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(884), - [sym__atom_curly] = STATE(882), - [sym_record_assignments] = STATE(872), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1363), - [anon_sym_unquote] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(1365), - [anon_sym_Set] = ACTIONS(1363), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1363), - [anon_sym_quoteTerm] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1363), - [sym__const_ellipsis] = ACTIONS(1363), - [anon_sym_record] = ACTIONS(1371), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_] = ACTIONS(1373), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_LPAREN_PIPE] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(1381), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(1363), - [anon_sym_3] = ACTIONS(1383), + [sym__atom_curly] = STATE(3254), + [sym__atom_no_curly] = STATE(3254), + [sym_literal] = STATE(3244), + [aux_sym__open_args1_repeat1] = STATE(3255), + [sym_record_assignments] = STATE(3244), + [sym_atom] = STATE(3255), + [sym__atoms1] = STATE(3256), + [anon_sym__] = ACTIONS(5256), + [anon_sym_quoteTerm] = ACTIONS(5256), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5262), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5264), + [sym_qualified_name] = ACTIONS(5256), + [anon_sym_quote] = ACTIONS(5256), + [anon_sym_3] = ACTIONS(5266), + [anon_sym_Prop] = ACTIONS(5256), + [sym__const_ellipsis] = ACTIONS(5256), + [anon_sym_record] = ACTIONS(5268), + [anon_sym_] = ACTIONS(5270), + [anon_sym_unquote] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(5274), + [aux_sym_string_token1] = ACTIONS(5276), + [anon_sym_Set] = ACTIONS(5256), }, [1945] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [anon_sym_PIPE_RPAREN] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_primitive] = STATE(3258), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3258), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3258), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3258), + [sym_abstract] = STATE(3258), + [sym_private] = STATE(3258), + [sym_function_clause] = STATE(3258), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3258), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3259), + [sym_infix] = STATE(3258), + [sym_data] = STATE(3258), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3258), + [sym_macro] = STATE(3258), + [sym_test] = STATE(3258), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3258), + [sym_record_signature_only] = STATE(3258), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3258), + [sym_syntax] = STATE(3258), + [sym_record] = STATE(3258), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3258), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3258), + [sym_mutual] = STATE(3258), + [sym_postulate] = STATE(3258), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(5278), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1946] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5301), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3261), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5280), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [1947] = { - [anon_sym_RPAREN] = ACTIONS(5301), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3262), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [1948] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3285), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3263), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1949] = { - [anon_sym_LBRACE] = ACTIONS(5305), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3264), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [1950] = { + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_literal] = STATE(1938), + [sym_record_assignments] = STATE(1938), + [sym_atom] = STATE(3230), + [anon_sym__] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5284), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5301), + [aux_sym_integer_token1] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(5286), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_Prop] = ACTIONS(3028), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_record] = ACTIONS(3044), + [anon_sym_] = ACTIONS(5288), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_DOT] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5292), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), }, [1951] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5301), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3271), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1952] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [anon_sym_PIPE_RPAREN] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(3272), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [1953] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5307), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [1954] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5301), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5296), }, [1955] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5309), + [sym_literal] = STATE(1938), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(1957), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_record_assignments] = STATE(1938), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_] = ACTIONS(5298), + [anon_sym__] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5302), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_DOT] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5304), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), }, [1956] = { - [sym_primitive] = STATE(3289), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3289), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3289), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3289), - [sym_abstract] = STATE(3289), - [sym_private] = STATE(3289), - [sym_function_clause] = STATE(3289), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3289), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3289), - [sym_data] = STATE(3289), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3289), - [sym_macro] = STATE(3289), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3289), - [sym_record_signature_only] = STATE(3289), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3289), - [sym_syntax] = STATE(3289), - [sym_record] = STATE(3289), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3289), - [sym_generalize] = STATE(3289), - [sym_mutual] = STATE(3289), - [sym_postulate] = STATE(3289), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5306), + [anon_sym_PIPE] = ACTIONS(479), }, [1957] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [1958] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5309), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5306), }, [1959] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(3279), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3289), + [sym__atom_no_curly] = STATE(3289), + [aux_sym__open_args1_repeat1] = STATE(3290), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3291), + [sym_record_assignments] = STATE(3279), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5308), + [anon_sym_quoteTerm] = ACTIONS(5308), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(5310), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(5308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5316), + [sym_qualified_name] = ACTIONS(5308), + [anon_sym_quote] = ACTIONS(5308), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(5308), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(5318), + [sym__const_ellipsis] = ACTIONS(5308), + [anon_sym_3] = ACTIONS(5320), + [anon_sym_] = ACTIONS(5322), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(5328), + [anon_sym_Set] = ACTIONS(5308), }, [1960] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(5330), + [anon_sym_in] = ACTIONS(5330), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1961] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1961), - [aux_sym__open_args1_repeat1] = STATE(1961), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_unquote] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5311), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_3] = ACTIONS(5132), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(3292), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), + [sym_pragma] = ACTIONS(3), }, [1962] = { - [sym_literal] = STATE(792), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(802), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(903), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym__declaration_block] = STATE(3293), + [sym__newline] = ACTIONS(5330), + [anon_sym_in] = ACTIONS(5330), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [1963] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3290), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(1581), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(2570), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1964] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4859), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4861), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), }, [1965] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3291), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [1966] = { - [anon_sym_COLON] = ACTIONS(5314), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1966), + [aux_sym__open_args1_repeat1] = STATE(1966), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_quoteTerm] = ACTIONS(5186), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5316), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5332), + [anon_sym_unquote] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5213), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [1967] = { - [anon_sym_COLON] = ACTIONS(5318), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5316), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(919), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [1968] = { - [anon_sym_COLON] = ACTIONS(5320), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5335), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1969] = { - [anon_sym_COLON] = ACTIONS(5322), - [anon_sym_2] = ACTIONS(5316), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3295), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3295), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3295), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3295), + [sym_abstract] = STATE(3295), + [sym_private] = STATE(3295), + [sym_function_clause] = STATE(3295), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3295), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3295), + [sym_data] = STATE(3295), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3295), + [sym_macro] = STATE(3295), + [sym_test] = STATE(3295), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3295), + [sym_record_signature_only] = STATE(3295), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3295), + [sym_syntax] = STATE(3295), + [sym_record] = STATE(3295), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3295), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3295), + [sym_mutual] = STATE(3295), + [sym_postulate] = STATE(3295), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [1970] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3633), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [1971] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3297), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5335), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1972] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3298), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3296), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1973] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [1974] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3297), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5324), }, [1975] = { - [anon_sym_RPAREN] = ACTIONS(5324), + [anon_sym_COLON] = ACTIONS(5337), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5339), [sym_pragma] = ACTIONS(3), }, [1976] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3301), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_COLON] = ACTIONS(5341), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5339), }, [1977] = { - [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_COLON] = ACTIONS(5343), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [1978] = { + [anon_sym_COLON] = ACTIONS(5345), + [anon_sym_2] = ACTIONS(5339), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5324), [sym_pragma] = ACTIONS(3), }, [1979] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1974), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3058), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3303), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1980] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1975), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3058), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3772), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3774), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [1981] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1978), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3304), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [1982] = { - [sym__atom_no_curly] = STATE(931), - [sym_literal] = STATE(918), - [sym_record_assignments] = STATE(918), - [sym__atom_curly] = STATE(931), - [sym_atom] = STATE(1973), - [anon_sym__] = ACTIONS(1425), - [anon_sym_unquote] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3082), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), + }, + [1983] = { [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(3084), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_3] = ACTIONS(1445), - [aux_sym_string_token1] = ACTIONS(1443), - [anon_sym_Prop] = ACTIONS(1425), - }, - [1983] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1986), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5347), }, [1984] = { + [anon_sym_RPAREN] = ACTIONS(5347), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5324), }, [1985] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3307), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5349), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [1986] = { + [anon_sym_LBRACE] = ACTIONS(5351), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5330), [sym_pragma] = ACTIONS(3), }, [1987] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(5347), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5324), [sym_pragma] = ACTIONS(3), }, [1988] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(5347), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), }, [1989] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1974), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5347), }, [1990] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(1975), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3058), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1983), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3122), }, [1991] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1978), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1984), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(3122), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1992] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(1986), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1988), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [1993] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_literal] = STATE(934), + [sym_record_assignments] = STATE(934), + [sym_atom] = STATE(1982), + [anon_sym__] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1453), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(3146), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_Prop] = ACTIONS(1449), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_record] = ACTIONS(1457), + [anon_sym_] = ACTIONS(3142), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3148), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), }, [1994] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1996), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [1995] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5332), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [1996] = { - [sym__field_assignments1] = STATE(3306), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5332), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5353), [sym_pragma] = ACTIONS(3), }, [1997] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1983), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3122), }, [1998] = { - [sym__newline] = ACTIONS(5334), - [anon_sym_where] = ACTIONS(5210), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5334), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1984), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3122), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [1999] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(3307), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1988), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [2000] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1996), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2001] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), - }, - [2000] = { - [anon_sym_COLON] = ACTIONS(5336), - [sym_comment] = ACTIONS(3), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5338), }, - [2001] = { - [anon_sym_COLON] = ACTIONS(5340), - [anon_sym_2] = ACTIONS(5338), + [2002] = { + [sym__newline] = ACTIONS(5355), + [anon_sym_in] = ACTIONS(5355), + [anon_sym_where] = ACTIONS(5296), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [2002] = { - [sym__atom_no_curly] = STATE(747), - [sym_literal] = STATE(733), - [aux_sym__open_args1_repeat1] = STATE(750), - [sym__atom_curly] = STATE(747), - [sym_record_assignments] = STATE(733), - [sym_atom] = STATE(750), - [sym__open_args1] = STATE(3313), - [sym__newline] = ACTIONS(5342), - [anon_sym__] = ACTIONS(1163), - [anon_sym_unquote] = ACTIONS(1163), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5344), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1167), - [anon_sym_Set] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1169), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1163), - [anon_sym_quoteTerm] = ACTIONS(1163), - [anon_sym_renaming] = ACTIONS(5346), - [anon_sym_quote] = ACTIONS(1163), - [sym__const_ellipsis] = ACTIONS(1163), - [anon_sym_record] = ACTIONS(1175), - [anon_sym_using] = ACTIONS(5346), - [anon_sym_QMARK] = ACTIONS(1163), - [anon_sym_] = ACTIONS(5348), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_LPAREN_PIPE] = ACTIONS(1183), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_hiding] = ACTIONS(5346), - [anon_sym_3] = ACTIONS(1189), - [aux_sym_string_token1] = ACTIONS(1187), - [anon_sym_Prop] = ACTIONS(1163), - [anon_sym_public] = ACTIONS(5346), - }, [2003] = { - [sym_import_directive] = STATE(3314), - [aux_sym_module_macro_repeat1] = STATE(3314), - [sym__newline] = ACTIONS(5350), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(3311), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), [sym_pragma] = ACTIONS(3), }, [2004] = { - [sym_do] = STATE(3315), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3315), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3315), - [sym_lambda] = STATE(3315), - [sym__application] = STATE(3315), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(5357), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5359), }, [2005] = { - [sym_do] = STATE(3316), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3316), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3316), - [sym_lambda] = STATE(3316), - [sym__application] = STATE(3316), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(5361), + [anon_sym_2] = ACTIONS(5359), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2006] = { - [sym_do] = STATE(3317), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3317), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3317), - [sym_lambda] = STATE(3317), - [sym__application] = STATE(3317), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(754), + [sym__atom_no_curly] = STATE(754), + [sym_literal] = STATE(739), + [aux_sym__open_args1_repeat1] = STATE(755), + [sym_record_assignments] = STATE(739), + [sym_atom] = STATE(755), + [sym__open_args1] = STATE(3317), + [sym__newline] = ACTIONS(5363), + [anon_sym__] = ACTIONS(1153), + [anon_sym_quoteTerm] = ACTIONS(1153), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1163), + [sym_qualified_name] = ACTIONS(1153), + [anon_sym_quote] = ACTIONS(1153), + [anon_sym_renaming] = ACTIONS(5367), + [anon_sym_3] = ACTIONS(1171), + [anon_sym_Prop] = ACTIONS(1153), + [sym__const_ellipsis] = ACTIONS(1153), + [anon_sym_using] = ACTIONS(5367), + [anon_sym_record] = ACTIONS(1167), + [anon_sym_] = ACTIONS(5369), + [anon_sym_unquote] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_hiding] = ACTIONS(5367), + [aux_sym_string_token1] = ACTIONS(1179), + [anon_sym_Set] = ACTIONS(1153), + [anon_sym_public] = ACTIONS(5367), }, [2007] = { - [sym_do] = STATE(3318), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3318), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3318), - [sym_lambda] = STATE(3318), - [sym__application] = STATE(3318), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [2008] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [sym_import_directive] = STATE(3318), + [aux_sym_module_macro_repeat1] = STATE(3318), + [sym__newline] = ACTIONS(5371), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2718), + }, + [2008] = { + [sym__expr2] = STATE(3319), + [sym_do] = STATE(3319), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3319), + [sym_lambda] = STATE(3319), + [sym__application] = STATE(3319), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2009] = { - [anon_sym_RPAREN] = ACTIONS(5352), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3320), + [sym_do] = STATE(3320), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3320), + [sym_lambda] = STATE(3320), + [sym__application] = STATE(3320), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2010] = { - [anon_sym_COLON] = ACTIONS(5354), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3321), + [sym_do] = STATE(3321), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3321), + [sym_lambda] = STATE(3321), + [sym__application] = STATE(3321), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2011] = { - [anon_sym_COLON] = ACTIONS(5356), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5338), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3322), + [sym_do] = STATE(3322), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3322), + [sym_lambda] = STATE(3322), + [sym__application] = STATE(3322), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [2012] = { - [sym__newline] = ACTIONS(5358), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5358), + [sym_name] = ACTIONS(2862), }, [2013] = { - [sym__declaration_block] = STATE(3322), - [sym__newline] = ACTIONS(5358), + [anon_sym_COLON] = ACTIONS(5373), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5358), }, [2014] = { - [sym_typed_binding] = STATE(2014), - [sym_anonymous_name] = STATE(957), - [sym_untyped_binding] = STATE(2014), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(2014), - [sym__binding_name] = STATE(960), - [anon_sym__] = ACTIONS(5360), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5363), - [anon_sym_] = ACTIONS(5366), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym_DOT] = ACTIONS(5369), - [anon_sym_LPAREN] = ACTIONS(5372), - [anon_sym_LBRACE] = ACTIONS(5375), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(5378), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5381), + [anon_sym_RPAREN] = ACTIONS(5375), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2015] = { - [anon_sym_COLON] = ACTIONS(5384), + [anon_sym_COLON] = ACTIONS(5377), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5359), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5386), }, [2016] = { - [anon_sym_COLON] = ACTIONS(5388), - [anon_sym_2] = ACTIONS(5386), + [sym__newline] = ACTIONS(5379), + [anon_sym_in] = ACTIONS(5379), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2017] = { - [sym_do] = STATE(3326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3326), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3326), - [sym_lambda] = STATE(3326), - [sym__application] = STATE(3326), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__declaration_block] = STATE(3326), + [sym__newline] = ACTIONS(5379), + [anon_sym_in] = ACTIONS(5379), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [2018] = { - [sym_do] = STATE(3327), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3327), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3327), - [sym_lambda] = STATE(3327), - [sym__application] = STATE(3327), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_anonymous_name] = STATE(961), + [sym_typed_binding] = STATE(2018), + [sym_untyped_binding] = STATE(2018), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(2018), + [sym__binding_name] = STATE(964), + [anon_sym__] = ACTIONS(5381), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5384), + [anon_sym_] = ACTIONS(5387), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(5390), + [anon_sym_LPAREN] = ACTIONS(5393), + [anon_sym_LBRACE] = ACTIONS(5396), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(5399), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(5402), }, [2019] = { - [sym_do] = STATE(3328), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3328), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3328), - [sym_lambda] = STATE(3328), - [sym__application] = STATE(3328), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5407), }, [2020] = { - [sym_do] = STATE(3329), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3329), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3329), - [sym_lambda] = STATE(3329), - [sym__application] = STATE(3329), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [2021] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(5409), + [anon_sym_2] = ACTIONS(5407), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym_name] = ACTIONS(2718), + }, + [2021] = { + [sym__expr2] = STATE(3330), + [sym_do] = STATE(3330), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3330), + [sym_lambda] = STATE(3330), + [sym__application] = STATE(3330), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2022] = { - [anon_sym_RPAREN] = ACTIONS(5390), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3331), + [sym_do] = STATE(3331), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3331), + [sym_lambda] = STATE(3331), + [sym__application] = STATE(3331), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2023] = { - [anon_sym_COLON] = ACTIONS(5392), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3332), + [sym_do] = STATE(3332), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3332), + [sym_lambda] = STATE(3332), + [sym__application] = STATE(3332), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2024] = { - [anon_sym_COLON] = ACTIONS(5394), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5386), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3333), + [sym_do] = STATE(3333), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3333), + [sym_lambda] = STATE(3333), + [sym__application] = STATE(3333), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [2025] = { - [sym_typed_binding] = STATE(2025), - [sym_anonymous_name] = STATE(966), - [sym_untyped_binding] = STATE(2025), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(2025), - [sym__binding_name] = STATE(969), - [anon_sym__] = ACTIONS(5396), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5399), - [anon_sym_] = ACTIONS(5402), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_LPAREN] = ACTIONS(5408), - [anon_sym_LBRACE] = ACTIONS(5411), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(5414), - [sym_name] = ACTIONS(5417), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym_name] = ACTIONS(2862), }, [2026] = { - [sym_primitive] = STATE(3333), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3333), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3333), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3334), - [sym_field] = STATE(3333), - [sym_abstract] = STATE(3333), - [sym_private] = STATE(3333), - [sym_function_clause] = STATE(3333), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3333), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3333), - [sym_data] = STATE(3333), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3333), - [sym_macro] = STATE(3333), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3333), - [sym_record_signature_only] = STATE(3333), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3333), - [sym_syntax] = STATE(3333), - [sym_record] = STATE(3333), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3333), - [sym_generalize] = STATE(3333), - [sym_mutual] = STATE(3333), - [sym_postulate] = STATE(3333), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(5411), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2027] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5420), + [anon_sym_RPAREN] = ACTIONS(5413), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2028] = { - [sym_primitive] = STATE(3336), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3336), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3336), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3336), - [sym_abstract] = STATE(3336), - [sym_private] = STATE(3336), - [sym_function_clause] = STATE(3336), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3336), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3336), - [sym_data] = STATE(3336), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3336), - [sym_macro] = STATE(3336), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3336), - [sym_record_signature_only] = STATE(3336), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3336), - [sym_syntax] = STATE(3336), - [sym_record] = STATE(3336), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3336), - [sym_generalize] = STATE(3336), - [sym_mutual] = STATE(3336), - [sym_postulate] = STATE(3336), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [2029] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(5415), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5407), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + }, + [2029] = { + [sym_anonymous_name] = STATE(970), + [sym_typed_binding] = STATE(2029), + [sym_untyped_binding] = STATE(2029), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(2029), + [sym__binding_name] = STATE(973), + [anon_sym__] = ACTIONS(5417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5420), + [anon_sym_] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5426), + [anon_sym_LPAREN] = ACTIONS(5429), + [anon_sym_LBRACE] = ACTIONS(5432), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(5435), + [sym_name] = ACTIONS(5438), }, [2030] = { - [sym_do] = STATE(3337), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3337), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3337), - [sym_lambda] = STATE(3337), - [sym__application] = STATE(3337), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [2031] = { - [sym_do] = STATE(3338), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3338), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3338), - [sym_lambda] = STATE(3338), - [sym__application] = STATE(3338), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [2032] = { - [sym_anonymous_name] = STATE(2035), - [sym__binding_name] = STATE(3343), - [anon_sym__] = ACTIONS(3159), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5422), - [anon_sym_] = ACTIONS(5424), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5441), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5426), - [anon_sym_LBRACE] = ACTIONS(5428), - [sym_name] = ACTIONS(3173), }, [2033] = { - [sym_do] = STATE(3345), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3345), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3345), - [sym_lambda] = STATE(3345), - [sym_open] = STATE(3344), - [sym__application] = STATE(3345), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__field_assignments1] = STATE(3338), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5441), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2034] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3346), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3346), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3346), - [sym__expr2] = STATE(3346), - [sym_lambda] = STATE(3346), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [2035] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2036] = { - [sym_typed_binding] = STATE(2036), - [sym_anonymous_name] = STATE(2035), - [sym_untyped_binding] = STATE(2036), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2038), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3159), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(3171), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(3163), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(5430), - [anon_sym_module] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5443), }, [2037] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1147), + [anon_sym_in] = ACTIONS(5445), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(5432), - [anon_sym_module] = ACTIONS(1147), }, [2038] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), + [anon_sym_module] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym__newline] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [2039] = { - [anon_sym_in] = ACTIONS(5434), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3341), + [sym_do] = STATE(3341), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3341), + [sym_lambda] = STATE(3341), + [sym__application] = STATE(3341), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2040] = { - [sym__newline] = ACTIONS(811), + [sym__expr2] = STATE(3342), + [sym_do] = STATE(3342), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3342), + [sym_lambda] = STATE(3342), + [sym__application] = STATE(3342), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [2041] = { + [sym_anonymous_name] = STATE(2044), + [sym__binding_name] = STATE(3347), + [anon_sym__] = ACTIONS(3192), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5447), + [anon_sym_] = ACTIONS(5449), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5436), + [anon_sym_LPAREN] = ACTIONS(5451), + [anon_sym_LBRACE] = ACTIONS(5453), + [sym_name] = ACTIONS(3206), }, [2042] = { - [anon_sym_RPAREN] = ACTIONS(5436), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(3349), + [sym__expr2] = STATE(3348), + [sym_do] = STATE(3348), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3348), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3348), + [sym_lambda] = STATE(3348), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2043] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3352), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5438), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3350), + [sym_do] = STATE(3350), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3350), + [sym_let] = STATE(3350), + [sym_lambda] = STATE(3350), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2044] = { - [anon_sym_LBRACE] = ACTIONS(5440), + [anon_sym_module] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [2045] = { + [sym_anonymous_name] = STATE(2044), + [sym_typed_binding] = STATE(2045), + [sym_untyped_binding] = STATE(2045), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2047), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3192), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3194), + [sym_name] = ACTIONS(3206), + [anon_sym_] = ACTIONS(3196), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5436), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_LBRACE] = ACTIONS(5455), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(3204), + [sym__const_right_arrow] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2046] = { + [sym__newline] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5436), + [sym__const_right_arrow] = ACTIONS(5457), + [anon_sym_module] = ACTIONS(1303), }, [2047] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_module] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [2048] = { + [anon_sym_RPAREN] = ACTIONS(5443), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5442), [sym_pragma] = ACTIONS(3), }, [2049] = { [sym__newline] = ACTIONS(121), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, [2050] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3356), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5444), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3354), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5459), }, [2051] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2052] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3357), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5444), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3355), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5459), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2053] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3359), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5446), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3356), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2054] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3360), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5448), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3357), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2055] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3359), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5461), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [2056] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3360), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5463), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [2057] = { + [sym__atom_curly] = STATE(2059), [sym__atom_no_curly] = STATE(2059), [sym_literal] = STATE(2049), [sym_record_assignments] = STATE(2049), - [sym__atom_curly] = STATE(2059), - [sym_atom] = STATE(3355), - [anon_sym__] = ACTIONS(3185), - [anon_sym_unquote] = ACTIONS(3185), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3187), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3189), - [anon_sym_Set] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3191), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3185), - [anon_sym_quoteTerm] = ACTIONS(3185), - [anon_sym_quote] = ACTIONS(3185), - [sym__const_ellipsis] = ACTIONS(3185), - [anon_sym_record] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_3] = ACTIONS(3203), - [aux_sym_string_token1] = ACTIONS(3205), - [anon_sym_Prop] = ACTIONS(3185), + [sym_atom] = STATE(3353), + [anon_sym__] = ACTIONS(3208), + [anon_sym_quoteTerm] = ACTIONS(3208), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3210), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3214), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3216), + [sym_qualified_name] = ACTIONS(3208), + [anon_sym_quote] = ACTIONS(3208), + [anon_sym_3] = ACTIONS(3218), + [anon_sym_Prop] = ACTIONS(3208), + [sym__const_ellipsis] = ACTIONS(3208), + [anon_sym_record] = ACTIONS(3220), + [anon_sym_] = ACTIONS(3222), + [anon_sym_unquote] = ACTIONS(3208), + [anon_sym_DOT] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [aux_sym_string_token1] = ACTIONS(3228), + [anon_sym_Set] = ACTIONS(3208), }, - [2056] = { + [2058] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3361), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3362), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [2057] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3363), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2058] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3364), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5465), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2059] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2060] = { + [sym__atom_curly] = STATE(2059), [sym__atom_no_curly] = STATE(2059), [sym_literal] = STATE(2049), [sym_record_assignments] = STATE(2049), - [sym__atom_curly] = STATE(2059), - [sym_atom] = STATE(3365), - [aux_sym__open_args1_repeat1] = STATE(3365), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3185), - [anon_sym_unquote] = ACTIONS(3185), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3187), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3189), - [anon_sym_Set] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3191), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(3185), - [anon_sym_quoteTerm] = ACTIONS(3185), - [anon_sym_quote] = ACTIONS(3185), - [sym__const_ellipsis] = ACTIONS(3185), - [anon_sym_record] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_with] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_LPAREN_PIPE] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_3] = ACTIONS(3203), - [aux_sym_string_token1] = ACTIONS(3205), - [anon_sym_Prop] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(425), + [sym_atom] = STATE(3363), + [aux_sym__open_args1_repeat1] = STATE(3363), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3208), + [anon_sym_quoteTerm] = ACTIONS(3208), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3210), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3208), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3214), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3216), + [sym_qualified_name] = ACTIONS(3208), + [anon_sym_quote] = ACTIONS(3208), + [anon_sym_3] = ACTIONS(3218), + [anon_sym_Prop] = ACTIONS(3208), + [sym__const_ellipsis] = ACTIONS(3208), + [anon_sym_record] = ACTIONS(3220), + [anon_sym_] = ACTIONS(3222), + [anon_sym_unquote] = ACTIONS(3208), + [anon_sym_DOT] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [aux_sym_string_token1] = ACTIONS(3228), + [anon_sym_Set] = ACTIONS(3208), + [anon_sym_module] = ACTIONS(419), }, [2061] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5452), - [anon_sym_with] = ACTIONS(1457), + [sym__newline] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(5467), + [anon_sym_where] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1457), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(737), }, [2062] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), + [sym_primitive] = STATE(3365), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3365), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3365), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3365), + [sym_abstract] = STATE(3365), + [sym_private] = STATE(3365), + [sym_function_clause] = STATE(3365), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_open] = STATE(3365), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3366), + [sym_infix] = STATE(3365), + [sym_data] = STATE(3365), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [sym_instance] = STATE(3365), + [sym_macro] = STATE(3365), + [sym_test] = STATE(3365), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3365), + [sym_record_signature_only] = STATE(3365), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3365), + [sym_syntax] = STATE(3365), + [sym_record] = STATE(3365), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3365), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3365), + [sym_mutual] = STATE(3365), + [sym_postulate] = STATE(3365), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2063] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5469), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5436), [sym_pragma] = ACTIONS(3), }, [2064] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_primitive] = STATE(3368), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3368), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3368), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3368), + [sym_abstract] = STATE(3368), + [sym_private] = STATE(3368), + [sym_function_clause] = STATE(3368), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3368), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3368), + [sym_data] = STATE(3368), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3368), + [sym_macro] = STATE(3368), + [sym_test] = STATE(3368), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3368), + [sym_record_signature_only] = STATE(3368), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3368), + [sym_syntax] = STATE(3368), + [sym_record] = STATE(3368), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3368), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3368), + [sym_mutual] = STATE(3368), + [sym_postulate] = STATE(3368), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2065] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3370), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5471), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5476), }, [2066] = { - [sym_primitive] = STATE(3383), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3383), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3383), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3384), - [sym_field] = STATE(3383), - [sym_abstract] = STATE(3383), - [sym_private] = STATE(3383), - [sym_function_clause] = STATE(3383), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3383), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3383), - [sym_data] = STATE(3383), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3383), - [sym_macro] = STATE(3383), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3383), - [sym_record_signature_only] = STATE(3383), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3383), - [sym_syntax] = STATE(3383), - [sym_record] = STATE(3383), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3383), - [sym_generalize] = STATE(3383), - [sym_mutual] = STATE(3383), - [sym_postulate] = STATE(3383), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(5473), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2067] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5478), + [anon_sym_PIPE_RPAREN] = ACTIONS(5443), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2068] = { - [sym_primitive] = STATE(3386), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3386), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3386), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3386), - [sym_abstract] = STATE(3386), - [sym_private] = STATE(3386), - [sym_function_clause] = STATE(3386), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3386), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3386), - [sym_data] = STATE(3386), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3386), - [sym_macro] = STATE(3386), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3386), - [sym_record_signature_only] = STATE(3386), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3386), - [sym_syntax] = STATE(3386), - [sym_record] = STATE(3386), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3386), - [sym_generalize] = STATE(3386), - [sym_mutual] = STATE(3386), - [sym_postulate] = STATE(3386), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5443), + [sym_pragma] = ACTIONS(3), }, [2069] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + [anon_sym_4] = ACTIONS(5443), }, [2070] = { - [sym_do] = STATE(3387), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3387), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3387), - [sym_lambda] = STATE(3387), - [sym__application] = STATE(3387), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2036), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3188), }, [2071] = { - [sym_do] = STATE(3388), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3388), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3388), - [sym_lambda] = STATE(3388), - [sym__application] = STATE(3388), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2048), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(3188), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2072] = { - [sym_anonymous_name] = STATE(2075), - [sym__binding_name] = STATE(3393), - [anon_sym__] = ACTIONS(3213), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5480), - [anon_sym_] = ACTIONS(5482), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5486), - [sym_name] = ACTIONS(3227), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2068), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2073] = { - [sym_do] = STATE(3395), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3395), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3395), - [sym_lambda] = STATE(3395), - [sym_open] = STATE(3394), - [sym__application] = STATE(3395), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_literal] = STATE(985), + [sym_record_assignments] = STATE(985), + [sym_atom] = STATE(2035), + [anon_sym__] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(3254), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_Prop] = ACTIONS(1561), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_record] = ACTIONS(1577), + [anon_sym_] = ACTIONS(3250), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3256), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), }, [2074] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3396), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3396), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3396), - [sym__expr2] = STATE(3396), - [sym_lambda] = STATE(3396), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2076), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2075] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2076] = { - [sym_typed_binding] = STATE(2076), - [sym_anonymous_name] = STATE(2075), - [sym_untyped_binding] = STATE(2076), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2078), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3213), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3215), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(3225), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(3227), - [anon_sym_] = ACTIONS(3217), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(5488), - [anon_sym_module] = ACTIONS(1143), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5475), + [sym_pragma] = ACTIONS(3), }, [2077] = { - [sym__newline] = ACTIONS(1147), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(5490), - [anon_sym_module] = ACTIONS(1147), }, [2078] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2036), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3188), }, [2079] = { - [anon_sym_RPAREN] = ACTIONS(5476), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2048), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3188), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2080] = { - [anon_sym_in] = ACTIONS(5492), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2068), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2081] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3401), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5494), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2076), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2082] = { - [anon_sym_LBRACE] = ACTIONS(5496), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), }, [2083] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5476), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2084] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2065), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3209), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2085] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2079), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3209), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3374), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5477), }, [2086] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2083), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3375), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5477), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2087] = { - [sym__atom_no_curly] = STATE(1008), - [sym_literal] = STATE(990), - [sym_record_assignments] = STATE(990), - [sym__atom_curly] = STATE(1008), - [sym_atom] = STATE(2064), - [anon_sym__] = ACTIONS(1533), - [anon_sym_unquote] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3297), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(3299), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [anon_sym_] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3241), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_3] = ACTIONS(1563), - [aux_sym_string_token1] = ACTIONS(1559), - [anon_sym_Prop] = ACTIONS(1533), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3376), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2088] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2091), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3378), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5479), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2089] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3379), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5476), }, [2090] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3380), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5481), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2091] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5498), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2093), + [sym__atom_no_curly] = STATE(2093), + [sym_literal] = STATE(2083), + [sym_record_assignments] = STATE(2083), + [sym_atom] = STATE(3373), + [anon_sym__] = ACTIONS(3260), + [anon_sym_quoteTerm] = ACTIONS(3260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3266), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3268), + [sym_qualified_name] = ACTIONS(3260), + [anon_sym_quote] = ACTIONS(3260), + [anon_sym_3] = ACTIONS(3272), + [anon_sym_Prop] = ACTIONS(3260), + [sym__const_ellipsis] = ACTIONS(3260), + [anon_sym_record] = ACTIONS(3270), + [anon_sym_] = ACTIONS(3274), + [anon_sym_unquote] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [aux_sym_string_token1] = ACTIONS(3280), + [anon_sym_Set] = ACTIONS(3260), }, [2092] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3382), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5483), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2093] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3405), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5500), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2094] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_literal] = STATE(2083), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2095), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2093), + [sym__atom_no_curly] = STATE(2093), + [sym_record_assignments] = STATE(2083), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(3260), + [anon_sym_quoteTerm] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(3262), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(3260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_LPAREN_PIPE] = ACTIONS(3268), + [sym_qualified_name] = ACTIONS(3260), + [anon_sym_quote] = ACTIONS(3260), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(3270), + [sym__const_ellipsis] = ACTIONS(3260), + [anon_sym_3] = ACTIONS(3272), + [anon_sym_] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(3280), + [anon_sym_Set] = ACTIONS(3260), + [sym_pragma] = ACTIONS(3), }, [2095] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3406), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5500), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2096] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3408), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5502), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__declaration_block] = STATE(3383), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [2097] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3409), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5504), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5485), + [sym_pragma] = ACTIONS(3), }, [2098] = { - [sym__atom_no_curly] = STATE(2102), - [sym_literal] = STATE(2092), - [sym_record_assignments] = STATE(2092), - [sym__atom_curly] = STATE(2102), - [sym_atom] = STATE(3404), - [anon_sym__] = ACTIONS(3247), - [anon_sym_unquote] = ACTIONS(3247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3251), - [anon_sym_Set] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3247), - [anon_sym_quoteTerm] = ACTIONS(3247), - [anon_sym_quote] = ACTIONS(3247), - [sym__const_ellipsis] = ACTIONS(3247), - [anon_sym_record] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_] = ACTIONS(3257), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_LPAREN_PIPE] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_3] = ACTIONS(3265), - [aux_sym_string_token1] = ACTIONS(3267), - [anon_sym_Prop] = ACTIONS(3247), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2099] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3410), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__expr2] = STATE(3385), + [sym_do] = STATE(3385), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3385), + [sym_lambda] = STATE(3385), + [sym__application] = STATE(3385), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2100] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3412), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5506), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(3386), + [sym_do] = STATE(3386), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3386), + [sym_lambda] = STATE(3386), + [sym__application] = STATE(3386), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [2101] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3413), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_anonymous_name] = STATE(2104), + [sym__binding_name] = STATE(3391), + [anon_sym__] = ACTIONS(3290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5487), + [anon_sym_] = ACTIONS(5489), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5491), + [anon_sym_LBRACE] = ACTIONS(5493), + [sym_name] = ACTIONS(3304), }, [2102] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_open] = STATE(3393), + [sym__expr2] = STATE(3392), + [sym_do] = STATE(3392), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3392), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3392), + [sym_lambda] = STATE(3392), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2103] = { - [sym__atom_no_curly] = STATE(2102), - [sym_literal] = STATE(2092), - [sym_record_assignments] = STATE(2092), - [sym__atom_curly] = STATE(2102), - [sym_atom] = STATE(3414), - [aux_sym__open_args1_repeat1] = STATE(3414), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3247), - [anon_sym_unquote] = ACTIONS(3247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3249), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3251), - [anon_sym_Set] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(3247), - [anon_sym_quoteTerm] = ACTIONS(3247), - [anon_sym_quote] = ACTIONS(3247), - [sym__const_ellipsis] = ACTIONS(3247), - [anon_sym_record] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_] = ACTIONS(3257), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_LPAREN_PIPE] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_3] = ACTIONS(3265), - [aux_sym_string_token1] = ACTIONS(3267), - [anon_sym_Prop] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(425), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3394), + [sym_do] = STATE(3394), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3394), + [sym_let] = STATE(3394), + [sym_lambda] = STATE(3394), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2104] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5508), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(1457), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2105] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym_anonymous_name] = STATE(2104), + [sym_typed_binding] = STATE(2105), + [sym_untyped_binding] = STATE(2105), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2107), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3290), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(3302), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(3294), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(5495), + [anon_sym_module] = ACTIONS(1299), }, [2106] = { + [sym__newline] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5476), + [anon_sym_EQ] = ACTIONS(1303), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(5497), + [anon_sym_module] = ACTIONS(1303), }, [2107] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2108] = { - [sym__newline] = ACTIONS(121), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), + }, + [2109] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5499), + }, + [2110] = { + [anon_sym_RPAREN] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [2111] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(5499), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [2112] = { + [sym__newline] = ACTIONS(121), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [2109] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [2110] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3417), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5510), - }, - [2111] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3418), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5510), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2112] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3420), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5512), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, [2113] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3421), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5514), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3399), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5501), }, [2114] = { - [sym__atom_no_curly] = STATE(2118), - [sym_literal] = STATE(2108), - [sym_record_assignments] = STATE(2108), - [sym__atom_curly] = STATE(2118), - [sym_atom] = STATE(3416), - [anon_sym__] = ACTIONS(3273), - [anon_sym_unquote] = ACTIONS(3273), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3277), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3275), - [anon_sym_Set] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3279), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3273), - [anon_sym_quoteTerm] = ACTIONS(3273), - [anon_sym_quote] = ACTIONS(3273), - [sym__const_ellipsis] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3281), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LPAREN_PIPE] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_3] = ACTIONS(3293), - [aux_sym_string_token1] = ACTIONS(3291), - [anon_sym_Prop] = ACTIONS(3273), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2115] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3422), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3400), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5501), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2116] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3424), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5516), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3401), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2117] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3425), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3402), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2118] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3404), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5503), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2119] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2120), - [sym__atom_curly] = STATE(2118), - [sym_literal] = STATE(2108), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2118), - [sym_record_assignments] = STATE(2108), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(3273), - [anon_sym_unquote] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(3275), - [anon_sym_Set] = ACTIONS(3273), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3273), - [anon_sym_quoteTerm] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3273), - [sym__const_ellipsis] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3281), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LPAREN_PIPE] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(3291), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(3273), - [anon_sym_3] = ACTIONS(3293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3405), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2120] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym__atom_curly] = STATE(2122), + [sym__atom_no_curly] = STATE(2122), + [sym_literal] = STATE(2112), + [sym_record_assignments] = STATE(2112), + [sym_atom] = STATE(3398), + [anon_sym__] = ACTIONS(3308), + [anon_sym_quoteTerm] = ACTIONS(3308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3314), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3316), + [sym_qualified_name] = ACTIONS(3308), + [anon_sym_quote] = ACTIONS(3308), + [anon_sym_3] = ACTIONS(3318), + [anon_sym_Prop] = ACTIONS(3308), + [sym__const_ellipsis] = ACTIONS(3308), + [anon_sym_record] = ACTIONS(3320), + [anon_sym_] = ACTIONS(3322), + [anon_sym_unquote] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3326), + [aux_sym_string_token1] = ACTIONS(3328), + [anon_sym_Set] = ACTIONS(3308), }, [2121] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2065), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3209), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3407), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5507), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2122] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2079), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3209), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2123] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2083), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym__atom_curly] = STATE(2122), + [sym__atom_no_curly] = STATE(2122), + [sym_literal] = STATE(2112), + [sym_record_assignments] = STATE(2112), + [sym_atom] = STATE(3408), + [aux_sym__open_args1_repeat1] = STATE(3408), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3308), + [anon_sym_quoteTerm] = ACTIONS(3308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3310), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3314), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3316), + [sym_qualified_name] = ACTIONS(3308), + [anon_sym_quote] = ACTIONS(3308), + [anon_sym_3] = ACTIONS(3318), + [anon_sym_Prop] = ACTIONS(3308), + [sym__const_ellipsis] = ACTIONS(3308), + [anon_sym_record] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(3308), + [anon_sym_DOT] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3326), + [aux_sym_string_token1] = ACTIONS(3328), + [anon_sym_Set] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(419), + }, + [2124] = { + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(737), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), + }, + [2125] = { + [sym_primitive] = STATE(3410), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3410), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3410), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3410), + [sym_abstract] = STATE(3410), + [sym_private] = STATE(3410), + [sym_function_clause] = STATE(3410), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3410), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3411), + [sym_infix] = STATE(3410), + [sym_data] = STATE(3410), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3410), + [sym_macro] = STATE(3410), + [sym_test] = STATE(3410), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3410), + [sym_record_signature_only] = STATE(3410), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3410), + [sym_syntax] = STATE(3410), + [sym_record] = STATE(3410), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3410), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3410), + [sym_mutual] = STATE(3410), + [sym_postulate] = STATE(3410), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3233), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [2124] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2091), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2125] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2126] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [2127] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5511), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5518), [sym_pragma] = ACTIONS(3), }, + [2127] = { + [sym_primitive] = STATE(3413), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3413), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3413), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3413), + [sym_abstract] = STATE(3413), + [sym_private] = STATE(3413), + [sym_function_clause] = STATE(3413), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3413), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3413), + [sym_data] = STATE(3413), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3413), + [sym_macro] = STATE(3413), + [sym_test] = STATE(3413), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3413), + [sym_record_signature_only] = STATE(3413), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3413), + [sym_syntax] = STATE(3413), + [sym_record] = STATE(3413), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3413), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3413), + [sym_mutual] = STATE(3413), + [sym_postulate] = STATE(3413), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, [2128] = { - [sym__field_assignments1] = STATE(3427), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5518), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3415), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5513), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2129] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(5515), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2130] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5499), }, [2131] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5499), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5520), }, [2132] = { - [sym_primitive] = STATE(3429), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3429), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3429), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3430), - [sym_field] = STATE(3429), - [sym_abstract] = STATE(3429), - [sym_private] = STATE(3429), - [sym_function_clause] = STATE(3429), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3429), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3429), - [sym_data] = STATE(3429), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3429), - [sym_macro] = STATE(3429), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3429), - [sym_record_signature_only] = STATE(3429), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3429), - [sym_syntax] = STATE(3429), - [sym_record] = STATE(3429), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3429), - [sym_generalize] = STATE(3429), - [sym_mutual] = STATE(3429), - [sym_postulate] = STATE(3429), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2133] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5522), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5517), [sym_pragma] = ACTIONS(3), }, [2134] = { - [sym_primitive] = STATE(3432), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3432), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym_module_macro] = STATE(3432), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3432), - [sym_abstract] = STATE(3432), - [sym_private] = STATE(3432), - [sym_function_clause] = STATE(3432), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(3429), [sym__expr2] = STATE(43), - [sym_open] = STATE(3432), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3432), - [sym_data] = STATE(3432), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3432), - [sym_macro] = STATE(3432), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3432), - [sym_record_signature_only] = STATE(3432), - [sym_atom] = STATE(158), [sym_do] = STATE(43), - [sym_pattern] = STATE(3432), - [sym_syntax] = STATE(3432), - [sym_record] = STATE(3432), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3432), - [sym_generalize] = STATE(3432), - [sym_mutual] = STATE(3432), - [sym_postulate] = STATE(3432), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), + [sym_pragma] = ACTIONS(3), }, [2135] = { - [anon_sym_module] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym__newline] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2136] = { - [sym_do] = STATE(3433), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3433), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3433), - [sym_lambda] = STATE(3433), - [sym__application] = STATE(3433), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5541), }, [2137] = { - [sym_do] = STATE(3434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3434), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3434), - [sym_lambda] = STATE(3434), - [sym__application] = STATE(3434), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [2138] = { - [sym_anonymous_name] = STATE(2141), - [sym__binding_name] = STATE(3439), - [anon_sym__] = ACTIONS(3319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5524), - [anon_sym_] = ACTIONS(5526), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5543), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5528), - [anon_sym_LBRACE] = ACTIONS(5530), - [sym_name] = ACTIONS(3333), + }, + [2138] = { + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2139] = { - [sym_do] = STATE(3441), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3441), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3441), - [sym_lambda] = STATE(3441), - [sym_open] = STATE(3440), - [sym__application] = STATE(3441), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(3435), + [sym_do] = STATE(3435), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3435), + [sym_lambda] = STATE(3435), + [sym__application] = STATE(3435), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2140] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3442), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3442), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3442), - [sym__expr2] = STATE(3442), - [sym_lambda] = STATE(3442), + [sym__expr2] = STATE(3436), + [sym_do] = STATE(3436), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3436), + [sym_lambda] = STATE(3436), + [sym__application] = STATE(3436), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), }, [2141] = { - [anon_sym_module] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym__newline] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), + [sym_anonymous_name] = STATE(2144), + [sym__binding_name] = STATE(3441), + [anon_sym__] = ACTIONS(3344), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5545), + [anon_sym_] = ACTIONS(5547), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(5549), + [anon_sym_LBRACE] = ACTIONS(5551), + [sym_name] = ACTIONS(3358), }, [2142] = { - [sym_typed_binding] = STATE(2142), - [sym_anonymous_name] = STATE(2141), - [sym_untyped_binding] = STATE(2142), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2144), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3319), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3321), - [sym_name] = ACTIONS(3333), - [anon_sym_] = ACTIONS(3323), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(5532), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [sym__const_right_arrow] = ACTIONS(1143), - [anon_sym_module] = ACTIONS(1143), + [sym_open] = STATE(3443), + [sym__expr2] = STATE(3442), + [sym_do] = STATE(3442), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3442), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3442), + [sym_lambda] = STATE(3442), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2143] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_where] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5534), - [anon_sym_module] = ACTIONS(1147), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3444), + [sym_do] = STATE(3444), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3444), + [sym_let] = STATE(3444), + [sym_lambda] = STATE(3444), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2144] = { - [anon_sym_module] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym__newline] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2145] = { - [anon_sym_RPAREN] = ACTIONS(5520), + [sym_anonymous_name] = STATE(2144), + [sym_typed_binding] = STATE(2145), + [sym_untyped_binding] = STATE(2145), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2147), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3344), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3346), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(3358), + [anon_sym_] = ACTIONS(3348), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(5553), + [anon_sym_module] = ACTIONS(1299), }, [2146] = { - [anon_sym_in] = ACTIONS(5536), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1303), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(5555), + [anon_sym_module] = ACTIONS(1303), }, [2147] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3447), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5538), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2148] = { - [anon_sym_LBRACE] = ACTIONS(5540), + [anon_sym_RPAREN] = ACTIONS(5541), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2149] = { + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5520), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2150] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2131), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3315), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3448), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5557), }, [2151] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2145), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3315), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2152] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2149), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3449), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5557), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2153] = { - [sym__atom_no_curly] = STATE(1042), - [sym_literal] = STATE(1024), - [sym_record_assignments] = STATE(1024), - [sym__atom_curly] = STATE(1042), - [sym_atom] = STATE(2130), - [anon_sym__] = ACTIONS(1714), - [anon_sym_unquote] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3403), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(3405), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [anon_sym_] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_3] = ACTIONS(1744), - [aux_sym_string_token1] = ACTIONS(1740), - [anon_sym_Prop] = ACTIONS(1714), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3450), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2154] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2157), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3451), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2155] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5520), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3453), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5559), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2156] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3454), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2157] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5542), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2159), + [sym__atom_no_curly] = STATE(2159), + [sym_literal] = STATE(2149), + [sym_record_assignments] = STATE(2149), + [sym_atom] = STATE(3447), + [anon_sym__] = ACTIONS(3360), + [anon_sym_quoteTerm] = ACTIONS(3360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3364), + [anon_sym_QMARK] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3366), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_qualified_name] = ACTIONS(3360), + [anon_sym_quote] = ACTIONS(3360), + [anon_sym_3] = ACTIONS(3370), + [anon_sym_Prop] = ACTIONS(3360), + [sym__const_ellipsis] = ACTIONS(3360), + [anon_sym_record] = ACTIONS(3372), + [anon_sym_] = ACTIONS(3374), + [anon_sym_unquote] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [aux_sym_string_token1] = ACTIONS(3380), + [anon_sym_Set] = ACTIONS(3360), }, [2158] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3456), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5563), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2159] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3451), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5544), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2160] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__atom_curly] = STATE(2159), + [sym__atom_no_curly] = STATE(2159), + [sym_literal] = STATE(2149), + [sym_record_assignments] = STATE(2149), + [sym_atom] = STATE(3457), + [aux_sym__open_args1_repeat1] = STATE(3457), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3360), + [anon_sym_quoteTerm] = ACTIONS(3360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3362), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3364), + [anon_sym_QMARK] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3366), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3368), + [sym_qualified_name] = ACTIONS(3360), + [anon_sym_quote] = ACTIONS(3360), + [anon_sym_3] = ACTIONS(3370), + [anon_sym_Prop] = ACTIONS(3360), + [sym__const_ellipsis] = ACTIONS(3360), + [anon_sym_record] = ACTIONS(3372), + [anon_sym_] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [aux_sym_string_token1] = ACTIONS(3380), + [anon_sym_Set] = ACTIONS(3360), + [anon_sym_module] = ACTIONS(419), }, [2161] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3452), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5544), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(5565), + [anon_sym_where] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(737), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(737), }, [2162] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3454), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5546), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [2163] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3455), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(3459), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3459), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3459), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3459), + [sym_abstract] = STATE(3459), + [sym_private] = STATE(3459), + [sym_function_clause] = STATE(3459), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3459), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3460), + [sym_infix] = STATE(3459), + [sym_data] = STATE(3459), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3459), + [sym_macro] = STATE(3459), + [sym_test] = STATE(3459), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3459), + [sym_record_signature_only] = STATE(3459), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3459), + [sym_syntax] = STATE(3459), + [sym_record] = STATE(3459), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3459), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3459), + [sym_mutual] = STATE(3459), + [sym_postulate] = STATE(3459), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5548), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [2163] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5567), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2164] = { - [sym__atom_no_curly] = STATE(2168), - [sym_literal] = STATE(2158), - [sym_record_assignments] = STATE(2158), - [sym__atom_curly] = STATE(2168), - [sym_atom] = STATE(3450), - [anon_sym__] = ACTIONS(3353), - [anon_sym_unquote] = ACTIONS(3353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3357), - [anon_sym_Set] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3353), - [anon_sym_quoteTerm] = ACTIONS(3353), - [anon_sym_quote] = ACTIONS(3353), - [sym__const_ellipsis] = ACTIONS(3353), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3365), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_3] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3373), - [anon_sym_Prop] = ACTIONS(3353), + [sym_primitive] = STATE(3462), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3462), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3462), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3462), + [sym_abstract] = STATE(3462), + [sym_private] = STATE(3462), + [sym_function_clause] = STATE(3462), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3462), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3462), + [sym_data] = STATE(3462), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3462), + [sym_macro] = STATE(3462), + [sym_test] = STATE(3462), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3462), + [sym_record_signature_only] = STATE(3462), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3462), + [sym_syntax] = STATE(3462), + [sym_record] = STATE(3462), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3462), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3462), + [sym_mutual] = STATE(3462), + [sym_postulate] = STATE(3462), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2165] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3456), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3464), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5569), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2166] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3458), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5550), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(5571), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2167] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3459), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_PIPE_RPAREN] = ACTIONS(5541), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2168] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5541), + [sym_pragma] = ACTIONS(3), }, [2169] = { - [sym__atom_no_curly] = STATE(2168), - [sym_literal] = STATE(2158), - [sym_record_assignments] = STATE(2158), - [sym__atom_curly] = STATE(2168), - [sym_atom] = STATE(3460), - [aux_sym__open_args1_repeat1] = STATE(3460), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3353), - [anon_sym_unquote] = ACTIONS(3353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3357), - [anon_sym_Set] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(3353), - [anon_sym_quoteTerm] = ACTIONS(3353), - [anon_sym_quote] = ACTIONS(3353), - [sym__const_ellipsis] = ACTIONS(3353), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3365), - [anon_sym_LPAREN_PIPE] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_3] = ACTIONS(3371), - [aux_sym_string_token1] = ACTIONS(3373), - [anon_sym_Prop] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5541), }, [2170] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5552), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2136), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3340), + }, + [2171] = { + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2148), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(3340), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + }, + [2172] = { + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2168), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3386), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + }, + [2173] = { + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_literal] = STATE(1031), + [sym_record_assignments] = STATE(1031), + [sym_atom] = STATE(2135), + [anon_sym__] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1637), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(3406), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_Prop] = ACTIONS(1631), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_record] = ACTIONS(1647), + [anon_sym_] = ACTIONS(3402), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3408), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + }, + [2174] = { + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2176), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + }, + [2175] = { + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + }, + [2176] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5573), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1457), }, - [2171] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), + [2177] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), - }, - [2172] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5520), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), [sym_pragma] = ACTIONS(3), }, - [2173] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), + [2178] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2136), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3340), + }, + [2179] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2148), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3340), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2180] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2168), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3386), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [2181] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2176), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2182] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + [sym_pragma] = ACTIONS(3), }, - [2174] = { + [2183] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [2175] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [2176] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3463), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5554), - }, - [2177] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3464), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5554), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), + [2184] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, - [2178] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3466), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5556), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [2179] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3467), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5558), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [2180] = { - [sym__atom_no_curly] = STATE(2184), - [sym_literal] = STATE(2174), - [sym_record_assignments] = STATE(2174), - [sym__atom_curly] = STATE(2184), - [sym_atom] = STATE(3462), - [anon_sym__] = ACTIONS(3379), - [anon_sym_unquote] = ACTIONS(3379), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3383), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3381), - [anon_sym_Set] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3385), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3379), - [anon_sym_quoteTerm] = ACTIONS(3379), - [anon_sym_quote] = ACTIONS(3379), - [sym__const_ellipsis] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_3] = ACTIONS(3399), - [aux_sym_string_token1] = ACTIONS(3397), - [anon_sym_Prop] = ACTIONS(3379), - }, - [2181] = { + [2185] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), [sym_expr] = STATE(3468), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [2182] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3470), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5560), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2183] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3471), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [2184] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), - }, - [2185] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2186), - [sym__atom_curly] = STATE(2184), - [sym_literal] = STATE(2174), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2184), - [sym_record_assignments] = STATE(2174), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(3379), - [anon_sym_unquote] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(3381), - [anon_sym_Set] = ACTIONS(3379), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3379), - [anon_sym_quoteTerm] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3379), - [sym__const_ellipsis] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(3397), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(3379), - [anon_sym_3] = ACTIONS(3399), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5575), }, [2186] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3469), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5575), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2187] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2131), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3315), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3470), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2188] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2145), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3315), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3472), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5577), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2189] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2149), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3473), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2190] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2157), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3474), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5579), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2191] = { - [sym__declaration_block] = STATE(3472), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2193), + [sym__atom_no_curly] = STATE(2193), + [sym_literal] = STATE(2183), + [sym_record_assignments] = STATE(2183), + [sym_atom] = STATE(3467), + [anon_sym__] = ACTIONS(3412), + [anon_sym_quoteTerm] = ACTIONS(3412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3416), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3414), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3418), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3420), + [sym_qualified_name] = ACTIONS(3412), + [anon_sym_quote] = ACTIONS(3412), + [anon_sym_3] = ACTIONS(3424), + [anon_sym_Prop] = ACTIONS(3412), + [sym__const_ellipsis] = ACTIONS(3412), + [anon_sym_record] = ACTIONS(3422), + [anon_sym_] = ACTIONS(3426), + [anon_sym_unquote] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [aux_sym_string_token1] = ACTIONS(3432), + [anon_sym_Set] = ACTIONS(3412), }, [2192] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(2192), - [aux_sym__open_args1_repeat1] = STATE(2192), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_unquote] = ACTIONS(5102), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(5562), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_3] = ACTIONS(5132), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3476), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5581), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2193] = { - [sym_primitive] = STATE(3473), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3473), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3473), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3474), - [sym_field] = STATE(3473), - [sym_abstract] = STATE(3473), - [sym_private] = STATE(3473), - [sym_function_clause] = STATE(3473), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3473), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3473), - [sym_data] = STATE(3473), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3473), - [sym_macro] = STATE(3473), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3473), - [sym_record_signature_only] = STATE(3473), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3473), - [sym_syntax] = STATE(3473), - [sym_record] = STATE(3473), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3473), - [sym_generalize] = STATE(3473), - [sym_mutual] = STATE(3473), - [sym_postulate] = STATE(3473), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2194] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5565), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(2183), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2195), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2193), + [sym__atom_no_curly] = STATE(2193), + [sym_record_assignments] = STATE(2183), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(3412), + [anon_sym_quoteTerm] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(3414), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_LPAREN_PIPE] = ACTIONS(3420), + [sym_qualified_name] = ACTIONS(3412), + [anon_sym_quote] = ACTIONS(3412), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(3422), + [sym__const_ellipsis] = ACTIONS(3412), + [anon_sym_3] = ACTIONS(3424), + [anon_sym_] = ACTIONS(3426), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(3432), + [anon_sym_Set] = ACTIONS(3412), [sym_pragma] = ACTIONS(3), }, [2195] = { - [sym_primitive] = STATE(3476), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3476), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3476), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3476), - [sym_abstract] = STATE(3476), - [sym_private] = STATE(3476), - [sym_function_clause] = STATE(3476), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3476), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3476), - [sym_data] = STATE(3476), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3476), - [sym_macro] = STATE(3476), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3476), - [sym_record_signature_only] = STATE(3476), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3476), - [sym_syntax] = STATE(3476), - [sym_record] = STATE(3476), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3476), - [sym_generalize] = STATE(3476), - [sym_mutual] = STATE(3476), - [sym_postulate] = STATE(3476), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2196] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym__newline] = ACTIONS(1027), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5583), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), }, [2197] = { - [sym_do] = STATE(3477), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3477), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3477), - [sym_lambda] = STATE(3477), - [sym__application] = STATE(3477), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym__newline] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2198] = { + [sym__expr2] = STATE(3478), [sym_do] = STATE(3478), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(3478), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3478), [sym_lambda] = STATE(3478), [sym__application] = STATE(3478), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2199] = { - [sym_anonymous_name] = STATE(2202), - [sym__binding_name] = STATE(3483), - [anon_sym__] = ACTIONS(3421), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5567), - [anon_sym_] = ACTIONS(5569), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3479), + [sym_do] = STATE(3479), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3479), + [sym_lambda] = STATE(3479), + [sym__application] = STATE(3479), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5571), - [anon_sym_LBRACE] = ACTIONS(5573), - [sym_name] = ACTIONS(3435), }, [2200] = { + [sym_anonymous_name] = STATE(2203), + [sym__binding_name] = STATE(3484), + [anon_sym__] = ACTIONS(3440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5585), + [anon_sym_] = ACTIONS(5587), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5589), + [anon_sym_LBRACE] = ACTIONS(5591), + [sym_name] = ACTIONS(3454), + }, + [2201] = { + [sym_open] = STATE(3486), + [sym__expr2] = STATE(3485), [sym_do] = STATE(3485), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3485), + [aux_sym__open_args1_repeat1] = STATE(799), [sym_let] = STATE(3485), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3485), [sym_lambda] = STATE(3485), - [sym_open] = STATE(3484), - [sym__application] = STATE(3485), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [2201] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3486), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3486), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3486), - [sym__expr2] = STATE(3486), - [sym_lambda] = STATE(3486), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2202] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym__newline] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3487), + [sym_do] = STATE(3487), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3487), + [sym_let] = STATE(3487), + [sym_lambda] = STATE(3487), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2203] = { - [sym_typed_binding] = STATE(2203), - [sym_anonymous_name] = STATE(2202), - [sym_untyped_binding] = STATE(2203), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2205), - [anon_sym_COLON] = ACTIONS(1143), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3421), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3423), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(3433), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(5575), - [anon_sym_module] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2204] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym__newline] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(1147), + [sym_anonymous_name] = STATE(2203), + [sym_typed_binding] = STATE(2204), + [sym_untyped_binding] = STATE(2204), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2206), + [anon_sym_COLON] = ACTIONS(1299), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3440), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3442), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(5577), - [anon_sym_module] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(3452), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(3444), + [anon_sym_DOT] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_module] = ACTIONS(1299), }, [2205] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym__newline] = ACTIONS(1151), + [anon_sym_COLON] = ACTIONS(1303), + [sym__newline] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(5595), + [anon_sym_module] = ACTIONS(1303), }, [2206] = { - [anon_sym_in] = ACTIONS(5579), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2207] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2208] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5581), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5597), }, [2209] = { - [anon_sym_RPAREN] = ACTIONS(5581), + [anon_sym_RPAREN] = ACTIONS(5597), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2210] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3492), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5583), + [anon_sym_PIPE_RPAREN] = ACTIONS(5597), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2211] = { - [anon_sym_LBRACE] = ACTIONS(5585), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [2212] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5581), - [sym_pragma] = ACTIONS(3), - }, - [2213] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5581), - }, - [2214] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - }, - [2215] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5587), - [sym_pragma] = ACTIONS(3), - }, - [2216] = { [anon_sym_COLON] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym__newline] = ACTIONS(121), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [2217] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3496), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [2212] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3492), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5599), + }, + [2213] = { + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5589), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), + }, + [2214] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3493), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5599), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2215] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3494), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), + }, + [2216] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3495), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), + }, + [2217] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3497), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5601), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2218] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3498), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2219] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3497), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5589), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(2221), + [sym__atom_no_curly] = STATE(2221), + [sym_literal] = STATE(2211), + [sym_record_assignments] = STATE(2211), + [sym_atom] = STATE(3491), + [anon_sym__] = ACTIONS(3458), + [anon_sym_quoteTerm] = ACTIONS(3458), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3462), + [anon_sym_QMARK] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3464), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3466), + [sym_qualified_name] = ACTIONS(3458), + [anon_sym_quote] = ACTIONS(3458), + [anon_sym_3] = ACTIONS(3468), + [anon_sym_Prop] = ACTIONS(3458), + [sym__const_ellipsis] = ACTIONS(3458), + [anon_sym_record] = ACTIONS(3470), + [anon_sym_] = ACTIONS(3472), + [anon_sym_unquote] = ACTIONS(3458), + [anon_sym_DOT] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [aux_sym_string_token1] = ACTIONS(3478), + [anon_sym_Set] = ACTIONS(3458), }, [2220] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3499), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5591), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3500), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2221] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3500), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2222] = { - [sym__atom_no_curly] = STATE(2226), - [sym_literal] = STATE(2216), - [sym_record_assignments] = STATE(2216), - [sym__atom_curly] = STATE(2226), - [sym_atom] = STATE(3495), - [anon_sym__] = ACTIONS(3447), - [anon_sym_unquote] = ACTIONS(3447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3449), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3451), - [anon_sym_Set] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3453), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3447), - [anon_sym_quoteTerm] = ACTIONS(3447), - [anon_sym_quote] = ACTIONS(3447), - [sym__const_ellipsis] = ACTIONS(3447), - [anon_sym_record] = ACTIONS(3455), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_3] = ACTIONS(3465), - [aux_sym_string_token1] = ACTIONS(3467), - [anon_sym_Prop] = ACTIONS(3447), + [sym__atom_curly] = STATE(2221), + [sym__atom_no_curly] = STATE(2221), + [sym_literal] = STATE(2211), + [sym_record_assignments] = STATE(2211), + [sym_atom] = STATE(3501), + [aux_sym__open_args1_repeat1] = STATE(3501), + [anon_sym_COLON] = ACTIONS(419), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3458), + [anon_sym_quoteTerm] = ACTIONS(3458), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3460), + [aux_sym_integer_token1] = ACTIONS(3462), + [anon_sym_QMARK] = ACTIONS(3458), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3466), + [sym_qualified_name] = ACTIONS(3458), + [anon_sym_quote] = ACTIONS(3458), + [anon_sym_3] = ACTIONS(3468), + [anon_sym_Prop] = ACTIONS(3458), + [sym__const_ellipsis] = ACTIONS(3458), + [anon_sym_record] = ACTIONS(3470), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(3472), + [anon_sym_unquote] = ACTIONS(3458), + [anon_sym_DOT] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [aux_sym_string_token1] = ACTIONS(3478), + [anon_sym_Set] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(419), }, [2223] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3501), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(737), + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(5607), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), }, [2224] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3503), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(3503), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3503), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3503), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3503), + [sym_abstract] = STATE(3503), + [sym_private] = STATE(3503), + [sym_function_clause] = STATE(3503), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3503), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3504), + [sym_infix] = STATE(3503), + [sym_data] = STATE(3503), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3503), + [sym_macro] = STATE(3503), + [sym_test] = STATE(3503), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3503), + [sym_record_signature_only] = STATE(3503), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3503), + [sym_syntax] = STATE(3503), + [sym_record] = STATE(3503), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3503), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3503), + [sym_mutual] = STATE(3503), + [sym_postulate] = STATE(3503), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2225] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3504), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5609), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2226] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_primitive] = STATE(3506), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3506), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3506), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3506), + [sym_abstract] = STATE(3506), + [sym_private] = STATE(3506), + [sym_function_clause] = STATE(3506), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3506), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3506), + [sym_data] = STATE(3506), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3506), + [sym_macro] = STATE(3506), + [sym_test] = STATE(3506), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3506), + [sym_record_signature_only] = STATE(3506), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3506), + [sym_syntax] = STATE(3506), + [sym_record] = STATE(3506), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3506), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3506), + [sym_mutual] = STATE(3506), + [sym_postulate] = STATE(3506), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2227] = { - [sym__atom_no_curly] = STATE(2226), - [sym_literal] = STATE(2216), - [sym_record_assignments] = STATE(2216), - [sym__atom_curly] = STATE(2226), - [sym_atom] = STATE(3505), - [aux_sym__open_args1_repeat1] = STATE(3505), - [anon_sym_COLON] = ACTIONS(425), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3447), - [anon_sym_unquote] = ACTIONS(3447), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3449), - [aux_sym_integer_token1] = ACTIONS(3451), - [anon_sym_Set] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3453), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(3447), - [anon_sym_quoteTerm] = ACTIONS(3447), - [anon_sym_quote] = ACTIONS(3447), - [sym__const_ellipsis] = ACTIONS(3447), - [anon_sym_record] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_with] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3447), - [anon_sym_] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LPAREN_PIPE] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3463), - [anon_sym_3] = ACTIONS(3465), - [aux_sym_string_token1] = ACTIONS(3467), - [anon_sym_Prop] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(425), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3508), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5611), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2228] = { - [anon_sym_COLON] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5597), - [anon_sym_with] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(5613), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), }, [2229] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5597), }, [2230] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5581), + [anon_sym_2] = ACTIONS(5597), [sym_pragma] = ACTIONS(3), }, [2231] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2232] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5615), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5621), }, [2233] = { - [sym_primitive] = STATE(3523), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3523), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym_module_macro] = STATE(3523), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3524), - [sym_field] = STATE(3523), - [sym_abstract] = STATE(3523), - [sym_private] = STATE(3523), - [sym_function_clause] = STATE(3523), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(3522), [sym__expr2] = STATE(43), - [sym_open] = STATE(3523), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3523), - [sym_data] = STATE(3523), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3523), - [sym_macro] = STATE(3523), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3523), - [sym_record_signature_only] = STATE(3523), - [sym_atom] = STATE(158), [sym_do] = STATE(43), - [sym_pattern] = STATE(3523), - [sym_syntax] = STATE(3523), - [sym_record] = STATE(3523), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3523), - [sym_generalize] = STATE(3523), - [sym_mutual] = STATE(3523), - [sym_postulate] = STATE(3523), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), + [sym_pragma] = ACTIONS(3), }, [2234] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5623), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2235] = { - [sym_primitive] = STATE(3526), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3526), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3526), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3526), - [sym_abstract] = STATE(3526), - [sym_private] = STATE(3526), - [sym_function_clause] = STATE(3526), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3526), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3526), - [sym_data] = STATE(3526), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3526), - [sym_macro] = STATE(3526), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3526), - [sym_record_signature_only] = STATE(3526), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3526), - [sym_syntax] = STATE(3526), - [sym_record] = STATE(3526), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3526), - [sym_generalize] = STATE(3526), - [sym_mutual] = STATE(3526), - [sym_postulate] = STATE(3526), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5639), }, [2236] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym__newline] = ACTIONS(1027), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5641), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), }, [2237] = { - [sym_do] = STATE(3527), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3527), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3527), - [sym_lambda] = STATE(3527), - [sym__application] = STATE(3527), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym__newline] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2238] = { + [sym__expr2] = STATE(3528), [sym_do] = STATE(3528), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(3528), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3528), [sym_lambda] = STATE(3528), [sym__application] = STATE(3528), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2239] = { - [sym_anonymous_name] = STATE(2242), - [sym__binding_name] = STATE(3533), - [anon_sym__] = ACTIONS(3473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5625), - [anon_sym_] = ACTIONS(5627), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3529), + [sym_do] = STATE(3529), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3529), + [sym_lambda] = STATE(3529), + [sym__application] = STATE(3529), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5629), - [anon_sym_LBRACE] = ACTIONS(5631), - [sym_name] = ACTIONS(3487), }, [2240] = { + [sym_anonymous_name] = STATE(2243), + [sym__binding_name] = STATE(3534), + [anon_sym__] = ACTIONS(3492), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5643), + [anon_sym_] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5647), + [anon_sym_LBRACE] = ACTIONS(5649), + [sym_name] = ACTIONS(3506), + }, + [2241] = { + [sym_open] = STATE(3536), + [sym__expr2] = STATE(3535), [sym_do] = STATE(3535), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3535), + [aux_sym__open_args1_repeat1] = STATE(799), [sym_let] = STATE(3535), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3535), [sym_lambda] = STATE(3535), - [sym_open] = STATE(3534), - [sym__application] = STATE(3535), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [2241] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3536), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3536), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3536), - [sym__expr2] = STATE(3536), - [sym_lambda] = STATE(3536), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2242] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym__newline] = ACTIONS(1137), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3537), + [sym_do] = STATE(3537), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3537), + [sym_let] = STATE(3537), + [sym_lambda] = STATE(3537), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2243] = { - [sym_typed_binding] = STATE(2243), - [sym_anonymous_name] = STATE(2242), - [sym_untyped_binding] = STATE(2243), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2245), - [anon_sym_COLON] = ACTIONS(1143), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3475), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(3485), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(3487), - [anon_sym_] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(5633), - [anon_sym_module] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2244] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym__newline] = ACTIONS(1147), - [anon_sym_where] = ACTIONS(1147), + [sym_anonymous_name] = STATE(2243), + [sym_typed_binding] = STATE(2244), + [sym_untyped_binding] = STATE(2244), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2246), + [anon_sym_COLON] = ACTIONS(1299), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3492), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3494), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5635), - [anon_sym_module] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(3504), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(3506), + [anon_sym_] = ACTIONS(3496), + [anon_sym_DOT] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(5651), + [anon_sym_module] = ACTIONS(1299), }, [2245] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym__newline] = ACTIONS(1151), + [anon_sym_COLON] = ACTIONS(1303), + [sym__newline] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym__const_right_arrow] = ACTIONS(5653), + [anon_sym_module] = ACTIONS(1303), }, [2246] = { - [anon_sym_RPAREN] = ACTIONS(5621), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2247] = { - [anon_sym_in] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5639), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2248] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3541), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5639), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym__newline] = ACTIONS(121), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2249] = { - [anon_sym_LBRACE] = ACTIONS(5641), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3541), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5655), }, [2250] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5621), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2251] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2232), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3469), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3542), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5655), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2252] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2246), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3469), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3543), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2253] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2250), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3544), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2254] = { - [sym__atom_no_curly] = STATE(1089), - [sym_literal] = STATE(1072), - [sym_record_assignments] = STATE(1072), - [sym__atom_curly] = STATE(1089), - [sym_atom] = STATE(2231), - [anon_sym__] = ACTIONS(1823), - [anon_sym_unquote] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(3557), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_] = ACTIONS(3553), - [anon_sym_DOT] = ACTIONS(3501), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(3559), - [anon_sym_3] = ACTIONS(1853), - [aux_sym_string_token1] = ACTIONS(1849), - [anon_sym_Prop] = ACTIONS(1823), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3546), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5657), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2255] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2258), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3547), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5659), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2256] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5621), + [sym__atom_curly] = STATE(2258), + [sym__atom_no_curly] = STATE(2258), + [sym_literal] = STATE(2248), + [sym_record_assignments] = STATE(2248), + [sym_atom] = STATE(3540), + [anon_sym__] = ACTIONS(3508), + [anon_sym_quoteTerm] = ACTIONS(3508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3514), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3516), + [sym_qualified_name] = ACTIONS(3508), + [anon_sym_quote] = ACTIONS(3508), + [anon_sym_3] = ACTIONS(3518), + [anon_sym_Prop] = ACTIONS(3508), + [sym__const_ellipsis] = ACTIONS(3508), + [anon_sym_record] = ACTIONS(3520), + [anon_sym_] = ACTIONS(3522), + [anon_sym_unquote] = ACTIONS(3508), + [anon_sym_DOT] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [aux_sym_string_token1] = ACTIONS(3528), + [anon_sym_Set] = ACTIONS(3508), }, [2257] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3549), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5661), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2258] = { + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5643), - [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2259] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym__newline] = ACTIONS(121), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym__atom_curly] = STATE(2258), + [sym__atom_no_curly] = STATE(2258), + [sym_literal] = STATE(2248), + [sym_record_assignments] = STATE(2248), + [sym_atom] = STATE(3550), + [aux_sym__open_args1_repeat1] = STATE(3550), + [anon_sym_COLON] = ACTIONS(419), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3508), + [anon_sym_quoteTerm] = ACTIONS(3508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3510), + [aux_sym_integer_token1] = ACTIONS(3512), + [anon_sym_QMARK] = ACTIONS(3508), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3516), + [sym_qualified_name] = ACTIONS(3508), + [anon_sym_quote] = ACTIONS(3508), + [anon_sym_3] = ACTIONS(3518), + [anon_sym_Prop] = ACTIONS(3508), + [sym__const_ellipsis] = ACTIONS(3508), + [anon_sym_record] = ACTIONS(3520), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(3522), + [anon_sym_unquote] = ACTIONS(3508), + [anon_sym_DOT] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3526), + [aux_sym_string_token1] = ACTIONS(3528), + [anon_sym_Set] = ACTIONS(3508), + [anon_sym_module] = ACTIONS(419), }, [2260] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3545), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5645), + [anon_sym_COLON] = ACTIONS(737), + [sym__newline] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(5663), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_module] = ACTIONS(737), }, [2261] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_primitive] = STATE(3552), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3552), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3552), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3552), + [sym_abstract] = STATE(3552), + [sym_private] = STATE(3552), + [sym_function_clause] = STATE(3552), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3552), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3553), + [sym_infix] = STATE(3552), + [sym_data] = STATE(3552), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3552), + [sym_macro] = STATE(3552), + [sym_test] = STATE(3552), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3552), + [sym_record_signature_only] = STATE(3552), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3552), + [sym_syntax] = STATE(3552), + [sym_record] = STATE(3552), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3552), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3552), + [sym_mutual] = STATE(3552), + [sym_postulate] = STATE(3552), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2262] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3546), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5645), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5665), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2263] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3548), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5647), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [2264] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3549), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(3555), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3555), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3555), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3555), + [sym_abstract] = STATE(3555), + [sym_private] = STATE(3555), + [sym_function_clause] = STATE(3555), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3555), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3555), + [sym_data] = STATE(3555), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3555), + [sym_macro] = STATE(3555), + [sym_test] = STATE(3555), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3555), + [sym_record_signature_only] = STATE(3555), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3555), + [sym_syntax] = STATE(3555), + [sym_record] = STATE(3555), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3555), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3555), + [sym_mutual] = STATE(3555), + [sym_postulate] = STATE(3555), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5649), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [2264] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3557), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5667), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2265] = { - [sym__atom_no_curly] = STATE(2269), - [sym_literal] = STATE(2259), - [sym_record_assignments] = STATE(2259), - [sym__atom_curly] = STATE(2269), - [sym_atom] = STATE(3544), - [anon_sym__] = ACTIONS(3507), - [anon_sym_unquote] = ACTIONS(3507), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3511), - [anon_sym_Set] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3513), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3507), - [anon_sym_quoteTerm] = ACTIONS(3507), - [anon_sym_quote] = ACTIONS(3507), - [sym__const_ellipsis] = ACTIONS(3507), - [anon_sym_record] = ACTIONS(3515), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3523), - [anon_sym_3] = ACTIONS(3525), - [aux_sym_string_token1] = ACTIONS(3527), - [anon_sym_Prop] = ACTIONS(3507), + [anon_sym_LBRACE] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2266] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3550), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_PIPE_RPAREN] = ACTIONS(5639), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2267] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3552), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5651), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5639), + [sym_pragma] = ACTIONS(3), }, [2268] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3553), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5639), }, [2269] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2235), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3488), }, [2270] = { - [sym__atom_no_curly] = STATE(2269), - [sym_literal] = STATE(2259), - [sym_record_assignments] = STATE(2259), - [sym__atom_curly] = STATE(2269), - [sym_atom] = STATE(3554), - [aux_sym__open_args1_repeat1] = STATE(3554), - [anon_sym_COLON] = ACTIONS(425), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3507), - [anon_sym_unquote] = ACTIONS(3507), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3509), - [aux_sym_integer_token1] = ACTIONS(3511), - [anon_sym_Set] = ACTIONS(3507), - [anon_sym_LPAREN] = ACTIONS(3513), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(3507), - [anon_sym_quoteTerm] = ACTIONS(3507), - [anon_sym_quote] = ACTIONS(3507), - [sym__const_ellipsis] = ACTIONS(3507), - [anon_sym_record] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3507), - [anon_sym_] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LPAREN_PIPE] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3523), - [anon_sym_3] = ACTIONS(3525), - [aux_sym_string_token1] = ACTIONS(3527), - [anon_sym_Prop] = ACTIONS(3507), - [anon_sym_module] = ACTIONS(425), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2247), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(3488), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2271] = { - [anon_sym_COLON] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5653), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2267), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + }, + [2272] = { + [sym__atom_curly] = STATE(1089), + [sym__atom_no_curly] = STATE(1089), + [sym_literal] = STATE(1074), + [sym_record_assignments] = STATE(1074), + [sym_atom] = STATE(2234), + [anon_sym__] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1808), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(3552), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_Prop] = ACTIONS(1802), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_record] = ACTIONS(1818), + [anon_sym_] = ACTIONS(3548), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3554), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + }, + [2273] = { + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2275), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + }, + [2274] = { + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), + }, + [2275] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5671), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1457), }, - [2272] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), + [2276] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(945), [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), - }, - [2273] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5621), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), [sym_pragma] = ACTIONS(3), }, - [2274] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), + [2277] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2235), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3488), + }, + [2278] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2247), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3488), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2279] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2267), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [2280] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2275), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2281] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(3310), [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + [sym_pragma] = ACTIONS(3), }, - [2275] = { + [2282] = { [anon_sym_COLON] = ACTIONS(119), [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [2276] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [2277] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3557), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5655), - }, - [2278] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3558), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5655), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), + [2283] = { + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, - [2279] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3560), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5657), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [2280] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), + [2284] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), [sym_expr] = STATE(3561), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5659), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [2281] = { - [sym__atom_no_curly] = STATE(2285), - [sym_literal] = STATE(2275), - [sym_record_assignments] = STATE(2275), - [sym__atom_curly] = STATE(2285), - [sym_atom] = STATE(3556), - [anon_sym__] = ACTIONS(3531), - [anon_sym_unquote] = ACTIONS(3531), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3535), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3533), - [anon_sym_Set] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3537), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3531), - [anon_sym_quoteTerm] = ACTIONS(3531), - [anon_sym_quote] = ACTIONS(3531), - [sym__const_ellipsis] = ACTIONS(3531), - [anon_sym_record] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_] = ACTIONS(3541), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_3] = ACTIONS(3551), - [aux_sym_string_token1] = ACTIONS(3549), - [anon_sym_Prop] = ACTIONS(3531), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5673), }, - [2282] = { + [2285] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), [sym_expr] = STATE(3562), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [2283] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3564), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5661), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5673), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2284] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3565), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [2285] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2286] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2287), - [sym__atom_curly] = STATE(2285), - [sym_literal] = STATE(2275), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2285), - [sym_record_assignments] = STATE(2275), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(3531), - [anon_sym_unquote] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(3533), - [anon_sym_Set] = ACTIONS(3531), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3531), - [anon_sym_quoteTerm] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3531), - [sym__const_ellipsis] = ACTIONS(3531), - [anon_sym_record] = ACTIONS(3539), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_] = ACTIONS(3541), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(3549), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(3531), - [anon_sym_3] = ACTIONS(3551), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3563), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2287] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3565), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5675), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2288] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2232), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3469), - }, + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3566), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), + }, [2289] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2246), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3469), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3567), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5677), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2290] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2250), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3493), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(2292), + [sym__atom_no_curly] = STATE(2292), + [sym_literal] = STATE(2282), + [sym_record_assignments] = STATE(2282), + [sym_atom] = STATE(3560), + [anon_sym__] = ACTIONS(3558), + [anon_sym_quoteTerm] = ACTIONS(3558), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3560), + [anon_sym_QMARK] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3564), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3566), + [sym_qualified_name] = ACTIONS(3558), + [anon_sym_quote] = ACTIONS(3558), + [anon_sym_3] = ACTIONS(3570), + [anon_sym_Prop] = ACTIONS(3558), + [sym__const_ellipsis] = ACTIONS(3558), + [anon_sym_record] = ACTIONS(3568), + [anon_sym_] = ACTIONS(3572), + [anon_sym_unquote] = ACTIONS(3558), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3576), + [aux_sym_string_token1] = ACTIONS(3578), + [anon_sym_Set] = ACTIONS(3558), }, [2291] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2258), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3505), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3569), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5679), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2292] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_3] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2293] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(2282), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2294), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2292), + [sym__atom_no_curly] = STATE(2292), + [sym_record_assignments] = STATE(2282), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(3558), + [anon_sym_quoteTerm] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(3560), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(3558), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_LPAREN_PIPE] = ACTIONS(3566), + [sym_qualified_name] = ACTIONS(3558), + [anon_sym_quote] = ACTIONS(3558), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(3568), + [sym__const_ellipsis] = ACTIONS(3558), + [anon_sym_3] = ACTIONS(3570), + [anon_sym_] = ACTIONS(3572), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3558), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3576), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(3578), + [anon_sym_Set] = ACTIONS(3558), [sym_pragma] = ACTIONS(3), }, [2294] = { - [sym_primitive] = STATE(3567), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3567), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3567), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3567), - [sym_abstract] = STATE(3567), - [sym_private] = STATE(3567), - [sym_function_clause] = STATE(3567), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3567), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3567), - [sym_data] = STATE(3567), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3567), - [sym_macro] = STATE(3567), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3567), - [sym_record_signature_only] = STATE(3567), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3567), - [sym_syntax] = STATE(3567), - [sym_record] = STATE(3567), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3567), - [sym_generalize] = STATE(3567), - [sym_mutual] = STATE(3567), - [sym_postulate] = STATE(3567), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2295] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(2295), + [aux_sym__open_args1_repeat1] = STATE(2295), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_quoteTerm] = ACTIONS(5186), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(5681), + [anon_sym_unquote] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5213), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [2296] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5663), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3570), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2297] = { - [anon_sym_COLON] = ACTIONS(5665), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5667), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym_name] = ACTIONS(5019), }, [2298] = { - [anon_sym_COLON] = ACTIONS(5669), - [anon_sym_2] = ACTIONS(5667), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3571), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [2299] = { - [sym_do] = STATE(3571), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3571), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3571), - [sym_lambda] = STATE(3571), - [sym__application] = STATE(3571), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [2300] = { - [sym_do] = STATE(3572), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3572), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3572), - [sym_lambda] = STATE(3572), - [sym__application] = STATE(3572), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5684), }, [2301] = { - [sym_do] = STATE(3573), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3573), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3573), - [sym_lambda] = STATE(3573), - [sym__application] = STATE(3573), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5686), + [sym_pragma] = ACTIONS(3), }, [2302] = { + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + }, + [2303] = { + [sym__expr2] = STATE(3574), [sym_do] = STATE(3574), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(3574), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3574), [sym_lambda] = STATE(3574), [sym__application] = STATE(3574), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [2303] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2718), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2304] = { - [anon_sym_RPAREN] = ACTIONS(5671), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3575), + [sym_do] = STATE(3575), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3575), + [sym_lambda] = STATE(3575), + [sym__application] = STATE(3575), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), }, [2305] = { - [anon_sym_COLON] = ACTIONS(5673), + [sym_anonymous_name] = STATE(2308), + [sym__binding_name] = STATE(3580), + [anon_sym__] = ACTIONS(3596), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5688), + [anon_sym_] = ACTIONS(5690), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5692), + [anon_sym_LBRACE] = ACTIONS(5694), + [sym_name] = ACTIONS(3610), }, [2306] = { - [anon_sym_COLON] = ACTIONS(5675), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5667), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(3582), + [sym__expr2] = STATE(3581), + [sym_do] = STATE(3581), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3581), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3581), + [sym_lambda] = STATE(3581), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2307] = { - [sym_do] = STATE(3578), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3578), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3578), - [sym_lambda] = STATE(3578), - [sym__application] = STATE(3578), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3583), + [sym_do] = STATE(3583), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3583), + [sym_let] = STATE(3583), + [sym_lambda] = STATE(3583), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2308] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [2309] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_anonymous_name] = STATE(2308), + [sym_typed_binding] = STATE(2309), + [sym_untyped_binding] = STATE(2309), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2311), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(3596), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3598), + [anon_sym_] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(5696), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3608), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(3610), }, [2310] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5698), }, [2311] = { + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5677), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [2312] = { - [sym__field_assignments1] = STATE(3580), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5677), + [anon_sym_RPAREN] = ACTIONS(5684), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2313] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_3] = ACTIONS(3012), - }, - [2314] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + }, + [2314] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3587), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5700), }, [2315] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5679), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [2316] = { - [anon_sym_RPAREN] = ACTIONS(5679), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3588), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5700), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2317] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3583), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5681), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3589), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [2318] = { - [anon_sym_LBRACE] = ACTIONS(5683), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3590), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [2319] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5679), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3592), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5702), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2320] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5679), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3593), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5704), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2321] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__atom_curly] = STATE(2323), + [sym__atom_no_curly] = STATE(2323), + [sym_literal] = STATE(2313), + [sym_record_assignments] = STATE(2313), + [sym_atom] = STATE(3586), + [anon_sym__] = ACTIONS(3612), + [anon_sym_quoteTerm] = ACTIONS(3612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3618), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_qualified_name] = ACTIONS(3612), + [anon_sym_quote] = ACTIONS(3612), + [anon_sym_3] = ACTIONS(3622), + [anon_sym_Prop] = ACTIONS(3612), + [sym__const_ellipsis] = ACTIONS(3612), + [anon_sym_record] = ACTIONS(3624), + [anon_sym_] = ACTIONS(3626), + [anon_sym_unquote] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [aux_sym_string_token1] = ACTIONS(3632), + [anon_sym_Set] = ACTIONS(3612), }, [2322] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5685), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3595), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5706), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2323] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5679), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [2324] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2324), - [aux_sym__open_args1_repeat1] = STATE(2324), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5690), - [anon_sym_unquote] = ACTIONS(5687), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5693), - [anon_sym_Set] = ACTIONS(5687), - [anon_sym_LPAREN] = ACTIONS(5696), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5687), - [anon_sym_quoteTerm] = ACTIONS(5687), - [anon_sym_quote] = ACTIONS(5687), - [sym__const_ellipsis] = ACTIONS(5687), - [anon_sym_record] = ACTIONS(5699), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_] = ACTIONS(5702), - [anon_sym_DOT] = ACTIONS(5705), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(5708), - [anon_sym_LPAREN_PIPE] = ACTIONS(5711), - [aux_sym_string_token1] = ACTIONS(5714), - [anon_sym_Prop] = ACTIONS(5687), - [anon_sym_3] = ACTIONS(5717), + [sym__atom_curly] = STATE(2323), + [sym__atom_no_curly] = STATE(2323), + [sym_literal] = STATE(2313), + [sym_record_assignments] = STATE(2313), + [sym_atom] = STATE(3596), + [aux_sym__open_args1_repeat1] = STATE(3596), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(3612), + [anon_sym_quoteTerm] = ACTIONS(3612), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3614), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3616), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(3618), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3620), + [sym_qualified_name] = ACTIONS(3612), + [anon_sym_quote] = ACTIONS(3612), + [anon_sym_3] = ACTIONS(3622), + [anon_sym_Prop] = ACTIONS(3612), + [sym__const_ellipsis] = ACTIONS(3612), + [anon_sym_record] = ACTIONS(3624), + [anon_sym_] = ACTIONS(3626), + [anon_sym_unquote] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [aux_sym_string_token1] = ACTIONS(3632), + [anon_sym_Set] = ACTIONS(3612), }, [2325] = { - [sym_literal] = STATE(3586), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3596), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3597), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), - }, - [2326] = { + [sym__newline] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(5708), }, - [2327] = { - [sym_literal] = STATE(3586), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3596), - [aux_sym__open_args1_repeat1] = STATE(3597), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [2326] = { + [sym_primitive] = STATE(3598), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3598), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3598), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3598), + [sym_abstract] = STATE(3598), + [sym_private] = STATE(3598), + [sym_function_clause] = STATE(3598), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3598), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3599), + [sym_infix] = STATE(3598), + [sym_data] = STATE(3598), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3598), + [sym_macro] = STATE(3598), + [sym_test] = STATE(3598), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3598), + [sym_record_signature_only] = STATE(3598), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3598), + [sym_syntax] = STATE(3598), + [sym_record] = STATE(3598), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3598), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3598), + [sym_mutual] = STATE(3598), + [sym_postulate] = STATE(3598), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [2328] = { - [anon_sym_PIPE] = ACTIONS(455), + [2327] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5710), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5742), + }, + [2328] = { + [sym_primitive] = STATE(3601), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3601), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3601), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3601), + [sym_abstract] = STATE(3601), + [sym_private] = STATE(3601), + [sym_function_clause] = STATE(3601), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3601), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3601), + [sym_data] = STATE(3601), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3601), + [sym_macro] = STATE(3601), + [sym_test] = STATE(3601), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3601), + [sym_record_signature_only] = STATE(3601), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3601), + [sym_syntax] = STATE(3601), + [sym_record] = STATE(3601), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3601), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3601), + [sym_mutual] = STATE(3601), + [sym_postulate] = STATE(3601), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2329] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3603), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5712), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5744), }, [2330] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(5714), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2331] = { - [anon_sym_COLON] = ACTIONS(4319), - [anon_sym_SEMI] = ACTIONS(4319), - [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_PIPE_RPAREN] = ACTIONS(5684), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4319), - [anon_sym_2] = ACTIONS(4319), - [anon_sym_where] = ACTIONS(4319), - [anon_sym_PIPE_RPAREN] = ACTIONS(4319), - [anon_sym_4] = ACTIONS(4319), - [anon_sym_RBRACE] = ACTIONS(5746), }, [2332] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5748), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5684), [sym_pragma] = ACTIONS(3), }, [2333] = { - [anon_sym_COLON] = ACTIONS(4432), - [anon_sym_SEMI] = ACTIONS(4432), - [anon_sym_RPAREN] = ACTIONS(4432), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4432), - [anon_sym_2] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_PIPE_RPAREN] = ACTIONS(4432), - [anon_sym_4] = ACTIONS(4432), - [anon_sym_RBRACE] = ACTIONS(5750), + [anon_sym_4] = ACTIONS(5684), }, [2334] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3603), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2300), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3592), }, [2335] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_4] = ACTIONS(4861), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2312), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(3592), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2336] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3604), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2332), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2337] = { - [anon_sym_COLON] = ACTIONS(5752), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5754), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_literal] = STATE(1101), + [sym_record_assignments] = STATE(1101), + [sym_atom] = STATE(2299), + [anon_sym__] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1887), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3658), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_Prop] = ACTIONS(1881), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_record] = ACTIONS(1897), + [anon_sym_] = ACTIONS(3654), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3660), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), }, [2338] = { - [anon_sym_COLON] = ACTIONS(5756), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5754), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2340), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2339] = { - [anon_sym_COLON] = ACTIONS(5758), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [2340] = { - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_2] = ACTIONS(5754), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5716), [sym_pragma] = ACTIONS(3), }, [2341] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_4] = ACTIONS(3633), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [2342] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3610), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2300), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3592), }, [2343] = { - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5004), - [anon_sym_RPAREN] = ACTIONS(5004), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5004), - [anon_sym_2] = ACTIONS(5004), - [anon_sym_where] = ACTIONS(5004), - [anon_sym_PIPE_RPAREN] = ACTIONS(5004), - [anon_sym_4] = ACTIONS(5004), - [anon_sym_RBRACE] = ACTIONS(5762), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2312), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(3592), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2344] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3611), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2332), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(3638), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2345] = { - [sym_lambda_clause] = STATE(1813), - [sym_lambda_clause_absurd] = STATE(1813), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(1814), - [sym__atom_no_curly] = STATE(1808), - [aux_sym__open_args1_repeat1] = STATE(1809), - [sym_catchall_pragma] = STATE(1810), - [aux_sym__lambda_where_block_repeat1] = STATE(3164), - [sym_do] = STATE(1814), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym__lambda_clause] = STATE(1813), - [sym_record_assignments] = STATE(1797), - [sym__application] = STATE(1814), - [sym__expr2] = STATE(1814), - [sym_lambda] = STATE(1814), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2146), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(17), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_quote] = ACTIONS(2816), - [anon_sym_] = ACTIONS(2822), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2340), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2346] = { - [anon_sym_COLON] = ACTIONS(3615), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(3605), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), }, [2347] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [2348] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5766), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [2349] = { - [sym_primitive] = STATE(3614), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3614), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3614), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3614), - [sym_abstract] = STATE(3614), - [sym_private] = STATE(3614), - [sym_function_clause] = STATE(3614), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3614), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3614), - [sym_data] = STATE(3614), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3614), - [sym_macro] = STATE(3614), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3614), - [sym_record_signature_only] = STATE(3614), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3614), - [sym_syntax] = STATE(3614), - [sym_record] = STATE(3614), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3614), - [sym_generalize] = STATE(3614), - [sym_mutual] = STATE(3614), - [sym_postulate] = STATE(3614), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3607), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5718), }, [2350] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3608), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5718), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2351] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5766), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3609), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [2352] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3611), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(5720), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2353] = { - [sym_literal] = STATE(1375), - [sym_atom] = STATE(2358), - [sym__atom_curly] = STATE(1388), - [sym_import_directive] = STATE(3615), - [aux_sym_module_macro_repeat1] = STATE(3615), - [sym__open_args1] = STATE(3616), - [sym__atom_no_curly] = STATE(1388), - [sym_record_assignments] = STATE(1375), - [aux_sym__open_args1_repeat1] = STATE(2358), - [sym__open_as] = STATE(3617), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2842), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(3625), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_renaming] = ACTIONS(2276), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2278), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_3] = ACTIONS(2290), - [anon_sym_public] = ACTIONS(2292), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3612), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2354] = { - [sym__module_name] = STATE(3619), - [sym_qualified_name] = ACTIONS(5768), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3613), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5722), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2355] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(2549), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_3] = ACTIONS(2290), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), + [sym__atom_curly] = STATE(2357), + [sym__atom_no_curly] = STATE(2357), + [sym_literal] = STATE(2347), + [sym_record_assignments] = STATE(2347), + [sym_atom] = STATE(3606), + [anon_sym__] = ACTIONS(3664), + [anon_sym_quoteTerm] = ACTIONS(3664), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3666), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3670), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3672), + [sym_qualified_name] = ACTIONS(3664), + [anon_sym_quote] = ACTIONS(3664), + [anon_sym_3] = ACTIONS(3676), + [anon_sym_Prop] = ACTIONS(3664), + [sym__const_ellipsis] = ACTIONS(3664), + [anon_sym_record] = ACTIONS(3674), + [anon_sym_] = ACTIONS(3678), + [anon_sym_unquote] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [aux_sym_string_token1] = ACTIONS(3684), + [anon_sym_Set] = ACTIONS(3664), }, [2356] = { - [sym_import_directive] = STATE(3620), - [aux_sym_module_macro_repeat1] = STATE(3620), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3615), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5724), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2357] = { - [sym_import_directive] = STATE(3615), - [aux_sym_module_macro_repeat1] = STATE(3615), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [2358] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(3621), - [aux_sym__open_args1_repeat1] = STATE(3621), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2876), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_renaming] = ACTIONS(2878), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2878), - [anon_sym_3] = ACTIONS(2290), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2878), + [sym_literal] = STATE(2347), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2359), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2357), + [sym__atom_no_curly] = STATE(2357), + [sym_record_assignments] = STATE(2347), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(3664), + [anon_sym_quoteTerm] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(3666), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_LPAREN_PIPE] = ACTIONS(3672), + [sym_qualified_name] = ACTIONS(3664), + [anon_sym_quote] = ACTIONS(3664), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(3674), + [sym__const_ellipsis] = ACTIONS(3664), + [anon_sym_3] = ACTIONS(3676), + [anon_sym_] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(3684), + [anon_sym_Set] = ACTIONS(3664), + [sym_pragma] = ACTIONS(3), }, [2359] = { - [sym_literal] = STATE(1375), - [sym_atom] = STATE(2358), - [sym__atom_curly] = STATE(1388), - [sym_import_directive] = STATE(3615), - [aux_sym_module_macro_repeat1] = STATE(3615), - [sym__open_args1] = STATE(3616), - [sym__atom_no_curly] = STATE(1388), - [sym_record_assignments] = STATE(1375), - [aux_sym__open_args1_repeat1] = STATE(2358), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2842), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_renaming] = ACTIONS(2276), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2278), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_3] = ACTIONS(2290), - [anon_sym_public] = ACTIONS(2292), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [2360] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2360), - [aux_sym__open_args1_repeat1] = STATE(2360), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5690), - [anon_sym_unquote] = ACTIONS(5687), - [anon_sym_RPAREN] = ACTIONS(3096), - [aux_sym_integer_token1] = ACTIONS(5693), - [anon_sym_Set] = ACTIONS(5687), - [anon_sym_LPAREN] = ACTIONS(5696), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5687), - [anon_sym_quoteTerm] = ACTIONS(5687), - [anon_sym_quote] = ACTIONS(5687), - [sym__const_ellipsis] = ACTIONS(5687), - [anon_sym_record] = ACTIONS(5699), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_] = ACTIONS(5702), - [anon_sym_DOT] = ACTIONS(5770), - [anon_sym_LPAREN_PIPE] = ACTIONS(5711), - [anon_sym_LBRACE] = ACTIONS(5708), - [anon_sym_3] = ACTIONS(5717), - [aux_sym_string_token1] = ACTIONS(5714), - [anon_sym_Prop] = ACTIONS(5687), + [anon_sym_COLON] = ACTIONS(5726), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5728), + [sym_pragma] = ACTIONS(3), }, [2361] = { - [sym_literal] = STATE(3586), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3596), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3623), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5773), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(5730), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5728), }, [2362] = { + [anon_sym_COLON] = ACTIONS(5732), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5775), }, [2363] = { - [sym_literal] = STATE(3586), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3596), - [aux_sym__open_args1_repeat1] = STATE(3623), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5773), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(5734), + [anon_sym_2] = ACTIONS(5728), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2364] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3621), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5775), }, [2365] = { - [anon_sym_RPAREN] = ACTIONS(5744), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym_name] = ACTIONS(3774), }, [2366] = { - [anon_sym_COLON] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3622), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3868), - [anon_sym_2] = ACTIONS(3868), - [anon_sym_where] = ACTIONS(3868), - [anon_sym_PIPE_RPAREN] = ACTIONS(3868), - [anon_sym_4] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(5777), }, [2367] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3625), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(5736), + [anon_sym_in] = ACTIONS(5736), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2368] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3626), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2369] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3627), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__newline] = ACTIONS(5738), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + }, + [2369] = { + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), }, [2370] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3628), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [2371] = { - [anon_sym_COLON] = ACTIONS(3910), - [anon_sym_SEMI] = ACTIONS(3910), - [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_COLON] = ACTIONS(5740), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3910), - [anon_sym_2] = ACTIONS(3910), - [anon_sym_where] = ACTIONS(3910), - [anon_sym_PIPE_RPAREN] = ACTIONS(3910), - [anon_sym_4] = ACTIONS(3910), - [anon_sym_RBRACE] = ACTIONS(5779), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5742), }, [2372] = { + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_2] = ACTIONS(5742), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_4] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [2373] = { - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(5781), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3626), + [sym_do] = STATE(3626), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3626), + [sym_lambda] = STATE(3626), + [sym__application] = STATE(3626), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2374] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5783), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3627), + [sym_do] = STATE(3627), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3627), + [sym_lambda] = STATE(3627), + [sym__application] = STATE(3627), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2375] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_2] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym__expr2] = STATE(3628), + [sym_do] = STATE(3628), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3628), + [sym_lambda] = STATE(3628), + [sym__application] = STATE(3628), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2376] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5785), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3629), + [sym_do] = STATE(3629), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3629), + [sym_lambda] = STATE(3629), + [sym__application] = STATE(3629), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [2377] = { - [sym_primitive] = STATE(3631), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3631), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3631), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3631), - [sym_abstract] = STATE(3631), - [sym_private] = STATE(3631), - [sym_function_clause] = STATE(3631), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3631), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3631), - [sym_data] = STATE(3631), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3631), - [sym_macro] = STATE(3631), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3631), - [sym_record_signature_only] = STATE(3631), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3631), - [sym_syntax] = STATE(3631), - [sym_record] = STATE(3631), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3631), - [sym_generalize] = STATE(3631), - [sym_mutual] = STATE(3631), - [sym_postulate] = STATE(3631), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2862), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), }, [2378] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(5746), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2379] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5785), + [anon_sym_RPAREN] = ACTIONS(5748), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2380] = { - [anon_sym_COLON] = ACTIONS(5787), + [anon_sym_COLON] = ACTIONS(5750), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5742), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5789), }, [2381] = { - [anon_sym_COLON] = ACTIONS(5791), - [anon_sym_2] = ACTIONS(5789), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3633), + [sym_do] = STATE(3633), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3633), + [sym_lambda] = STATE(3633), + [sym__application] = STATE(3633), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [2382] = { - [sym_do] = STATE(3635), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3635), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3635), - [sym_lambda] = STATE(3635), - [sym__application] = STATE(3635), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [2383] = { - [sym_do] = STATE(3636), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3636), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3636), - [sym_lambda] = STATE(3636), - [sym__application] = STATE(3636), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [2384] = { - [sym_do] = STATE(3637), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3637), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3637), - [sym_lambda] = STATE(3637), - [sym__application] = STATE(3637), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5752), }, [2385] = { - [sym_do] = STATE(3638), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3638), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3638), - [sym_lambda] = STATE(3638), - [sym__application] = STATE(3638), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_RPAREN] = ACTIONS(5752), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2386] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_PIPE_RPAREN] = ACTIONS(5752), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_2] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [2387] = { - [anon_sym_RPAREN] = ACTIONS(5793), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5752), }, [2388] = { - [anon_sym_COLON] = ACTIONS(5795), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3636), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5754), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2389] = { - [anon_sym_COLON] = ACTIONS(5797), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(5756), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5789), [sym_pragma] = ACTIONS(3), }, [2390] = { - [sym_do] = STATE(3642), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3642), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3642), - [sym_lambda] = STATE(3642), - [sym__application] = STATE(3642), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5752), + [sym_pragma] = ACTIONS(3), }, [2391] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [2392] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5758), + [sym_pragma] = ACTIONS(3), }, [2393] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_2] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2393), + [aux_sym__open_args1_repeat1] = STATE(2393), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5763), + [anon_sym_quoteTerm] = ACTIONS(5760), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5772), + [sym_qualified_name] = ACTIONS(5760), + [anon_sym_quote] = ACTIONS(5760), + [anon_sym_3] = ACTIONS(5775), + [anon_sym_Prop] = ACTIONS(5760), + [sym__const_ellipsis] = ACTIONS(5760), + [anon_sym_record] = ACTIONS(5778), + [anon_sym_] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5784), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(5787), + [anon_sym_unquote] = ACTIONS(5760), + [aux_sym_string_token1] = ACTIONS(5790), + [anon_sym_Set] = ACTIONS(5760), }, [2394] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5799), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3650), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2395] = { - [sym__field_assignments1] = STATE(3644), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5799), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5815), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2396] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_2] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_primitive] = STATE(3653), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3653), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3653), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3653), + [sym_abstract] = STATE(3653), + [sym_private] = STATE(3653), + [sym_function_clause] = STATE(3653), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3653), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3653), + [sym_data] = STATE(3653), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3653), + [sym_macro] = STATE(3653), + [sym_test] = STATE(3653), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3653), + [sym_record_signature_only] = STATE(3653), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3653), + [sym_syntax] = STATE(3653), + [sym_record] = STATE(3653), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3653), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3653), + [sym_mutual] = STATE(3653), + [sym_postulate] = STATE(3653), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2397] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), }, [2398] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5815), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5801), }, [2399] = { - [anon_sym_RPAREN] = ACTIONS(5801), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), }, [2400] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3647), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5803), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5817), [sym_pragma] = ACTIONS(3), }, [2401] = { - [anon_sym_LBRACE] = ACTIONS(5805), + [sym__field_assignments1] = STATE(3655), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5817), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2402] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5801), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), }, [2403] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5801), + [sym__const_right_arrow] = ACTIONS(5819), + [anon_sym_PIPE] = ACTIONS(479), }, [2404] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - }, - [2405] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5807), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5819), + }, + [2405] = { + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3650), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2406] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5801), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5821), }, [2407] = { - [sym__atom_no_curly] = STATE(1226), - [sym_literal] = STATE(1216), - [sym_record_assignments] = STATE(1216), - [sym__atom_curly] = STATE(1226), - [sym_atom] = STATE(2407), - [aux_sym__open_args1_repeat1] = STATE(2407), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5812), - [anon_sym_unquote] = ACTIONS(5809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5815), - [anon_sym_Set] = ACTIONS(5809), - [anon_sym_LPAREN] = ACTIONS(5818), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(5809), - [anon_sym_quoteTerm] = ACTIONS(5809), - [anon_sym_quote] = ACTIONS(5809), - [sym__const_ellipsis] = ACTIONS(5809), - [anon_sym_record] = ACTIONS(5821), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_] = ACTIONS(5824), - [anon_sym_DOT] = ACTIONS(5827), - [anon_sym_LPAREN_PIPE] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(5833), - [anon_sym_3] = ACTIONS(5836), - [aux_sym_string_token1] = ACTIONS(5839), - [anon_sym_Prop] = ACTIONS(5809), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_4] = ACTIONS(4853), + [anon_sym_SEMI] = ACTIONS(4853), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4853), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4853), + [anon_sym_PIPE_RPAREN] = ACTIONS(4853), + [anon_sym_2] = ACTIONS(4853), + [anon_sym_where] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(5823), }, [2408] = { - [sym_literal] = STATE(3650), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3660), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3661), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3662), - [sym__atom_curly] = STATE(3660), - [sym_record_assignments] = STATE(3650), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5842), - [anon_sym_unquote] = ACTIONS(5842), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(5844), - [anon_sym_Set] = ACTIONS(5842), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5842), - [anon_sym_quoteTerm] = ACTIONS(5842), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5842), - [sym__const_ellipsis] = ACTIONS(5842), - [anon_sym_record] = ACTIONS(5850), - [anon_sym_QMARK] = ACTIONS(5842), - [anon_sym_] = ACTIONS(5852), - [anon_sym_DOT] = ACTIONS(5854), - [anon_sym_LPAREN_PIPE] = ACTIONS(5856), - [anon_sym_LBRACE] = ACTIONS(5858), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(5860), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(5842), - [anon_sym_3] = ACTIONS(5862), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_4] = ACTIONS(3893), + [anon_sym_SEMI] = ACTIONS(3893), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3893), + [anon_sym_PIPE_RPAREN] = ACTIONS(3893), + [anon_sym_2] = ACTIONS(3893), + [anon_sym_where] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(5825), }, [2409] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3658), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5864), }, [2410] = { - [sym_literal] = STATE(3650), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3660), - [aux_sym__open_args1_repeat1] = STATE(3661), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3662), - [sym__atom_curly] = STATE(3660), - [sym_record_assignments] = STATE(3650), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5842), - [anon_sym_unquote] = ACTIONS(5842), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(5844), - [anon_sym_Set] = ACTIONS(5842), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5842), - [anon_sym_quoteTerm] = ACTIONS(5842), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5842), - [sym__const_ellipsis] = ACTIONS(5842), - [anon_sym_record] = ACTIONS(5850), - [anon_sym_QMARK] = ACTIONS(5842), - [anon_sym_] = ACTIONS(5852), - [anon_sym_DOT] = ACTIONS(5854), - [anon_sym_LPAREN_PIPE] = ACTIONS(5856), - [anon_sym_LBRACE] = ACTIONS(5858), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(5860), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(5842), - [anon_sym_3] = ACTIONS(5862), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_PIPE_RPAREN] = ACTIONS(5017), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [2411] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3659), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5864), }, [2412] = { + [anon_sym_COLON] = ACTIONS(5827), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5744), + [anon_sym_RBRACE] = ACTIONS(5829), [sym_pragma] = ACTIONS(3), }, [2413] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5866), + [anon_sym_COLON] = ACTIONS(5831), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5829), }, [2414] = { - [sym_primitive] = STATE(3665), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3665), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3665), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3665), - [sym_abstract] = STATE(3665), - [sym_private] = STATE(3665), - [sym_function_clause] = STATE(3665), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3665), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3665), - [sym_data] = STATE(3665), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3665), - [sym_macro] = STATE(3665), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3665), - [sym_record_signature_only] = STATE(3665), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3665), - [sym_syntax] = STATE(3665), - [sym_record] = STATE(3665), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3665), - [sym_generalize] = STATE(3665), - [sym_mutual] = STATE(3665), - [sym_postulate] = STATE(3665), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(5833), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2415] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(5835), + [anon_sym_2] = ACTIONS(5829), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2416] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5866), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3665), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2417] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_PIPE_RPAREN] = ACTIONS(3772), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [2418] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_4] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5160), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5160), + [anon_sym_PIPE_RPAREN] = ACTIONS(5160), + [anon_sym_2] = ACTIONS(5160), + [anon_sym_where] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5837), }, [2419] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(2419), - [aux_sym__open_args1_repeat1] = STATE(2419), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5690), - [anon_sym_unquote] = ACTIONS(5687), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5693), - [anon_sym_Set] = ACTIONS(5687), - [anon_sym_LPAREN] = ACTIONS(5696), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5687), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_quoteTerm] = ACTIONS(5687), - [anon_sym_quote] = ACTIONS(5687), - [sym__const_ellipsis] = ACTIONS(5687), - [anon_sym_record] = ACTIONS(5699), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_] = ACTIONS(5702), - [anon_sym_DOT] = ACTIONS(5868), - [anon_sym_LPAREN_PIPE] = ACTIONS(5711), - [anon_sym_LBRACE] = ACTIONS(5708), - [anon_sym_3] = ACTIONS(5717), - [aux_sym_string_token1] = ACTIONS(5714), - [anon_sym_Prop] = ACTIONS(5687), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3666), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2420] = { - [sym_literal] = STATE(3586), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3596), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3667), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5871), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_catchall_pragma] = STATE(1887), + [sym_lambda_clause] = STATE(1892), + [sym_literal] = STATE(1876), + [aux_sym__lambda_where_block_repeat1] = STATE(3212), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [aux_sym__open_args1_repeat1] = STATE(1890), + [sym__expr2] = STATE(1893), + [sym_do] = STATE(1893), + [sym_atom] = STATE(1891), + [sym_lambda_clause_absurd] = STATE(1892), + [sym__lambda_clause] = STATE(1892), + [sym_record_assignments] = STATE(1876), + [sym__application] = STATE(1893), + [sym_let] = STATE(1893), + [sym_lambda] = STATE(1893), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [sym__const_right_arrow] = ACTIONS(2964), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_] = ACTIONS(2968), + [anon_sym_3] = ACTIONS(2970), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym__dedent] = ACTIONS(5839), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), }, [2421] = { + [anon_sym_COLON] = ACTIONS(3756), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(3746), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5873), }, [2422] = { - [sym_literal] = STATE(3586), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3596), - [aux_sym__open_args1_repeat1] = STATE(3667), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5871), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2422), + [aux_sym__open_args1_repeat1] = STATE(2422), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5763), + [anon_sym_quoteTerm] = ACTIONS(5760), + [anon_sym_RPAREN] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5772), + [sym_qualified_name] = ACTIONS(5760), + [anon_sym_quote] = ACTIONS(5760), + [anon_sym_3] = ACTIONS(5775), + [anon_sym_Prop] = ACTIONS(5760), + [sym__const_ellipsis] = ACTIONS(5760), + [anon_sym_record] = ACTIONS(5778), + [anon_sym_] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5841), + [anon_sym_unquote] = ACTIONS(5760), + [anon_sym_LBRACE] = ACTIONS(5787), + [aux_sym_string_token1] = ACTIONS(5790), + [anon_sym_Set] = ACTIONS(5760), }, [2423] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5873), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3669), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2424] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5846), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5744), [sym_pragma] = ACTIONS(3), }, [2425] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_4] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym_primitive] = STATE(3671), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3671), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3671), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3671), + [sym_abstract] = STATE(3671), + [sym_private] = STATE(3671), + [sym_function_clause] = STATE(3671), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3671), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3671), + [sym_data] = STATE(3671), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3671), + [sym_macro] = STATE(3671), + [sym_test] = STATE(3671), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3671), + [sym_record_signature_only] = STATE(3671), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3671), + [sym_syntax] = STATE(3671), + [sym_record] = STATE(3671), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3671), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3671), + [sym_mutual] = STATE(3671), + [sym_postulate] = STATE(3671), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2426] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_4] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [2427] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5846), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5875), [sym_pragma] = ACTIONS(3), }, [2428] = { - [sym__field_assignments1] = STATE(3670), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5875), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [2429] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_4] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [sym_literal] = STATE(1537), + [sym__open_args1] = STATE(3672), + [sym_import_directive] = STATE(3673), + [sym_atom] = STATE(2433), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_record_assignments] = STATE(1537), + [aux_sym__open_args1_repeat1] = STATE(2433), + [aux_sym_module_macro_repeat1] = STATE(3673), + [sym__open_as] = STATE(3674), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2798), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2552), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2568), }, [2430] = { + [sym__module_name] = STATE(3676), + [sym_qualified_name] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_4] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), }, [2431] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_4] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(2895), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), }, [2432] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5877), + [sym_import_directive] = STATE(3673), + [aux_sym_module_macro_repeat1] = STATE(3673), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [2433] = { - [sym__field_assignments1] = STATE(3672), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5877), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(3677), + [aux_sym__open_args1_repeat1] = STATE(3677), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2832), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2834), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2834), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2834), }, [2434] = { + [sym_import_directive] = STATE(3678), + [aux_sym_module_macro_repeat1] = STATE(3678), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_4] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(2798), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [2435] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3673), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(1537), + [sym__open_args1] = STATE(3672), + [sym_import_directive] = STATE(3673), + [sym_atom] = STATE(2433), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_record_assignments] = STATE(1537), + [aux_sym__open_args1_repeat1] = STATE(2433), + [aux_sym_module_macro_repeat1] = STATE(3673), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2798), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2552), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2568), }, [2436] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym_name] = ACTIONS(4861), }, [2437] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3674), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__const_right_arrow] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(479), }, [2438] = { - [sym__newline] = ACTIONS(811), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym__const_right_arrow] = ACTIONS(5850), }, [2439] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5879), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3669), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2440] = { - [sym_primitive] = STATE(3676), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3676), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3676), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3677), - [sym_field] = STATE(3676), - [sym_abstract] = STATE(3676), - [sym_private] = STATE(3676), - [sym_function_clause] = STATE(3676), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3676), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3676), - [sym_data] = STATE(3676), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3676), - [sym_macro] = STATE(3676), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3676), - [sym_record_signature_only] = STATE(3676), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3676), - [sym_syntax] = STATE(3676), - [sym_record] = STATE(3676), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3676), - [sym_generalize] = STATE(3676), - [sym_mutual] = STATE(3676), - [sym_postulate] = STATE(3676), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(5821), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2441] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5881), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3680), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2442] = { - [sym_primitive] = STATE(3679), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3679), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3679), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3679), - [sym_abstract] = STATE(3679), - [sym_private] = STATE(3679), - [sym_function_clause] = STATE(3679), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3679), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3679), - [sym_data] = STATE(3679), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3679), - [sym_macro] = STATE(3679), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3679), - [sym_record_signature_only] = STATE(3679), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3679), - [sym_syntax] = STATE(3679), - [sym_record] = STATE(3679), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3679), - [sym_generalize] = STATE(3679), - [sym_mutual] = STATE(3679), - [sym_postulate] = STATE(3679), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3681), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2443] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3682), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), }, [2444] = { - [sym_do] = STATE(3680), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3680), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3680), - [sym_lambda] = STATE(3680), - [sym__application] = STATE(3680), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3683), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2445] = { - [sym_do] = STATE(3681), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3681), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3681), - [sym_lambda] = STATE(3681), - [sym__application] = STATE(3681), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_PIPE_RPAREN] = ACTIONS(2159), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [2446] = { - [sym_anonymous_name] = STATE(2449), - [sym__binding_name] = STATE(3686), - [anon_sym__] = ACTIONS(3758), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5883), - [anon_sym_] = ACTIONS(5885), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(5887), - [anon_sym_LBRACE] = ACTIONS(5889), - [sym_name] = ACTIONS(3772), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_PIPE_RPAREN] = ACTIONS(2534), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [2447] = { - [sym_do] = STATE(3688), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3688), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3688), - [sym_lambda] = STATE(3688), - [sym_open] = STATE(3687), - [sym__application] = STATE(3688), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5852), + [sym_pragma] = ACTIONS(3), }, [2448] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3689), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3689), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3689), - [sym__expr2] = STATE(3689), - [sym_lambda] = STATE(3689), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [sym__field_assignments1] = STATE(3685), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5852), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), }, [2449] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_PIPE_RPAREN] = ACTIONS(3078), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [2450] = { - [sym_typed_binding] = STATE(2450), - [sym_anonymous_name] = STATE(2449), - [sym_untyped_binding] = STATE(2450), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2452), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(3758), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3760), - [anon_sym_] = ACTIONS(3762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3764), - [anon_sym_LPAREN] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(5891), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3770), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(3772), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2451] = { - [sym__newline] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(4008), + [anon_sym_4] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4008), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(5893), + [anon_sym_RPAREN] = ACTIONS(4008), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4008), + [anon_sym_PIPE_RPAREN] = ACTIONS(4008), + [anon_sym_2] = ACTIONS(4008), + [anon_sym_where] = ACTIONS(4008), + [anon_sym_RBRACE] = ACTIONS(5854), }, [2452] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5856), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), }, [2453] = { - [anon_sym_RPAREN] = ACTIONS(5879), + [anon_sym_COLON] = ACTIONS(4078), + [anon_sym_4] = ACTIONS(4078), + [anon_sym_SEMI] = ACTIONS(4078), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4078), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4078), + [anon_sym_PIPE_RPAREN] = ACTIONS(4078), + [anon_sym_2] = ACTIONS(4078), + [anon_sym_where] = ACTIONS(4078), + [anon_sym_RBRACE] = ACTIONS(5858), }, [2454] = { - [anon_sym_in] = ACTIONS(5895), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_PIPE_RPAREN] = ACTIONS(4492), }, [2455] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3694), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5897), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(5860), [sym_pragma] = ACTIONS(3), }, [2456] = { - [anon_sym_LBRACE] = ACTIONS(5899), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5862), [sym_pragma] = ACTIONS(3), }, [2457] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5879), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [2458] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2439), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3754), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [2459] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2453), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3754), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(5864), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5866), }, [2460] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2457), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3778), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_2] = ACTIONS(5866), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2461] = { - [sym__atom_no_curly] = STATE(1302), - [sym_literal] = STATE(1284), - [sym_record_assignments] = STATE(1284), - [sym__atom_curly] = STATE(1302), - [sym_atom] = STATE(2438), - [anon_sym__] = ACTIONS(2134), - [anon_sym_unquote] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3842), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(3844), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [anon_sym_] = ACTIONS(3840), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(3846), - [anon_sym_3] = ACTIONS(2164), - [aux_sym_string_token1] = ACTIONS(2160), - [anon_sym_Prop] = ACTIONS(2134), + [sym__expr2] = STATE(3692), + [sym_do] = STATE(3692), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3692), + [sym_lambda] = STATE(3692), + [sym__application] = STATE(3692), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2462] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2465), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__expr2] = STATE(3693), + [sym_do] = STATE(3693), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3693), + [sym_lambda] = STATE(3693), + [sym__application] = STATE(3693), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2463] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5879), + [sym__expr2] = STATE(3694), + [sym_do] = STATE(3694), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3694), + [sym_lambda] = STATE(3694), + [sym__application] = STATE(3694), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [2464] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__expr2] = STATE(3695), + [sym_do] = STATE(3695), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3695), + [sym_lambda] = STATE(3695), + [sym__application] = STATE(3695), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [2465] = { + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5901), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_2] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [2466] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_COLON] = ACTIONS(5870), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), }, [2467] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3698), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5903), + [anon_sym_RPAREN] = ACTIONS(5872), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2468] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5866), + [sym_pragma] = ACTIONS(3), }, [2469] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3699), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5903), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(3699), + [sym_do] = STATE(3699), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(3699), + [sym_lambda] = STATE(3699), + [sym__application] = STATE(3699), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [2470] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3701), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5905), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [2471] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3702), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [2472] = { - [sym__atom_no_curly] = STATE(2476), - [sym_literal] = STATE(2466), - [sym_record_assignments] = STATE(2466), - [sym__atom_curly] = STATE(2476), - [sym_atom] = STATE(3697), - [anon_sym__] = ACTIONS(3792), - [anon_sym_unquote] = ACTIONS(3792), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3794), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3796), - [anon_sym_Set] = ACTIONS(3792), - [anon_sym_LPAREN] = ACTIONS(3798), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3792), - [anon_sym_quoteTerm] = ACTIONS(3792), - [anon_sym_quote] = ACTIONS(3792), - [sym__const_ellipsis] = ACTIONS(3792), - [anon_sym_record] = ACTIONS(3800), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_] = ACTIONS(3802), - [anon_sym_DOT] = ACTIONS(3804), - [anon_sym_LPAREN_PIPE] = ACTIONS(3806), - [anon_sym_LBRACE] = ACTIONS(3808), - [anon_sym_3] = ACTIONS(3810), - [aux_sym_string_token1] = ACTIONS(3812), - [anon_sym_Prop] = ACTIONS(3792), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5876), }, [2473] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3703), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2474] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3705), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(5876), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2475] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3706), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(5876), }, [2476] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3702), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(5878), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2477] = { - [sym__atom_no_curly] = STATE(2476), - [sym_literal] = STATE(2466), - [sym_record_assignments] = STATE(2466), - [sym__atom_curly] = STATE(2476), - [sym_atom] = STATE(3707), - [aux_sym__open_args1_repeat1] = STATE(3707), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(3792), - [anon_sym_unquote] = ACTIONS(3792), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3794), + [anon_sym_LBRACE] = ACTIONS(5880), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3796), - [anon_sym_Set] = ACTIONS(3792), - [anon_sym_LPAREN] = ACTIONS(3798), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3792), - [anon_sym_quoteTerm] = ACTIONS(3792), - [anon_sym_quote] = ACTIONS(3792), - [sym__const_ellipsis] = ACTIONS(3792), - [anon_sym_record] = ACTIONS(3800), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3792), - [anon_sym_] = ACTIONS(3802), - [anon_sym_DOT] = ACTIONS(3804), - [anon_sym_LPAREN_PIPE] = ACTIONS(3806), - [anon_sym_LBRACE] = ACTIONS(3808), - [anon_sym_3] = ACTIONS(3810), - [aux_sym_string_token1] = ACTIONS(3812), - [anon_sym_Prop] = ACTIONS(3792), }, [2478] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(5911), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5876), [sym_pragma] = ACTIONS(3), }, [2479] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [2480] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5879), + [anon_sym_RBRACE] = ACTIONS(5882), [sym_pragma] = ACTIONS(3), }, [2481] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym__atom_curly] = STATE(1269), + [sym__atom_no_curly] = STATE(1269), + [sym_literal] = STATE(1259), + [sym_record_assignments] = STATE(1259), + [sym_atom] = STATE(2481), + [aux_sym__open_args1_repeat1] = STATE(2481), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5884), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5887), + [anon_sym_quoteTerm] = ACTIONS(5884), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5890), + [anon_sym_QMARK] = ACTIONS(5884), + [anon_sym_LPAREN] = ACTIONS(5893), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_2] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5896), + [sym_qualified_name] = ACTIONS(5884), + [anon_sym_quote] = ACTIONS(5884), + [anon_sym_3] = ACTIONS(5899), + [anon_sym_Prop] = ACTIONS(5884), + [sym__const_ellipsis] = ACTIONS(5884), + [anon_sym_record] = ACTIONS(5902), + [anon_sym_] = ACTIONS(5905), + [anon_sym_DOT] = ACTIONS(5908), + [anon_sym_unquote] = ACTIONS(5884), + [anon_sym_LBRACE] = ACTIONS(5911), + [aux_sym_string_token1] = ACTIONS(5914), + [anon_sym_Set] = ACTIONS(5884), }, [2482] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_literal] = STATE(3705), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3715), + [sym__atom_no_curly] = STATE(3715), + [aux_sym__open_args1_repeat1] = STATE(3716), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3717), + [sym_record_assignments] = STATE(3705), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5917), + [anon_sym_quoteTerm] = ACTIONS(5917), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(5919), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5921), + [anon_sym_LPAREN] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5925), + [sym_qualified_name] = ACTIONS(5917), + [anon_sym_quote] = ACTIONS(5917), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(5917), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(5927), + [sym__const_ellipsis] = ACTIONS(5917), + [anon_sym_3] = ACTIONS(5929), + [anon_sym_] = ACTIONS(5931), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(5937), + [anon_sym_Set] = ACTIONS(5917), }, [2483] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5939), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2484] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3710), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5913), + [sym_primitive] = STATE(3719), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3719), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3719), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3719), + [sym_abstract] = STATE(3719), + [sym_private] = STATE(3719), + [sym_function_clause] = STATE(3719), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3719), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3719), + [sym_data] = STATE(3719), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3719), + [sym_macro] = STATE(3719), + [sym_test] = STATE(3719), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3719), + [sym_record_signature_only] = STATE(3719), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3719), + [sym_syntax] = STATE(3719), + [sym_record] = STATE(3719), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3719), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3719), + [sym_mutual] = STATE(3719), + [sym_postulate] = STATE(3719), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2485] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3711), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5913), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [2486] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3713), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(5915), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5939), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2487] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3714), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5917), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [2488] = { - [sym__atom_no_curly] = STATE(2492), - [sym_literal] = STATE(2482), - [sym_record_assignments] = STATE(2482), - [sym__atom_curly] = STATE(2492), - [sym_atom] = STATE(3709), - [anon_sym__] = ACTIONS(3818), - [anon_sym_unquote] = ACTIONS(3818), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3822), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3820), - [anon_sym_Set] = ACTIONS(3818), - [anon_sym_LPAREN] = ACTIONS(3824), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3818), - [anon_sym_quoteTerm] = ACTIONS(3818), - [anon_sym_quote] = ACTIONS(3818), - [sym__const_ellipsis] = ACTIONS(3818), - [anon_sym_record] = ACTIONS(3826), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_] = ACTIONS(3828), - [anon_sym_DOT] = ACTIONS(3830), - [anon_sym_LPAREN_PIPE] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_3] = ACTIONS(3838), - [aux_sym_string_token1] = ACTIONS(3836), - [anon_sym_Prop] = ACTIONS(3818), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5941), + [sym_pragma] = ACTIONS(3), }, [2489] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3715), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__field_assignments1] = STATE(3721), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5941), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2490] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3717), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [2491] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3718), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5943), + [anon_sym_PIPE] = ACTIONS(479), }, [2492] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5943), }, [2493] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2494), - [sym__atom_curly] = STATE(2492), - [sym_literal] = STATE(2482), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2492), - [sym_record_assignments] = STATE(2482), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(3818), - [anon_sym_unquote] = ACTIONS(3818), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(3820), - [anon_sym_Set] = ACTIONS(3818), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3822), - [anon_sym_LPAREN] = ACTIONS(3824), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3818), - [anon_sym_quoteTerm] = ACTIONS(3818), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3818), - [sym__const_ellipsis] = ACTIONS(3818), - [anon_sym_record] = ACTIONS(3826), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_] = ACTIONS(3828), - [anon_sym_DOT] = ACTIONS(3830), - [anon_sym_LPAREN_PIPE] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(3836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(3818), - [anon_sym_3] = ACTIONS(3838), + [sym_literal] = STATE(3705), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3715), + [sym__atom_no_curly] = STATE(3715), + [aux_sym__open_args1_repeat1] = STATE(3716), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3717), + [sym_record_assignments] = STATE(3705), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5917), + [anon_sym_quoteTerm] = ACTIONS(5917), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(5919), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5921), + [anon_sym_LPAREN] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5925), + [sym_qualified_name] = ACTIONS(5917), + [anon_sym_quote] = ACTIONS(5917), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(5917), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(5927), + [sym__const_ellipsis] = ACTIONS(5917), + [anon_sym_3] = ACTIONS(5929), + [anon_sym_] = ACTIONS(5931), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(5937), + [anon_sym_Set] = ACTIONS(5917), }, [2494] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(5821), + [sym_pragma] = ACTIONS(3), }, [2495] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2439), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3754), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [2496] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2453), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3754), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [2497] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2457), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3778), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(2497), + [aux_sym__open_args1_repeat1] = STATE(2497), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5763), + [anon_sym_quoteTerm] = ACTIONS(5760), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5772), + [sym_qualified_name] = ACTIONS(5760), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_quote] = ACTIONS(5760), + [anon_sym_Prop] = ACTIONS(5760), + [sym__const_ellipsis] = ACTIONS(5760), + [anon_sym_record] = ACTIONS(5778), + [anon_sym_3] = ACTIONS(5775), + [anon_sym_] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(5945), + [anon_sym_unquote] = ACTIONS(5760), + [anon_sym_LBRACE] = ACTIONS(5787), + [aux_sym_string_token1] = ACTIONS(5790), + [anon_sym_Set] = ACTIONS(5760), }, [2498] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2465), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(3790), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3724), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2499] = { - [anon_sym_COLON] = ACTIONS(5921), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(5950), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5923), [sym_pragma] = ACTIONS(3), }, [2500] = { - [anon_sym_COLON] = ACTIONS(5925), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5923), + [sym_primitive] = STATE(3726), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3726), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3726), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3726), + [sym_abstract] = STATE(3726), + [sym_private] = STATE(3726), + [sym_function_clause] = STATE(3726), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3726), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(3726), + [sym_data] = STATE(3726), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3726), + [sym_macro] = STATE(3726), + [sym_test] = STATE(3726), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3726), + [sym_record_signature_only] = STATE(3726), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3726), + [sym_syntax] = STATE(3726), + [sym_record] = STATE(3726), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3726), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3726), + [sym_mutual] = STATE(3726), + [sym_postulate] = STATE(3726), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2501] = { - [anon_sym_COLON] = ACTIONS(5927), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [2502] = { - [anon_sym_COLON] = ACTIONS(5929), - [anon_sym_2] = ACTIONS(5923), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(5950), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2503] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym_name] = ACTIONS(3633), + [sym__const_right_arrow] = ACTIONS(5952), + [anon_sym_PIPE] = ACTIONS(479), }, [2504] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3724), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5952), }, [2505] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3725), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(3724), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [2506] = { - [sym__newline] = ACTIONS(5931), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5821), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(5931), }, [2507] = { - [sym__newline] = ACTIONS(5933), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_PIPE_RPAREN] = ACTIONS(2159), }, [2508] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(5935), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_PIPE_RPAREN] = ACTIONS(2534), }, [2509] = { - [sym_primitive] = STATE(3727), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3727), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3727), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(3727), - [sym_abstract] = STATE(3727), - [sym_private] = STATE(3727), - [sym_function_clause] = STATE(3727), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3727), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3727), - [sym_data] = STATE(3727), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3727), - [sym_macro] = STATE(3727), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3727), - [sym_record_signature_only] = STATE(3727), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3727), - [sym_syntax] = STATE(3727), - [sym_record] = STATE(3727), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3727), - [sym_generalize] = STATE(3727), - [sym_mutual] = STATE(3727), - [sym_postulate] = STATE(3727), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5954), + [sym_pragma] = ACTIONS(3), }, [2510] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym__field_assignments1] = STATE(3729), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2511] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(5935), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_PIPE_RPAREN] = ACTIONS(3078), }, [2512] = { - [anon_sym_COLON] = ACTIONS(5937), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5939), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [2513] = { - [anon_sym_COLON] = ACTIONS(5941), - [anon_sym_2] = ACTIONS(5939), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5956), [sym_pragma] = ACTIONS(3), }, [2514] = { - [sym_do] = STATE(3731), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3731), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3731), - [sym_lambda] = STATE(3731), - [sym__application] = STATE(3731), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, [2515] = { - [sym_do] = STATE(3732), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3732), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3732), - [sym_lambda] = STATE(3732), - [sym__application] = STATE(3732), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3732), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5958), }, [2516] = { - [sym_do] = STATE(3733), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3733), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3733), - [sym_lambda] = STATE(3733), - [sym__application] = STATE(3733), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(5960), }, [2517] = { - [sym_do] = STATE(3734), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3734), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3734), - [sym_lambda] = STATE(3734), - [sym__application] = STATE(3734), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), }, [2518] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [sym_anonymous_name] = STATE(3740), + [sym_typed_binding] = STATE(3741), + [sym_untyped_binding] = STATE(3741), + [sym__lambda_binding] = STATE(3742), + [sym__binding_name] = STATE(3743), + [anon_sym__] = ACTIONS(5962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5964), + [anon_sym_] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_LPAREN] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(5972), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [sym_name] = ACTIONS(5976), }, [2519] = { - [anon_sym_RPAREN] = ACTIONS(5943), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3744), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(5958), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [2520] = { - [anon_sym_COLON] = ACTIONS(5945), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3755), + [sym__atom_no_curly] = STATE(3755), + [sym_literal] = STATE(3745), + [aux_sym__open_args1_repeat1] = STATE(3756), + [sym_record_assignments] = STATE(3745), + [sym_atom] = STATE(3756), + [sym__atoms1] = STATE(3757), + [anon_sym__] = ACTIONS(5978), + [anon_sym_quoteTerm] = ACTIONS(5978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_LPAREN] = ACTIONS(5984), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5986), + [sym_qualified_name] = ACTIONS(5978), + [anon_sym_quote] = ACTIONS(5978), + [anon_sym_3] = ACTIONS(5988), + [anon_sym_Prop] = ACTIONS(5978), + [sym__const_ellipsis] = ACTIONS(5978), + [anon_sym_record] = ACTIONS(5990), + [anon_sym_] = ACTIONS(5992), + [anon_sym_unquote] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(5996), + [aux_sym_string_token1] = ACTIONS(5998), + [anon_sym_Set] = ACTIONS(5978), }, [2521] = { - [anon_sym_COLON] = ACTIONS(5947), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5939), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3759), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3759), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3759), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3759), + [sym_abstract] = STATE(3759), + [sym_private] = STATE(3759), + [sym_function_clause] = STATE(3759), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3759), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3760), + [sym_infix] = STATE(3759), + [sym_data] = STATE(3759), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3759), + [sym_macro] = STATE(3759), + [sym_test] = STATE(3759), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3759), + [sym_record_signature_only] = STATE(3759), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3759), + [sym_syntax] = STATE(3759), + [sym_record] = STATE(3759), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3759), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3759), + [sym_mutual] = STATE(3759), + [sym_postulate] = STATE(3759), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(6000), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2522] = { - [sym_do] = STATE(3738), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3738), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(3738), - [sym_lambda] = STATE(3738), - [sym__application] = STATE(3738), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3762), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6002), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2523] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3763), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2524] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3764), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2525] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3765), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2526] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_literal] = STATE(2514), + [sym_record_assignments] = STATE(2514), + [sym_atom] = STATE(3731), + [anon_sym__] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6006), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3901), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(6008), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_Prop] = ACTIONS(3895), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_record] = ACTIONS(3911), + [anon_sym_] = ACTIONS(6010), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(6014), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), }, [2527] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5949), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3772), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2528] = { - [sym__field_assignments1] = STATE(3740), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(5949), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(3773), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [2529] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), }, [2530] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [sym_literal] = STATE(2514), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2532), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_record_assignments] = STATE(2514), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_] = ACTIONS(6018), + [anon_sym__] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6020), + [anon_sym_LPAREN] = ACTIONS(6022), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(6024), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), }, [2531] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5951), + [sym__const_right_arrow] = ACTIONS(6026), + [anon_sym_PIPE] = ACTIONS(479), }, [2532] = { - [anon_sym_RPAREN] = ACTIONS(5951), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [2533] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3743), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(5953), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6026), }, [2534] = { - [anon_sym_LBRACE] = ACTIONS(5955), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(3779), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3789), + [sym__atom_no_curly] = STATE(3789), + [aux_sym__open_args1_repeat1] = STATE(3790), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3791), + [sym_record_assignments] = STATE(3779), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(6028), + [anon_sym_quoteTerm] = ACTIONS(6028), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(6030), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(6028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6034), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6036), + [sym_qualified_name] = ACTIONS(6028), + [anon_sym_quote] = ACTIONS(6028), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(6028), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(6038), + [sym__const_ellipsis] = ACTIONS(6028), + [anon_sym_3] = ACTIONS(6040), + [anon_sym_] = ACTIONS(6042), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6028), + [anon_sym_DOT] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(6046), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(6048), + [anon_sym_Set] = ACTIONS(6028), }, [2535] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(5951), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(2367), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), }, [2536] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(5951), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [2537] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [2538] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_RBRACE] = ACTIONS(6050), [sym_pragma] = ACTIONS(3), }, [2539] = { + [sym__field_assignments1] = STATE(3793), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6050), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(5951), [sym_pragma] = ACTIONS(3), }, [2540] = { - [sym__atom_no_curly] = STATE(1357), - [sym_literal] = STATE(1347), - [sym_record_assignments] = STATE(1347), - [sym__atom_curly] = STATE(1357), - [sym_atom] = STATE(2540), - [aux_sym__open_args1_repeat1] = STATE(2540), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(5959), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5962), - [anon_sym_unquote] = ACTIONS(5959), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5965), - [anon_sym_Set] = ACTIONS(5959), - [anon_sym_LPAREN] = ACTIONS(5968), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(5959), - [anon_sym_quoteTerm] = ACTIONS(5959), - [anon_sym_quote] = ACTIONS(5959), - [sym__const_ellipsis] = ACTIONS(5959), - [anon_sym_record] = ACTIONS(5971), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5959), - [anon_sym_] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5977), - [anon_sym_LPAREN_PIPE] = ACTIONS(5980), - [anon_sym_LBRACE] = ACTIONS(5983), - [anon_sym_3] = ACTIONS(5986), - [aux_sym_string_token1] = ACTIONS(5989), - [anon_sym_Prop] = ACTIONS(5959), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [2541] = { - [sym_literal] = STATE(457), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(472), [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(474), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(475), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(477), - [sym__atom_curly] = STATE(474), - [sym_record_assignments] = STATE(457), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(719), - [anon_sym_unquote] = ACTIONS(719), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(725), - [anon_sym_Set] = ACTIONS(719), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_LBRACE_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(731), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(719), - [anon_sym_quoteTerm] = ACTIONS(719), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(719), - [sym__const_ellipsis] = ACTIONS(719), - [anon_sym_record] = ACTIONS(733), - [anon_sym_QMARK] = ACTIONS(719), - [anon_sym_] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(737), - [anon_sym_LPAREN_PIPE] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(741), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(745), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(719), - [anon_sym_3] = ACTIONS(749), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), + [sym_pragma] = ACTIONS(3), }, [2542] = { - [sym__newline] = ACTIONS(5992), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6052), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2543] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_DOT_DOT] = ACTIONS(3991), - [sym_name] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [2544] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5994), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, [2545] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_DOT_DOT] = ACTIONS(3014), - [sym_name] = ACTIONS(3012), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3796), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6054), }, [2546] = { - [anon_sym_SEMI] = ACTIONS(5996), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5996), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6056), }, [2547] = { - [anon_sym_SEMI] = ACTIONS(5998), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5998), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), }, [2548] = { - [aux_sym__record_assignments1_repeat1] = STATE(2548), - [anon_sym_SEMI] = ACTIONS(6000), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5998), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(3804), + [sym_typed_binding] = STATE(3805), + [sym_untyped_binding] = STATE(3805), + [sym__lambda_binding] = STATE(3806), + [sym__binding_name] = STATE(3807), + [anon_sym__] = ACTIONS(6058), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6060), + [anon_sym_] = ACTIONS(6062), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_LBRACE] = ACTIONS(6068), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(315), + [anon_sym_DOT_DOT] = ACTIONS(6070), + [sym_name] = ACTIONS(6072), }, [2549] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_renaming] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_using] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_hiding] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3808), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(6054), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [2550] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6003), + [sym__atom_curly] = STATE(3819), + [sym__atom_no_curly] = STATE(3819), + [sym_literal] = STATE(3809), + [aux_sym__open_args1_repeat1] = STATE(3820), + [sym_record_assignments] = STATE(3809), + [sym_atom] = STATE(3820), + [sym__atoms1] = STATE(3821), + [anon_sym__] = ACTIONS(6074), + [anon_sym_quoteTerm] = ACTIONS(6074), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6080), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6082), + [sym_qualified_name] = ACTIONS(6074), + [anon_sym_quote] = ACTIONS(6074), + [anon_sym_3] = ACTIONS(6084), + [anon_sym_Prop] = ACTIONS(6074), + [sym__const_ellipsis] = ACTIONS(6074), + [anon_sym_record] = ACTIONS(6086), + [anon_sym_] = ACTIONS(6088), + [anon_sym_unquote] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6092), + [aux_sym_string_token1] = ACTIONS(6094), + [anon_sym_Set] = ACTIONS(6074), }, [2551] = { - [anon_sym_RPAREN] = ACTIONS(6003), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3823), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3823), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3823), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3823), + [sym_abstract] = STATE(3823), + [sym_private] = STATE(3823), + [sym_function_clause] = STATE(3823), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3823), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3824), + [sym_infix] = STATE(3823), + [sym_data] = STATE(3823), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3823), + [sym_macro] = STATE(3823), + [sym_test] = STATE(3823), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3823), + [sym_record_signature_only] = STATE(3823), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3823), + [sym_syntax] = STATE(3823), + [sym_record] = STATE(3823), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3823), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3823), + [sym_mutual] = STATE(3823), + [sym_postulate] = STATE(3823), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [sym__indent] = ACTIONS(6096), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2552] = { - [sym_renaming] = STATE(3749), - [anon_sym_module] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(6005), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5034), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3826), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6098), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2553] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3751), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6007), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3827), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [2554] = { - [anon_sym_LBRACE] = ACTIONS(6009), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3828), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(6100), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2555] = { - [sym__import_name] = STATE(3180), - [sym__comma_import_names1] = STATE(3753), - [anon_sym_module] = ACTIONS(5040), - [anon_sym_RPAREN] = ACTIONS(6005), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3829), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5042), }, [2556] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6003), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_literal] = STATE(2544), + [sym_record_assignments] = STATE(2544), + [sym_atom] = STATE(3795), + [anon_sym__] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6102), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_LPAREN] = ACTIONS(6104), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_Prop] = ACTIONS(3974), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_record] = ACTIONS(3990), + [anon_sym_] = ACTIONS(6106), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(6108), + [anon_sym_LBRACE] = ACTIONS(6110), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), }, [2557] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6003), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3836), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2558] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_renaming] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_hiding] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), + [sym__binding_name] = STATE(270), + [sym_anonymous_name] = STATE(266), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(268), + [sym_untyped_binding] = STATE(268), + [sym_typed_binding] = STATE(268), + [sym_forall_bindings] = STATE(3837), + [sym__typed_untyped_binding1] = STATE(267), + [anon_sym__] = ACTIONS(385), + [anon_sym_LBRACE_LBRACE] = ACTIONS(387), + [anon_sym_] = ACTIONS(389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(397), + [sym_name] = ACTIONS(399), }, [2559] = { + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), }, [2560] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6003), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(2544), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2562), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_record_assignments] = STATE(2544), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_] = ACTIONS(6114), + [anon_sym__] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6116), + [anon_sym_LPAREN] = ACTIONS(6118), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(6108), + [anon_sym_LBRACE] = ACTIONS(6120), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), }, [2561] = { - [sym_import_directive] = STATE(2561), - [aux_sym_module_macro_repeat1] = STATE(2561), - [anon_sym_using] = ACTIONS(6013), - [anon_sym_SEMI] = ACTIONS(5046), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(6013), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_public] = ACTIONS(6016), - [anon_sym_renaming] = ACTIONS(6019), + [sym__const_right_arrow] = ACTIONS(6122), + [anon_sym_PIPE] = ACTIONS(479), }, [2562] = { - [sym_import_directive] = STATE(2561), - [aux_sym_module_macro_repeat1] = STATE(2561), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_SEMI] = ACTIONS(6022), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [2563] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(2563), - [aux_sym__open_args1_repeat1] = STATE(2563), - [anon_sym__] = ACTIONS(6024), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_unquote] = ACTIONS(6024), - [aux_sym_integer_token1] = ACTIONS(6030), - [anon_sym_Set] = ACTIONS(6024), - [anon_sym_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6024), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_renaming] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(6024), - [sym__const_ellipsis] = ACTIONS(6024), - [anon_sym_record] = ACTIONS(6036), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(6024), - [anon_sym_] = ACTIONS(6039), - [anon_sym_quoteTerm] = ACTIONS(6024), - [anon_sym_DOT] = ACTIONS(6042), - [anon_sym_LPAREN_PIPE] = ACTIONS(6045), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_hiding] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(6051), - [anon_sym_Prop] = ACTIONS(6024), - [anon_sym_3] = ACTIONS(6054), - [anon_sym_public] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6122), }, [2564] = { - [sym__newline] = ACTIONS(811), + [sym_literal] = STATE(3843), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3853), + [sym__atom_no_curly] = STATE(3853), + [aux_sym__open_args1_repeat1] = STATE(3854), + [sym__expr2] = STATE(308), + [sym_do] = STATE(308), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3855), + [sym_record_assignments] = STATE(3843), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(308), + [sym_lambda] = STATE(308), + [sym__application] = STATE(308), + [anon_sym__] = ACTIONS(6124), + [anon_sym_quoteTerm] = ACTIONS(6124), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(6126), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(6124), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6128), + [anon_sym_LPAREN] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6132), + [sym_qualified_name] = ACTIONS(6124), + [anon_sym_quote] = ACTIONS(6124), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(6124), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(6134), + [sym__const_ellipsis] = ACTIONS(6124), + [anon_sym_3] = ACTIONS(6136), + [anon_sym_] = ACTIONS(6138), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6142), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(6144), + [anon_sym_Set] = ACTIONS(6124), + }, + [2565] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6146), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - }, - [2565] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6057), }, [2566] = { - [anon_sym_RPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(2952), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), }, [2567] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3757), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6059), + [sym__newline] = ACTIONS(6148), + [anon_sym_COLON] = ACTIONS(6148), + [anon_sym_with] = ACTIONS(6148), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(6148), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6148), + [anon_sym_where] = ACTIONS(6148), + [anon_sym_rewrite] = ACTIONS(6148), + [anon_sym_module] = ACTIONS(6148), }, [2568] = { - [anon_sym_LBRACE] = ACTIONS(6061), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(934), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(944), + [sym__atom_no_curly] = STATE(944), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(946), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(947), + [sym_atom] = STATE(948), + [sym__typed_bindings1] = STATE(949), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(934), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1449), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(1453), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_quoteTerm] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1449), + [anon_sym_quote] = ACTIONS(1449), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_Prop] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(1457), + [sym__const_ellipsis] = ACTIONS(1449), + [anon_sym_LPAREN_PIPE] = ACTIONS(1459), + [anon_sym_] = ACTIONS(1461), + [anon_sym_3] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_unquote] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1467), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(1469), + [anon_sym_Set] = ACTIONS(1449), [sym_pragma] = ACTIONS(3), }, [2569] = { + [aux_sym_syntax_repeat2] = STATE(3858), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6057), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6150), }, [2570] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2565), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3993), + [sym__binding_name] = STATE(2570), + [sym_anonymous_name] = STATE(1362), + [aux_sym_infix_repeat1] = STATE(2570), + [sym__newline] = ACTIONS(4745), + [anon_sym__] = ACTIONS(6152), + [anon_sym_in] = ACTIONS(6155), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6157), }, [2571] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2566), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3993), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_import_directive] = STATE(3859), + [aux_sym_module_macro_repeat1] = STATE(3859), + [sym__newline] = ACTIONS(4906), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [2572] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2569), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(4906), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(4906), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [2573] = { - [sym__atom_no_curly] = STATE(1405), - [sym_literal] = STATE(1393), - [sym_record_assignments] = STATE(1393), - [sym__atom_curly] = STATE(1405), - [sym_atom] = STATE(2564), - [anon_sym__] = ACTIONS(2296), - [anon_sym_unquote] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4019), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(4021), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [anon_sym_] = ACTIONS(4017), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_3] = ACTIONS(2316), - [aux_sym_string_token1] = ACTIONS(2314), - [anon_sym_Prop] = ACTIONS(2296), + [sym_literal] = STATE(1367), + [sym__open_args1] = STATE(3860), + [sym_import_directive] = STATE(3859), + [sym_atom] = STATE(1380), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_record_assignments] = STATE(1367), + [aux_sym__open_args1_repeat1] = STATE(1380), + [aux_sym_module_macro_repeat1] = STATE(3859), + [sym__newline] = ACTIONS(4906), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(1165), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_using] = ACTIONS(1169), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_] = ACTIONS(2299), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(6160), + [anon_sym_hiding] = ACTIONS(1169), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(1181), }, [2574] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2577), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4009), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_module_application] = STATE(3861), + [sym_qualified_name] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2575] = { [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(6162), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6057), }, [2576] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_renaming] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_hiding] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_public] = ACTIONS(993), }, [2577] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6063), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6164), }, [2578] = { + [anon_sym_RPAREN] = ACTIONS(6164), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6057), [sym_pragma] = ACTIONS(3), }, [2579] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym__newline] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1147), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, [2580] = { - [sym_record_declarations_block] = STATE(3760), - [sym__newline] = ACTIONS(6065), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(2330), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6065), + [sym__newline] = ACTIONS(4912), + [anon_sym__] = ACTIONS(4914), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4912), + [anon_sym_quoteTerm] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4912), + [sym_qualified_name] = ACTIONS(4914), + [anon_sym_quote] = ACTIONS(4914), + [anon_sym_renaming] = ACTIONS(4914), + [anon_sym_Prop] = ACTIONS(4914), + [sym__const_ellipsis] = ACTIONS(4914), + [anon_sym_record] = ACTIONS(4914), + [anon_sym_using] = ACTIONS(4914), + [anon_sym_3] = ACTIONS(4914), + [anon_sym_] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_unquote] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_hiding] = ACTIONS(4914), + [aux_sym_string_token1] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4914), + [anon_sym_Set] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), }, [2581] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2565), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3993), + [anon_sym_PIPE_RPAREN] = ACTIONS(6164), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2582] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2566), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(3993), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3865), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6166), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2583] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2569), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(3997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_LBRACE] = ACTIONS(6168), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2584] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2577), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4009), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6164), }, [2585] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3761), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6164), + [sym_pragma] = ACTIONS(3), }, [2586] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym_name] = ACTIONS(4861), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_renaming] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_using] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_hiding] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), }, [2587] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3762), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(6170), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [2588] = { - [anon_sym_COLON] = ACTIONS(6067), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6069), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_literal] = STATE(1367), + [sym_record_assignments] = STATE(1367), + [sym_atom] = STATE(2588), + [aux_sym__open_args1_repeat1] = STATE(2588), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(6172), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6175), + [anon_sym_quoteTerm] = ACTIONS(6172), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6178), + [anon_sym_QMARK] = ACTIONS(6172), + [anon_sym_LPAREN] = ACTIONS(6181), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6184), + [sym_qualified_name] = ACTIONS(6172), + [anon_sym_quote] = ACTIONS(6172), + [anon_sym_renaming] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(6172), + [sym__const_ellipsis] = ACTIONS(6172), + [anon_sym_record] = ACTIONS(6187), + [anon_sym_using] = ACTIONS(1527), + [anon_sym_3] = ACTIONS(6190), + [anon_sym_] = ACTIONS(6193), + [anon_sym_DOT] = ACTIONS(6196), + [anon_sym_unquote] = ACTIONS(6172), + [anon_sym_LBRACE] = ACTIONS(6199), + [anon_sym_hiding] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(6202), + [anon_sym_in] = ACTIONS(1527), + [anon_sym_Set] = ACTIONS(6172), + [anon_sym_public] = ACTIONS(1527), }, [2589] = { - [anon_sym_COLON] = ACTIONS(6071), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(4965), + [anon_sym_using] = ACTIONS(4967), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6069), + [anon_sym_hiding] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4965), + [anon_sym_public] = ACTIONS(4970), + [anon_sym_renaming] = ACTIONS(4973), }, [2590] = { - [anon_sym_COLON] = ACTIONS(6073), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3868), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2591] = { - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_2] = ACTIONS(6069), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_rewrite] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [2592] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3869), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym_name] = ACTIONS(3633), }, [2593] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3768), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6205), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_pragma] = ACTIONS(3), }, [2594] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6209), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6207), }, [2595] = { - [sym_field_assignment] = STATE(3769), - [sym_qualified_name] = ACTIONS(3647), + [anon_sym_COLON] = ACTIONS(6211), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2596] = { - [aux_sym__field_assignments1_repeat1] = STATE(3770), - [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_COLON] = ACTIONS(6213), + [anon_sym_2] = ACTIONS(6207), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6081), [sym_pragma] = ACTIONS(3), }, [2597] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3771), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3875), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2598] = { - [sym__newline] = ACTIONS(6083), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_rewrite] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [2599] = { - [sym__newline] = ACTIONS(6085), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3876), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2600] = { - [sym__declaration_block] = STATE(119), + [anon_sym_COLON] = ACTIONS(4040), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(6087), + [anon_sym_RBRACE] = ACTIONS(4032), [sym_pragma] = ACTIONS(3), }, [2601] = { - [sym__newline] = ACTIONS(6089), + [sym__field_assignments1] = STATE(2565), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(3972), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6089), }, [2602] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6091), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_rewrite] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2603] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym__dedent] = ACTIONS(6093), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6215), }, [2604] = { - [sym__newline] = ACTIONS(6095), + [anon_sym_RPAREN] = ACTIONS(6215), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2605] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(3776), - [sym_record_constructor_instance] = STATE(2604), - [sym__record_directive] = STATE(2604), - [aux_sym_record_declarations_block_repeat1] = STATE(3777), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [sym_record_constructor] = STATE(2604), - [sym_record_induction] = STATE(2604), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym_record_eta] = STATE(2604), - [sym__atom_curly] = STATE(40), - [sym_module] = STATE(455), - [sym_record_assignments] = STATE(7), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [anon_sym_inductive] = ACTIONS(4043), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_no_DASHeta_DASHequality] = ACTIONS(4045), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_coinductive] = ACTIONS(4043), - [anon_sym_instance] = ACTIONS(4047), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym__dedent] = ACTIONS(6093), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_constructor] = ACTIONS(4051), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_eta_DASHequality] = ACTIONS(4045), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(15), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3879), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6217), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2606] = { - [sym__newline] = ACTIONS(6097), - [anon_sym_where] = ACTIONS(6099), + [anon_sym_LBRACE] = ACTIONS(6219), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6097), }, [2607] = { - [sym__newline] = ACTIONS(6065), + [anon_sym_PIPE_RPAREN] = ACTIONS(6215), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6065), }, [2608] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_2] = ACTIONS(6215), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [2609] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6101), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6215), }, [2610] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3780), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2603), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4044), }, [2611] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_2] = ACTIONS(4861), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2604), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(4044), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2612] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3781), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2608), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2613] = { - [anon_sym_COLON] = ACTIONS(6103), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6105), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_literal] = STATE(1397), + [sym_record_assignments] = STATE(1397), + [sym_atom] = STATE(2602), + [anon_sym__] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2327), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(4066), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_Prop] = ACTIONS(2323), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_record] = ACTIONS(2331), + [anon_sym_] = ACTIONS(4062), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_DOT] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4068), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), }, [2614] = { - [anon_sym_COLON] = ACTIONS(6107), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6105), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2616), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2615] = { - [anon_sym_COLON] = ACTIONS(6109), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_rewrite] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2616] = { - [anon_sym_COLON] = ACTIONS(6111), - [anon_sym_2] = ACTIONS(6105), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6221), [sym_pragma] = ACTIONS(3), }, [2617] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_2] = ACTIONS(3633), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2603), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4044), }, [2618] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3787), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2604), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4044), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2619] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3788), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2608), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2620] = { - [anon_sym_COLON] = ACTIONS(4091), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4083), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2616), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4060), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2621] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_2] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [2622] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6113), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(3311), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), }, [2623] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym__atom_curly] = STATE(1379), + [sym__atom_no_curly] = STATE(1379), + [sym_literal] = STATE(1367), + [aux_sym__open_args1_repeat1] = STATE(1380), + [sym_record_assignments] = STATE(1367), + [sym_atom] = STATE(1380), + [sym__open_args1] = STATE(3317), + [sym__newline] = ACTIONS(5363), + [anon_sym__] = ACTIONS(2283), + [anon_sym_quoteTerm] = ACTIONS(2283), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6223), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2287), + [anon_sym_QMARK] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2289), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2293), + [sym_qualified_name] = ACTIONS(2283), + [anon_sym_quote] = ACTIONS(2283), + [anon_sym_renaming] = ACTIONS(5367), + [anon_sym_3] = ACTIONS(2297), + [anon_sym_Prop] = ACTIONS(2283), + [sym__const_ellipsis] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(5367), + [anon_sym_record] = ACTIONS(2295), + [anon_sym_] = ACTIONS(6225), + [anon_sym_unquote] = ACTIONS(2283), + [anon_sym_DOT] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_hiding] = ACTIONS(5367), + [anon_sym_in] = ACTIONS(5367), + [aux_sym_string_token1] = ACTIONS(2307), + [anon_sym_Set] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(5367), }, [2624] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - }, - [2625] = { + [sym_import_directive] = STATE(3884), + [aux_sym_module_macro_repeat1] = STATE(3884), + [sym__newline] = ACTIONS(5371), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6115), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(5371), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + }, + [2625] = { + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [2626] = { - [sym__field_assignments1] = STATE(3791), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6115), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [2627] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6227), + [sym_pragma] = ACTIONS(3), }, [2628] = { + [sym__field_assignments1] = STATE(3886), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6227), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_2] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), }, [2629] = { + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_2] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [2630] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6117), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2631] = { - [sym__field_assignments1] = STATE(3793), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6117), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6229), }, [2632] = { + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6231), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_2] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), }, [2633] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6119), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2634] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(6121), - [anon_sym_] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6121), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6123), + [sym__expr2] = STATE(3889), + [sym_do] = STATE(3889), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3889), + [sym_lambda] = STATE(3889), + [sym__application] = STATE(3889), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2635] = { - [sym_simple_hole] = STATE(3795), - [sym__const_lambda] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3890), + [sym_do] = STATE(3890), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3890), + [sym_lambda] = STATE(3890), + [sym__application] = STATE(3890), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), }, [2636] = { + [sym_anonymous_name] = STATE(2639), + [sym__binding_name] = STATE(3895), + [anon_sym__] = ACTIONS(4092), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6233), + [anon_sym_] = ACTIONS(6235), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6125), + [anon_sym_LPAREN] = ACTIONS(6237), + [anon_sym_LBRACE] = ACTIONS(6239), + [sym_name] = ACTIONS(4106), }, [2637] = { - [sym_simple_hole] = STATE(3797), - [sym__const_lambda] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), + [sym_open] = STATE(3897), + [sym__expr2] = STATE(3896), + [sym_do] = STATE(3896), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3896), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3896), + [sym_lambda] = STATE(3896), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2638] = { - [sym_simple_hole] = STATE(3798), - [sym__const_lambda] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2380), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3898), + [sym_do] = STATE(3898), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3898), + [sym_let] = STATE(3898), + [sym_lambda] = STATE(3898), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2639] = { - [aux_sym_syntax_repeat2] = STATE(3799), - [sym__newline] = ACTIONS(6127), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6129), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2640] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6133), - [anon_sym_DOT_DOT] = ACTIONS(6131), + [sym_anonymous_name] = STATE(2639), + [sym_typed_binding] = STATE(2640), + [sym_untyped_binding] = STATE(2640), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2642), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(4092), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4094), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6133), - [sym_name] = ACTIONS(6133), + [anon_sym_LPAREN] = ACTIONS(4100), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(4104), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(4106), + [anon_sym_] = ACTIONS(4096), + [anon_sym_DOT] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(6241), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2641] = { - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6137), - [anon_sym_] = ACTIONS(6135), + [sym__newline] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6135), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6137), - [sym_name] = ACTIONS(6135), + [sym__const_right_arrow] = ACTIONS(6243), + [anon_sym_module] = ACTIONS(1303), }, [2642] = { - [sym__field_name] = STATE(2642), - [aux_sym__arg_name_repeat1] = STATE(2642), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6131), - [anon_sym_DOT_DOT] = ACTIONS(6139), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6142), - [sym_name] = ACTIONS(6145), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2643] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(3800), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(6229), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2644] = { - [anon_sym_2] = ACTIONS(6133), - [anon_sym_DOT_DOT] = ACTIONS(6131), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6133), - [sym_name] = ACTIONS(6133), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2645] = { - [sym__field_name] = STATE(2645), - [aux_sym__arg_name_repeat1] = STATE(2645), - [anon_sym_2] = ACTIONS(6133), - [anon_sym_DOT_DOT] = ACTIONS(6148), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6151), - [sym_name] = ACTIONS(6154), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3902), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6245), }, [2646] = { - [sym__field_name] = STATE(3802), - [aux_sym__arg_name_repeat2] = STATE(3802), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6157), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2396), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2647] = { - [sym__field_name] = STATE(3803), - [aux_sym__arg_name_repeat2] = STATE(3803), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2396), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3903), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6245), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2648] = { - [sym__field_name] = STATE(3804), - [aux_sym__arg_name_repeat2] = STATE(3804), - [anon_sym_2] = ACTIONS(6159), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3904), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(2402), }, [2649] = { - [sym__field_name] = STATE(2649), - [aux_sym__arg_name_repeat1] = STATE(2649), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3905), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6139), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_DOT] = ACTIONS(6142), - [sym_name] = ACTIONS(6145), }, [2650] = { - [sym__newline] = ACTIONS(6161), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3907), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6247), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2651] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3908), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2652] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3806), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6163), + [sym__atom_curly] = STATE(2654), + [sym__atom_no_curly] = STATE(2654), + [sym_literal] = STATE(2644), + [sym_record_assignments] = STATE(2644), + [sym_atom] = STATE(3901), + [anon_sym__] = ACTIONS(4108), + [anon_sym_quoteTerm] = ACTIONS(4108), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(4114), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4116), + [sym_qualified_name] = ACTIONS(4108), + [anon_sym_quote] = ACTIONS(4108), + [anon_sym_3] = ACTIONS(4118), + [anon_sym_Prop] = ACTIONS(4108), + [sym__const_ellipsis] = ACTIONS(4108), + [anon_sym_record] = ACTIONS(4120), + [anon_sym_] = ACTIONS(4122), + [anon_sym_unquote] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [aux_sym_string_token1] = ACTIONS(4128), + [anon_sym_Set] = ACTIONS(4108), }, [2653] = { - [sym_primitive] = STATE(3808), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3808), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3808), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3809), - [sym_field] = STATE(3808), - [sym_abstract] = STATE(3808), - [sym_private] = STATE(3808), - [sym_function_clause] = STATE(3808), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3808), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3808), - [sym_data] = STATE(3808), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3808), - [sym_macro] = STATE(3808), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3808), - [sym_record_signature_only] = STATE(3808), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3808), - [sym_syntax] = STATE(3808), - [sym_record] = STATE(3808), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3808), - [sym_generalize] = STATE(3808), - [sym_mutual] = STATE(3808), - [sym_postulate] = STATE(3808), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(6165), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3910), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2654] = { - [sym_typed_binding] = STATE(3817), - [sym_anonymous_name] = STATE(3816), - [sym_untyped_binding] = STATE(3817), - [sym__lambda_binding] = STATE(3818), - [sym__binding_name] = STATE(3819), - [anon_sym__] = ACTIONS(6167), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6169), - [anon_sym_] = ACTIONS(6171), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6177), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [sym_name] = ACTIONS(6181), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2655] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__atom_curly] = STATE(2654), + [sym__atom_no_curly] = STATE(2654), + [sym_literal] = STATE(2644), + [sym_record_assignments] = STATE(2644), + [sym_atom] = STATE(3911), + [aux_sym__open_args1_repeat1] = STATE(3911), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(4108), + [anon_sym_quoteTerm] = ACTIONS(4108), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4108), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(4114), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(4116), + [sym_qualified_name] = ACTIONS(4108), + [anon_sym_quote] = ACTIONS(4108), + [anon_sym_3] = ACTIONS(4118), + [anon_sym_Prop] = ACTIONS(4108), + [sym__const_ellipsis] = ACTIONS(4108), + [anon_sym_record] = ACTIONS(4120), + [anon_sym_] = ACTIONS(4122), + [anon_sym_unquote] = ACTIONS(4108), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4126), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(4128), + [anon_sym_Set] = ACTIONS(4108), + [anon_sym_module] = ACTIONS(419), }, [2656] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3820), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(6163), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [2657] = { + [sym__newline] = ACTIONS(737), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_PIPE] = ACTIONS(6253), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6183), + [anon_sym_module] = ACTIONS(737), + }, + [2657] = { + [sym_primitive] = STATE(3913), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3913), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3913), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3913), + [sym_abstract] = STATE(3913), + [sym_private] = STATE(3913), + [sym_function_clause] = STATE(3913), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3913), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3914), + [sym_infix] = STATE(3913), + [sym_data] = STATE(3913), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3913), + [sym_macro] = STATE(3913), + [sym_test] = STATE(3913), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3913), + [sym_record_signature_only] = STATE(3913), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3913), + [sym_syntax] = STATE(3913), + [sym_record] = STATE(3913), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3913), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3913), + [sym_mutual] = STATE(3913), + [sym_postulate] = STATE(3913), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2658] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3823), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6185), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6255), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2659] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3824), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(6187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_primitive] = STATE(3916), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3916), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3916), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3916), + [sym_abstract] = STATE(3916), + [sym_private] = STATE(3916), + [sym_function_clause] = STATE(3916), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3916), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3916), + [sym_data] = STATE(3916), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3916), + [sym_macro] = STATE(3916), + [sym_test] = STATE(3916), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3916), + [sym_record_signature_only] = STATE(3916), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3916), + [sym_syntax] = STATE(3916), + [sym_record] = STATE(3916), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3916), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3916), + [sym_mutual] = STATE(3916), + [sym_postulate] = STATE(3916), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2660] = { - [sym__atom_no_curly] = STATE(2668), - [sym_literal] = STATE(2651), - [sym_record_assignments] = STATE(2651), - [sym__atom_curly] = STATE(2668), - [sym_atom] = STATE(3805), - [anon_sym__] = ACTIONS(4249), - [anon_sym_unquote] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6189), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(6191), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_] = ACTIONS(6193), - [anon_sym_DOT] = ACTIONS(6195), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6197), - [anon_sym_3] = ACTIONS(4279), - [aux_sym_string_token1] = ACTIONS(4275), - [anon_sym_Prop] = ACTIONS(4249), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3918), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2661] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3830), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(6259), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2662] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3832), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_PIPE_RPAREN] = ACTIONS(6229), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2663] = { - [sym__atom_no_curly] = STATE(3843), - [sym_literal] = STATE(3833), - [aux_sym__open_args1_repeat1] = STATE(3844), - [sym__atom_curly] = STATE(3843), - [sym_record_assignments] = STATE(3833), - [sym_atom] = STATE(3844), - [sym__atoms1] = STATE(3845), - [anon_sym__] = ACTIONS(6201), - [anon_sym_unquote] = ACTIONS(6201), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6205), - [anon_sym_Set] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(6207), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6201), - [anon_sym_quoteTerm] = ACTIONS(6201), - [anon_sym_quote] = ACTIONS(6201), - [sym__const_ellipsis] = ACTIONS(6201), - [anon_sym_record] = ACTIONS(6209), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_] = ACTIONS(6211), - [anon_sym_DOT] = ACTIONS(6213), - [anon_sym_LPAREN_PIPE] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6217), - [anon_sym_3] = ACTIONS(6219), - [aux_sym_string_token1] = ACTIONS(6221), - [anon_sym_Prop] = ACTIONS(6201), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6229), + [sym_pragma] = ACTIONS(3), }, [2664] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3846), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6229), }, [2665] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3847), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2631), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4088), }, [2666] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6223), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2643), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(4088), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2667] = { - [sym_literal] = STATE(3849), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(3859), - [aux_sym__open_args1_repeat1] = STATE(3860), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3861), - [sym__atom_curly] = STATE(3859), - [sym_record_assignments] = STATE(3849), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(6225), - [anon_sym_unquote] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(6227), - [anon_sym_Set] = ACTIONS(6225), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6231), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6225), - [anon_sym_quoteTerm] = ACTIONS(6225), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6225), - [sym__const_ellipsis] = ACTIONS(6225), - [anon_sym_record] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6225), - [anon_sym_] = ACTIONS(6235), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_LPAREN_PIPE] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6241), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(6243), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(6225), - [anon_sym_3] = ACTIONS(6245), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2663), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2668] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_literal] = STATE(1427), + [sym_record_assignments] = STATE(1427), + [sym_atom] = STATE(2630), + [anon_sym__] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2366), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(4152), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_Prop] = ACTIONS(2360), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_record] = ACTIONS(2376), + [anon_sym_] = ACTIONS(4148), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4154), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), }, [2669] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_literal] = STATE(2651), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2668), - [sym_record_assignments] = STATE(2651), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(4261), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_] = ACTIONS(6247), - [anon_sym__] = ACTIONS(4249), - [anon_sym_unquote] = ACTIONS(4249), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6251), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(6195), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6253), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2671), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2670] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2671] = { - [anon_sym_PIPE] = ACTIONS(455), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6261), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6223), }, [2672] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(2506), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [2673] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2631), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4088), }, [2674] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2643), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4088), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2675] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2663), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + }, + [2676] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2671), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2677] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), + }, + [2678] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [2675] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6255), - }, - [2676] = { - [sym_primitive] = STATE(3869), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3869), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3869), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3870), - [sym_field] = STATE(3869), - [sym_abstract] = STATE(3869), - [sym_private] = STATE(3869), - [sym_function_clause] = STATE(3869), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3869), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3869), - [sym_data] = STATE(3869), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3869), - [sym_macro] = STATE(3869), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3869), - [sym_record_signature_only] = STATE(3869), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3869), - [sym_syntax] = STATE(3869), - [sym_record] = STATE(3869), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3869), - [sym_generalize] = STATE(3869), - [sym_mutual] = STATE(3869), - [sym_postulate] = STATE(3869), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [sym__indent] = ACTIONS(6257), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [2677] = { - [sym_typed_binding] = STATE(3878), - [sym_anonymous_name] = STATE(3877), - [sym_untyped_binding] = STATE(3878), - [sym__lambda_binding] = STATE(3879), - [sym__binding_name] = STATE(3880), - [anon_sym__] = ACTIONS(6259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6261), - [anon_sym_] = ACTIONS(6263), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6269), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [sym_name] = ACTIONS(6273), - }, - [2678] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2679] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(6255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2680] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6275), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3922), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6263), }, [2681] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3884), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6277), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3923), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6263), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2682] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(6279), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3924), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2683] = { - [sym__atom_no_curly] = STATE(2691), - [sym_literal] = STATE(2674), - [sym_record_assignments] = STATE(2674), - [sym__atom_curly] = STATE(2691), - [sym_atom] = STATE(3866), - [anon_sym__] = ACTIONS(4285), - [anon_sym_unquote] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6281), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(6283), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [anon_sym_] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(6289), - [anon_sym_3] = ACTIONS(4315), - [aux_sym_string_token1] = ACTIONS(4311), - [anon_sym_Prop] = ACTIONS(4285), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3926), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6265), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2684] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3891), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3927), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2685] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3928), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6267), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2686] = { - [sym__atom_no_curly] = STATE(3904), - [sym_literal] = STATE(3894), - [aux_sym__open_args1_repeat1] = STATE(3905), - [sym__atom_curly] = STATE(3904), - [sym_record_assignments] = STATE(3894), - [sym_atom] = STATE(3905), - [sym__atoms1] = STATE(3906), - [anon_sym__] = ACTIONS(6293), - [anon_sym_unquote] = ACTIONS(6293), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6295), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6297), - [anon_sym_Set] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6299), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6293), - [anon_sym_quoteTerm] = ACTIONS(6293), - [anon_sym_quote] = ACTIONS(6293), - [sym__const_ellipsis] = ACTIONS(6293), - [anon_sym_record] = ACTIONS(6301), - [anon_sym_QMARK] = ACTIONS(6293), - [anon_sym_] = ACTIONS(6303), - [anon_sym_DOT] = ACTIONS(6305), - [anon_sym_LPAREN_PIPE] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6309), - [anon_sym_3] = ACTIONS(6311), - [aux_sym_string_token1] = ACTIONS(6313), - [anon_sym_Prop] = ACTIONS(6293), + [sym__atom_curly] = STATE(2688), + [sym__atom_no_curly] = STATE(2688), + [sym_literal] = STATE(2678), + [sym_record_assignments] = STATE(2678), + [sym_atom] = STATE(3921), + [anon_sym__] = ACTIONS(4158), + [anon_sym_quoteTerm] = ACTIONS(4158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4160), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4164), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4166), + [sym_qualified_name] = ACTIONS(4158), + [anon_sym_quote] = ACTIONS(4158), + [anon_sym_3] = ACTIONS(4170), + [anon_sym_Prop] = ACTIONS(4158), + [sym__const_ellipsis] = ACTIONS(4158), + [anon_sym_record] = ACTIONS(4168), + [anon_sym_] = ACTIONS(4172), + [anon_sym_unquote] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4176), + [aux_sym_string_token1] = ACTIONS(4178), + [anon_sym_Set] = ACTIONS(4158), }, [2687] = { - [sym_typed_binding] = STATE(253), - [sym_anonymous_name] = STATE(251), - [sym__typed_untyped_binding1] = STATE(252), - [sym_untyped_binding] = STATE(253), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(253), - [sym_forall_bindings] = STATE(3907), - [sym__binding_name] = STATE(255), - [anon_sym__] = ACTIONS(359), - [anon_sym_LBRACE_LBRACE] = ACTIONS(361), - [anon_sym_] = ACTIONS(363), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LBRACE] = ACTIONS(369), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(371), - [sym_name] = ACTIONS(373), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3930), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6269), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2688] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3908), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2689] = { - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(2678), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2690), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2688), + [sym__atom_no_curly] = STATE(2688), + [sym_record_assignments] = STATE(2678), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(4158), + [anon_sym_quoteTerm] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(4160), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_LPAREN_PIPE] = ACTIONS(4166), + [sym_qualified_name] = ACTIONS(4158), + [anon_sym_quote] = ACTIONS(4158), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(4168), + [sym__const_ellipsis] = ACTIONS(4158), + [anon_sym_3] = ACTIONS(4170), + [anon_sym_] = ACTIONS(4172), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4176), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(4178), + [anon_sym_Set] = ACTIONS(4158), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6315), }, [2690] = { - [sym_literal] = STATE(3910), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(37), - [sym_let] = STATE(300), - [sym__atom_no_curly] = STATE(3920), - [aux_sym__open_args1_repeat1] = STATE(3921), - [sym_do] = STATE(300), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3922), - [sym__atom_curly] = STATE(3920), - [sym_record_assignments] = STATE(3910), - [sym__application] = STATE(300), - [sym__expr2] = STATE(300), - [sym_lambda] = STATE(300), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(6317), - [anon_sym_unquote] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(6319), - [anon_sym_Set] = ACTIONS(6317), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6323), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6317), - [anon_sym_quoteTerm] = ACTIONS(6317), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6317), - [sym__const_ellipsis] = ACTIONS(6317), - [anon_sym_record] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6317), - [anon_sym_] = ACTIONS(6327), - [anon_sym_DOT] = ACTIONS(6329), - [anon_sym_LPAREN_PIPE] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6333), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(6335), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(6317), - [anon_sym_3] = ACTIONS(6337), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2691] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6271), + [sym_pragma] = ACTIONS(3), }, [2692] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_literal] = STATE(2674), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2691), - [sym_record_assignments] = STATE(2674), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(4297), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [anon_sym_] = ACTIONS(6339), - [anon_sym__] = ACTIONS(4285), - [anon_sym_unquote] = ACTIONS(4285), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6343), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(6345), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2693] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym__expr2] = STATE(3932), + [sym_do] = STATE(3932), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3932), + [sym_lambda] = STATE(3932), + [sym__application] = STATE(3932), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2694] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(3933), + [sym_do] = STATE(3933), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym__application] = STATE(3933), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6315), }, [2695] = { + [sym_anonymous_name] = STATE(2698), + [sym__binding_name] = STATE(3938), + [anon_sym__] = ACTIONS(4182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6273), + [anon_sym_] = ACTIONS(6275), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6347), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6277), + [anon_sym_LBRACE] = ACTIONS(6279), + [sym_name] = ACTIONS(4196), }, [2696] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(2606), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym_open] = STATE(3940), + [sym__expr2] = STATE(3939), + [sym_do] = STATE(3939), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3939), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3939), + [sym_lambda] = STATE(3939), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2697] = { - [sym__newline] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_with] = ACTIONS(6349), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(6349), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6349), - [anon_sym_where] = ACTIONS(6349), - [anon_sym_rewrite] = ACTIONS(6349), - [anon_sym_module] = ACTIONS(6349), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3941), + [sym_do] = STATE(3941), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3941), + [sym_let] = STATE(3941), + [sym_lambda] = STATE(3941), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2698] = { - [sym_literal] = STATE(918), - [sym__typed_bindings1] = STATE(928), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(931), - [aux_sym__open_args1_repeat1] = STATE(932), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(933), - [sym__atom_curly] = STATE(931), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(918), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(934), - [anon_sym__] = ACTIONS(1425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(1429), - [anon_sym_Set] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_unquote] = ACTIONS(1425), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1425), - [anon_sym_quoteTerm] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1425), - [sym__const_ellipsis] = ACTIONS(1425), - [anon_sym_record] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1437), - [anon_sym_LPAREN_PIPE] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(1443), - [sym__const_forall] = ACTIONS(65), - [anon_sym_Prop] = ACTIONS(1425), - [anon_sym_3] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2699] = { - [aux_sym_syntax_repeat2] = STATE(3929), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6351), + [sym_anonymous_name] = STATE(2698), + [sym_typed_binding] = STATE(2699), + [sym_untyped_binding] = STATE(2699), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2701), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(4182), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4184), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(4194), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(4196), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(4186), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(6281), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2700] = { - [sym__binding_name] = STATE(2700), - [aux_sym_infix_repeat1] = STATE(2700), - [sym_anonymous_name] = STATE(1512), - [sym__newline] = ACTIONS(4179), - [anon_sym__] = ACTIONS(6353), - [anon_sym_in] = ACTIONS(6356), + [sym__newline] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1303), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6358), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(6283), + [anon_sym_module] = ACTIONS(1303), }, [2701] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), - }, - [2702] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6361), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), + }, + [2702] = { + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2703] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3931), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6285), }, [2704] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_rewrite] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(6285), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2705] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3932), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym_PIPE_RPAREN] = ACTIONS(6285), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [2706] = { - [anon_sym_COLON] = ACTIONS(6363), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6365), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2707] = { - [anon_sym_COLON] = ACTIONS(6367), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6365), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3946), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6287), }, [2708] = { - [anon_sym_COLON] = ACTIONS(6369), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2709] = { - [anon_sym_COLON] = ACTIONS(6371), - [anon_sym_2] = ACTIONS(6365), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3947), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6287), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2710] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_rewrite] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3948), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2711] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3938), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3949), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2712] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3939), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(3951), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6289), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2713] = { - [anon_sym_COLON] = ACTIONS(4339), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(4331), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3952), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6291), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2714] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(5020), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym__atom_curly] = STATE(2716), + [sym__atom_no_curly] = STATE(2716), + [sym_literal] = STATE(2706), + [sym_record_assignments] = STATE(2706), + [sym_atom] = STATE(3945), + [anon_sym__] = ACTIONS(4200), + [anon_sym_quoteTerm] = ACTIONS(4200), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4202), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4206), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4208), + [sym_qualified_name] = ACTIONS(4200), + [anon_sym_quote] = ACTIONS(4200), + [anon_sym_3] = ACTIONS(4210), + [anon_sym_Prop] = ACTIONS(4200), + [sym__const_ellipsis] = ACTIONS(4200), + [anon_sym_record] = ACTIONS(4212), + [anon_sym_] = ACTIONS(4214), + [anon_sym_unquote] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [aux_sym_string_token1] = ACTIONS(4220), + [anon_sym_Set] = ACTIONS(4200), }, [2715] = { - [sym_import_directive] = STATE(3940), - [aux_sym_module_macro_repeat1] = STATE(3940), - [sym__newline] = ACTIONS(5020), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(5020), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3954), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6293), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2716] = { - [sym_literal] = STATE(1532), - [sym_atom] = STATE(1546), - [sym__atom_curly] = STATE(1543), - [sym_import_directive] = STATE(3940), - [aux_sym_module_macro_repeat1] = STATE(3940), - [sym__open_args1] = STATE(3941), - [sym__atom_no_curly] = STATE(1543), - [sym_record_assignments] = STATE(1532), - [aux_sym__open_args1_repeat1] = STATE(1546), - [sym__newline] = ACTIONS(5020), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(6373), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(1173), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(1177), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(2472), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(1177), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_3] = ACTIONS(2482), - [anon_sym_public] = ACTIONS(1191), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2717] = { - [sym_module_application] = STATE(3942), - [sym_qualified_name] = ACTIONS(4428), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2716), + [sym__atom_no_curly] = STATE(2716), + [sym_literal] = STATE(2706), + [sym_record_assignments] = STATE(2706), + [sym_atom] = STATE(3955), + [aux_sym__open_args1_repeat1] = STATE(3955), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(4200), + [anon_sym_quoteTerm] = ACTIONS(4200), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4202), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4204), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(4206), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(4208), + [sym_qualified_name] = ACTIONS(4200), + [anon_sym_quote] = ACTIONS(4200), + [anon_sym_3] = ACTIONS(4210), + [anon_sym_Prop] = ACTIONS(4200), + [sym__const_ellipsis] = ACTIONS(4200), + [anon_sym_record] = ACTIONS(4212), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(4200), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4218), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(4220), + [anon_sym_Set] = ACTIONS(4200), + [anon_sym_module] = ACTIONS(419), }, [2718] = { + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(6375), + [anon_sym_EQ] = ACTIONS(737), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6295), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), }, [2719] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_renaming] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_using] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_hiding] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), + [sym_primitive] = STATE(3957), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3957), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3957), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3957), + [sym_abstract] = STATE(3957), + [sym_private] = STATE(3957), + [sym_function_clause] = STATE(3957), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3957), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(3958), + [sym_infix] = STATE(3957), + [sym_data] = STATE(3957), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3957), + [sym_macro] = STATE(3957), + [sym_test] = STATE(3957), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3957), + [sym_record_signature_only] = STATE(3957), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3957), + [sym_syntax] = STATE(3957), + [sym_record] = STATE(3957), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3957), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3957), + [sym_mutual] = STATE(3957), + [sym_postulate] = STATE(3957), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2720] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6297), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6377), }, [2721] = { - [anon_sym_RPAREN] = ACTIONS(6377), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(3960), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(3960), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(3960), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(3960), + [sym_abstract] = STATE(3960), + [sym_private] = STATE(3960), + [sym_function_clause] = STATE(3960), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(3960), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(3960), + [sym_data] = STATE(3960), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(3960), + [sym_macro] = STATE(3960), + [sym_test] = STATE(3960), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(3960), + [sym_record_signature_only] = STATE(3960), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(3960), + [sym_syntax] = STATE(3960), + [sym_record] = STATE(3960), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(3960), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(3960), + [sym_mutual] = STATE(3960), + [sym_postulate] = STATE(3960), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2722] = { - [sym__newline] = ACTIONS(1155), - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [anon_sym_in] = ACTIONS(1157), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(3962), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6299), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2723] = { - [sym__newline] = ACTIONS(5026), - [anon_sym__] = ACTIONS(5028), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), - [anon_sym_unquote] = ACTIONS(5028), - [anon_sym_in] = ACTIONS(5028), - [aux_sym_integer_token1] = ACTIONS(5028), - [anon_sym_Set] = ACTIONS(5028), - [anon_sym_LPAREN] = ACTIONS(5028), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5028), - [anon_sym_quoteTerm] = ACTIONS(5028), - [anon_sym_renaming] = ACTIONS(5028), - [anon_sym_quote] = ACTIONS(5028), - [sym__const_ellipsis] = ACTIONS(5028), - [anon_sym_record] = ACTIONS(5028), - [anon_sym_using] = ACTIONS(5028), - [anon_sym_QMARK] = ACTIONS(5028), - [anon_sym_] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_LPAREN_PIPE] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(5028), - [anon_sym_hiding] = ACTIONS(5028), - [aux_sym_string_token1] = ACTIONS(5026), - [anon_sym_Prop] = ACTIONS(5028), - [anon_sym_3] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), + [anon_sym_LBRACE] = ACTIONS(6301), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2724] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3946), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6379), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6285), }, [2725] = { - [anon_sym_LBRACE] = ACTIONS(6381), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6285), [sym_pragma] = ACTIONS(3), }, [2726] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6377), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2727] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6303), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6377), }, [2728] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_renaming] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_using] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_hiding] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_public] = ACTIONS(1397), + [sym_let] = STATE(43), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), + [sym_pragma] = ACTIONS(3), }, [2729] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6383), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2730] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6377), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6327), }, [2731] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(5046), - [anon_sym_using] = ACTIONS(5048), - [anon_sym_in] = ACTIONS(5046), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6329), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(5048), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_renaming] = ACTIONS(5054), }, [2732] = { - [sym__atom_no_curly] = STATE(1543), - [sym_literal] = STATE(1532), - [sym_record_assignments] = STATE(1532), - [sym__atom_curly] = STATE(1543), - [sym_atom] = STATE(2732), - [aux_sym__open_args1_repeat1] = STATE(2732), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(6385), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6388), - [anon_sym_unquote] = ACTIONS(6385), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(6391), - [anon_sym_Set] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6394), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6385), - [anon_sym_quoteTerm] = ACTIONS(6385), - [anon_sym_renaming] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(6385), - [sym__const_ellipsis] = ACTIONS(6385), - [anon_sym_record] = ACTIONS(6397), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(6385), - [anon_sym_] = ACTIONS(6400), - [anon_sym_DOT] = ACTIONS(6403), - [anon_sym_LPAREN_PIPE] = ACTIONS(6406), - [anon_sym_LBRACE] = ACTIONS(6409), - [anon_sym_hiding] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(6412), - [anon_sym_Prop] = ACTIONS(6385), - [anon_sym_3] = ACTIONS(6415), - [anon_sym_public] = ACTIONS(1683), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2733] = { - [sym__field_assignments1] = STATE(2695), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(4283), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(3982), + [sym_do] = STATE(3982), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(3982), + [sym_lambda] = STATE(3982), + [sym__application] = STATE(3982), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2734] = { - [sym__newline] = ACTIONS(811), + [sym__expr2] = STATE(3983), + [sym_do] = STATE(3983), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(3983), + [sym_lambda] = STATE(3983), + [sym__application] = STATE(3983), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_rewrite] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [2735] = { + [sym_anonymous_name] = STATE(2738), + [sym__binding_name] = STATE(3988), + [anon_sym__] = ACTIONS(4234), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6331), + [anon_sym_] = ACTIONS(6333), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6418), + [anon_sym_LPAREN] = ACTIONS(6335), + [anon_sym_LBRACE] = ACTIONS(6337), + [sym_name] = ACTIONS(4248), }, [2736] = { - [anon_sym_RPAREN] = ACTIONS(6418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(3990), + [sym__expr2] = STATE(3989), + [sym_do] = STATE(3989), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(3989), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(3989), + [sym_lambda] = STATE(3989), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2737] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3951), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(3991), + [sym_do] = STATE(3991), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(3991), + [sym_let] = STATE(3991), + [sym_lambda] = STATE(3991), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2738] = { - [anon_sym_LBRACE] = ACTIONS(6422), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2739] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6418), - [sym_pragma] = ACTIONS(3), + [sym_anonymous_name] = STATE(2738), + [sym_typed_binding] = STATE(2739), + [sym_untyped_binding] = STATE(2739), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2741), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(4234), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4236), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(4246), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(4248), + [anon_sym_] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(4240), + [anon_sym_LBRACE] = ACTIONS(6339), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2740] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2735), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4357), + [sym__newline] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1303), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(6341), + [anon_sym_module] = ACTIONS(1303), }, [2741] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2736), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4357), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2742] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2739), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4361), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(6327), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2743] = { - [sym__atom_no_curly] = STATE(1561), - [sym_literal] = STATE(1550), - [sym_record_assignments] = STATE(1550), - [sym__atom_curly] = STATE(1561), - [sym_atom] = STATE(2734), - [anon_sym__] = ACTIONS(2486), - [anon_sym_unquote] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4379), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(4381), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [anon_sym_] = ACTIONS(4377), - [anon_sym_DOT] = ACTIONS(4369), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_3] = ACTIONS(2506), - [aux_sym_string_token1] = ACTIONS(2504), - [anon_sym_Prop] = ACTIONS(2486), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2744] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2747), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3995), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6343), }, [2745] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6418), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2746] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_rewrite] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3996), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6343), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2747] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6424), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(3997), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [2748] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6418), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3998), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [2749] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4000), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6345), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2750] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2735), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4357), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4001), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6347), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2751] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2736), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4357), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(2753), + [sym__atom_no_curly] = STATE(2753), + [sym_literal] = STATE(2743), + [sym_record_assignments] = STATE(2743), + [sym_atom] = STATE(3994), + [anon_sym__] = ACTIONS(4250), + [anon_sym_quoteTerm] = ACTIONS(4250), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_LPAREN] = ACTIONS(4256), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4258), + [sym_qualified_name] = ACTIONS(4250), + [anon_sym_quote] = ACTIONS(4250), + [anon_sym_3] = ACTIONS(4260), + [anon_sym_Prop] = ACTIONS(4250), + [sym__const_ellipsis] = ACTIONS(4250), + [anon_sym_record] = ACTIONS(4262), + [anon_sym_] = ACTIONS(4264), + [anon_sym_unquote] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [aux_sym_string_token1] = ACTIONS(4270), + [anon_sym_Set] = ACTIONS(4250), }, [2752] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2739), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4361), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4003), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6349), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2753] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2747), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2754] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__atom_curly] = STATE(2753), + [sym__atom_no_curly] = STATE(2753), + [sym_literal] = STATE(2743), + [sym_record_assignments] = STATE(2743), + [sym_atom] = STATE(4004), + [aux_sym__open_args1_repeat1] = STATE(4004), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(4250), + [anon_sym_quoteTerm] = ACTIONS(4250), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4252), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4254), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(4256), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(4258), + [sym_qualified_name] = ACTIONS(4250), + [anon_sym_quote] = ACTIONS(4250), + [anon_sym_3] = ACTIONS(4260), + [anon_sym_Prop] = ACTIONS(4250), + [sym__const_ellipsis] = ACTIONS(4250), + [anon_sym_record] = ACTIONS(4262), + [anon_sym_] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_unquote] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4268), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(4270), + [anon_sym_Set] = ACTIONS(4250), + [anon_sym_module] = ACTIONS(419), }, [2755] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [2756] = { + [sym__newline] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6426), + [anon_sym_EQ] = ACTIONS(737), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6351), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), + }, + [2756] = { + [sym_primitive] = STATE(4006), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4006), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4006), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4006), + [sym_abstract] = STATE(4006), + [sym_private] = STATE(4006), + [sym_function_clause] = STATE(4006), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4006), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4007), + [sym_infix] = STATE(4006), + [sym_data] = STATE(4006), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4006), + [sym_macro] = STATE(4006), + [sym_test] = STATE(4006), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4006), + [sym_record_signature_only] = STATE(4006), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4006), + [sym_syntax] = STATE(4006), + [sym_record] = STATE(4006), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4006), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4006), + [sym_mutual] = STATE(4006), + [sym_postulate] = STATE(4006), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2757] = { - [sym__field_assignments1] = STATE(3955), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6426), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6353), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2758] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - }, - [2759] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(3307), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), + [sym_primitive] = STATE(4009), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4009), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4009), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4009), + [sym_abstract] = STATE(4009), + [sym_private] = STATE(4009), + [sym_function_clause] = STATE(4009), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_open] = STATE(4009), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4009), + [sym_data] = STATE(4009), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym_instance] = STATE(4009), + [sym_macro] = STATE(4009), + [sym_test] = STATE(4009), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4009), + [sym_record_signature_only] = STATE(4009), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4009), + [sym_syntax] = STATE(4009), + [sym_record] = STATE(4009), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4009), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4009), + [sym_mutual] = STATE(4009), + [sym_postulate] = STATE(4009), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [2759] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4011), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6355), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2760] = { - [sym__atom_no_curly] = STATE(1543), - [sym_literal] = STATE(1532), - [aux_sym__open_args1_repeat1] = STATE(1546), - [sym__atom_curly] = STATE(1543), - [sym_record_assignments] = STATE(1532), - [sym_atom] = STATE(1546), - [sym__open_args1] = STATE(3313), - [sym__newline] = ACTIONS(5342), - [anon_sym__] = ACTIONS(2458), - [anon_sym_unquote] = ACTIONS(2458), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6428), - [anon_sym_in] = ACTIONS(5346), - [aux_sym_integer_token1] = ACTIONS(2464), - [anon_sym_Set] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(6357), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2458), - [anon_sym_quoteTerm] = ACTIONS(2458), - [anon_sym_renaming] = ACTIONS(5346), - [anon_sym_quote] = ACTIONS(2458), - [sym__const_ellipsis] = ACTIONS(2458), - [anon_sym_record] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(5346), - [anon_sym_QMARK] = ACTIONS(2458), - [anon_sym_] = ACTIONS(6430), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LPAREN_PIPE] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_hiding] = ACTIONS(5346), - [anon_sym_3] = ACTIONS(2482), - [aux_sym_string_token1] = ACTIONS(2480), - [anon_sym_Prop] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(5346), }, [2761] = { - [sym_import_directive] = STATE(3958), - [aux_sym_module_macro_repeat1] = STATE(3958), - [sym__newline] = ACTIONS(5350), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(5350), + [anon_sym_PIPE_RPAREN] = ACTIONS(6327), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [2762] = { - [sym_primitive] = STATE(3959), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3959), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3959), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(3960), - [sym_field] = STATE(3959), - [sym_abstract] = STATE(3959), - [sym_private] = STATE(3959), - [sym_function_clause] = STATE(3959), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3959), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3959), - [sym_data] = STATE(3959), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3959), - [sym_macro] = STATE(3959), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3959), - [sym_record_signature_only] = STATE(3959), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3959), - [sym_syntax] = STATE(3959), - [sym_record] = STATE(3959), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3959), - [sym_generalize] = STATE(3959), - [sym_mutual] = STATE(3959), - [sym_postulate] = STATE(3959), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6327), + [sym_pragma] = ACTIONS(3), }, [2763] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6432), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6327), }, [2764] = { - [sym_primitive] = STATE(3962), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(3962), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(3962), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(3962), - [sym_abstract] = STATE(3962), - [sym_private] = STATE(3962), - [sym_function_clause] = STATE(3962), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(3962), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(3962), - [sym_data] = STATE(3962), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(3962), - [sym_macro] = STATE(3962), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(3962), - [sym_record_signature_only] = STATE(3962), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(3962), - [sym_syntax] = STATE(3962), - [sym_record] = STATE(3962), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(3962), - [sym_generalize] = STATE(3962), - [sym_mutual] = STATE(3962), - [sym_postulate] = STATE(3962), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2730), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4230), }, [2765] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2742), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(4230), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2766] = { - [sym_do] = STATE(3963), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3963), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(3963), - [sym_lambda] = STATE(3963), - [sym__application] = STATE(3963), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2762), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2767] = { - [sym_do] = STATE(3964), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3964), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(3964), - [sym_lambda] = STATE(3964), - [sym__application] = STATE(3964), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_literal] = STATE(1467), + [sym_record_assignments] = STATE(1467), + [sym_atom] = STATE(2729), + [anon_sym__] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4292), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(4294), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_Prop] = ACTIONS(2424), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_record] = ACTIONS(2440), + [anon_sym_] = ACTIONS(4290), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(4284), + [anon_sym_LBRACE] = ACTIONS(4296), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), }, [2768] = { - [sym_anonymous_name] = STATE(2771), - [sym__binding_name] = STATE(3969), - [anon_sym__] = ACTIONS(4436), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6434), - [anon_sym_] = ACTIONS(6436), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6438), - [anon_sym_LBRACE] = ACTIONS(6440), - [sym_name] = ACTIONS(4450), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2770), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2769] = { - [sym_do] = STATE(3971), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3971), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(3971), - [sym_lambda] = STATE(3971), - [sym_open] = STATE(3970), - [sym__application] = STATE(3971), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2770] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(3972), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(3972), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(3972), - [sym__expr2] = STATE(3972), - [sym_lambda] = STATE(3972), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(6359), + [sym_pragma] = ACTIONS(3), }, [2771] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), + [sym_pragma] = ACTIONS(3), }, [2772] = { - [sym_typed_binding] = STATE(2772), - [sym_anonymous_name] = STATE(2771), - [sym_untyped_binding] = STATE(2772), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2774), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(4436), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4438), - [anon_sym_in] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(4440), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_LBRACE] = ACTIONS(6442), - [anon_sym_module] = ACTIONS(1143), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2730), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4230), }, [2773] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(6444), - [anon_sym_module] = ACTIONS(1147), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2742), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4230), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2774] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2762), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4276), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2775] = { - [anon_sym_in] = ACTIONS(6446), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2770), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2776] = { - [sym__newline] = ACTIONS(811), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [2777] = { - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6448), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2778] = { - [anon_sym_RPAREN] = ACTIONS(6448), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2779] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(3978), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6450), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4015), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6361), }, [2780] = { - [anon_sym_LBRACE] = ACTIONS(6452), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4016), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6361), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2781] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6448), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4017), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [2782] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6448), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4019), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6363), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2783] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4020), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2784] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4021), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6365), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6454), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2785] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym__atom_curly] = STATE(2787), + [sym__atom_no_curly] = STATE(2787), + [sym_literal] = STATE(2777), + [sym_record_assignments] = STATE(2777), + [sym_atom] = STATE(4014), + [anon_sym__] = ACTIONS(4300), + [anon_sym_quoteTerm] = ACTIONS(4300), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4304), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_LPAREN] = ACTIONS(4306), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4308), + [sym_qualified_name] = ACTIONS(4300), + [anon_sym_quote] = ACTIONS(4300), + [anon_sym_3] = ACTIONS(4312), + [anon_sym_Prop] = ACTIONS(4300), + [sym__const_ellipsis] = ACTIONS(4300), + [anon_sym_record] = ACTIONS(4310), + [anon_sym_] = ACTIONS(4314), + [anon_sym_unquote] = ACTIONS(4300), + [anon_sym_DOT] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4318), + [aux_sym_string_token1] = ACTIONS(4320), + [anon_sym_Set] = ACTIONS(4300), }, [2786] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3982), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6456), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4023), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6367), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2787] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2788] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3983), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6456), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(2777), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2789), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2787), + [sym__atom_no_curly] = STATE(2787), + [sym_record_assignments] = STATE(2777), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(4300), + [anon_sym_quoteTerm] = ACTIONS(4300), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(4302), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(4306), + [anon_sym_LPAREN_PIPE] = ACTIONS(4308), + [sym_qualified_name] = ACTIONS(4300), + [anon_sym_quote] = ACTIONS(4300), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(4300), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(4310), + [sym__const_ellipsis] = ACTIONS(4300), + [anon_sym_3] = ACTIONS(4312), + [anon_sym_] = ACTIONS(4314), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4300), + [anon_sym_DOT] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4318), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(4320), + [anon_sym_Set] = ACTIONS(4300), + [sym_pragma] = ACTIONS(3), }, [2789] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(3985), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6458), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2790] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3986), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6460), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6369), + [sym_pragma] = ACTIONS(3), }, [2791] = { - [sym__atom_no_curly] = STATE(2795), - [sym_literal] = STATE(2785), - [sym_record_assignments] = STATE(2785), - [sym__atom_curly] = STATE(2795), - [sym_atom] = STATE(3981), - [anon_sym__] = ACTIONS(4462), - [anon_sym_unquote] = ACTIONS(4462), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4464), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4466), - [anon_sym_Set] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4468), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4462), - [anon_sym_quoteTerm] = ACTIONS(4462), - [anon_sym_quote] = ACTIONS(4462), - [sym__const_ellipsis] = ACTIONS(4462), - [anon_sym_record] = ACTIONS(4470), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_] = ACTIONS(4472), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_LPAREN_PIPE] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_3] = ACTIONS(4480), - [aux_sym_string_token1] = ACTIONS(4482), - [anon_sym_Prop] = ACTIONS(4462), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym__newline] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2792] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3987), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__expr2] = STATE(4025), + [sym_do] = STATE(4025), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4025), + [sym_lambda] = STATE(4025), + [sym__application] = STATE(4025), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2793] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3989), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6462), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4026), + [sym_do] = STATE(4026), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4026), + [sym_lambda] = STATE(4026), + [sym__application] = STATE(4026), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [2794] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(3990), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_anonymous_name] = STATE(2797), + [sym__binding_name] = STATE(4031), + [anon_sym__] = ACTIONS(4324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6371), + [anon_sym_] = ACTIONS(6373), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6375), + [anon_sym_LBRACE] = ACTIONS(6377), + [sym_name] = ACTIONS(4338), }, [2795] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_open] = STATE(4033), + [sym__expr2] = STATE(4032), + [sym_do] = STATE(4032), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4032), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4032), + [sym_lambda] = STATE(4032), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2796] = { - [sym__atom_no_curly] = STATE(2795), - [sym_literal] = STATE(2785), - [sym_record_assignments] = STATE(2785), - [sym__atom_curly] = STATE(2795), - [sym_atom] = STATE(3991), - [aux_sym__open_args1_repeat1] = STATE(3991), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(4462), - [anon_sym_unquote] = ACTIONS(4462), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4464), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(4466), - [anon_sym_Set] = ACTIONS(4462), - [anon_sym_LPAREN] = ACTIONS(4468), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(4462), - [anon_sym_quoteTerm] = ACTIONS(4462), - [anon_sym_quote] = ACTIONS(4462), - [sym__const_ellipsis] = ACTIONS(4462), - [anon_sym_record] = ACTIONS(4470), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_with] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_] = ACTIONS(4472), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_LPAREN_PIPE] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_3] = ACTIONS(4480), - [aux_sym_string_token1] = ACTIONS(4482), - [anon_sym_Prop] = ACTIONS(4462), - [anon_sym_module] = ACTIONS(425), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(4034), + [sym_do] = STATE(4034), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4034), + [sym_let] = STATE(4034), + [sym_lambda] = STATE(4034), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2797] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6464), - [anon_sym_with] = ACTIONS(1457), - [anon_sym_in] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_with] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2798] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [sym_anonymous_name] = STATE(2797), + [sym_typed_binding] = STATE(2798), + [sym_untyped_binding] = STATE(2798), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2800), + [anon_sym_COLON] = ACTIONS(1299), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(4324), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4326), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4332), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(4336), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(1299), + [anon_sym_] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(6379), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2799] = { + [anon_sym_COLON] = ACTIONS(1303), + [sym__newline] = ACTIONS(1303), + [anon_sym_with] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6448), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(6381), + [anon_sym_module] = ACTIONS(1303), }, [2800] = { - [sym__newline] = ACTIONS(811), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_with] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2801] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6488), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2802] = { - [sym_primitive] = STATE(4009), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4009), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4009), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4010), - [sym_field] = STATE(4009), - [sym_abstract] = STATE(4009), - [sym_private] = STATE(4009), - [sym_function_clause] = STATE(4009), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4009), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4009), - [sym_data] = STATE(4009), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4009), - [sym_macro] = STATE(4009), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4009), - [sym_record_signature_only] = STATE(4009), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4009), - [sym_syntax] = STATE(4009), - [sym_record] = STATE(4009), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4009), - [sym_generalize] = STATE(4009), - [sym_mutual] = STATE(4009), - [sym_postulate] = STATE(4009), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6383), }, [2803] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6490), + [anon_sym_RPAREN] = ACTIONS(6383), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2804] = { - [sym_primitive] = STATE(4012), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4012), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4012), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4012), - [sym_abstract] = STATE(4012), - [sym_private] = STATE(4012), - [sym_function_clause] = STATE(4012), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4012), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4012), - [sym_data] = STATE(4012), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4012), - [sym_macro] = STATE(4012), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4012), - [sym_record_signature_only] = STATE(4012), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4012), - [sym_syntax] = STATE(4012), - [sym_record] = STATE(4012), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4012), - [sym_generalize] = STATE(4012), - [sym_mutual] = STATE(4012), - [sym_postulate] = STATE(4012), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_PIPE_RPAREN] = ACTIONS(6383), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2805] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym__newline] = ACTIONS(121), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2806] = { - [sym_do] = STATE(4013), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4013), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4013), - [sym_lambda] = STATE(4013), - [sym__application] = STATE(4013), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4039), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6385), }, [2807] = { - [sym_do] = STATE(4014), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4014), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4014), - [sym_lambda] = STATE(4014), - [sym__application] = STATE(4014), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2808] = { - [sym_anonymous_name] = STATE(2811), - [sym__binding_name] = STATE(4019), - [anon_sym__] = ACTIONS(4488), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6492), - [anon_sym_] = ACTIONS(6494), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6496), - [anon_sym_LBRACE] = ACTIONS(6498), - [sym_name] = ACTIONS(4502), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4040), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6385), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2809] = { - [sym_do] = STATE(4021), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4021), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4021), - [sym_lambda] = STATE(4021), - [sym_open] = STATE(4020), - [sym__application] = STATE(4021), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4041), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [2810] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4022), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4022), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4022), - [sym__expr2] = STATE(4022), - [sym_lambda] = STATE(4022), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4042), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [2811] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4044), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6387), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2812] = { - [sym_typed_binding] = STATE(2812), - [sym_anonymous_name] = STATE(2811), - [sym_untyped_binding] = STATE(2812), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2814), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(4488), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4490), - [anon_sym_in] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4496), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(4500), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4502), - [anon_sym_] = ACTIONS(4492), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_DOT] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(6500), - [anon_sym_module] = ACTIONS(1143), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4045), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6389), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2813] = { - [sym__newline] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_in] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1147), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(6502), - [anon_sym_module] = ACTIONS(1147), + [sym__atom_curly] = STATE(2815), + [sym__atom_no_curly] = STATE(2815), + [sym_literal] = STATE(2805), + [sym_record_assignments] = STATE(2805), + [sym_atom] = STATE(4038), + [anon_sym__] = ACTIONS(4342), + [anon_sym_quoteTerm] = ACTIONS(4342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4344), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4346), + [anon_sym_QMARK] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4348), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4350), + [sym_qualified_name] = ACTIONS(4342), + [anon_sym_quote] = ACTIONS(4342), + [anon_sym_3] = ACTIONS(4352), + [anon_sym_Prop] = ACTIONS(4342), + [sym__const_ellipsis] = ACTIONS(4342), + [anon_sym_record] = ACTIONS(4354), + [anon_sym_] = ACTIONS(4356), + [anon_sym_unquote] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_LBRACE] = ACTIONS(4360), + [aux_sym_string_token1] = ACTIONS(4362), + [anon_sym_Set] = ACTIONS(4342), }, [2814] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4047), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6391), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2815] = { - [anon_sym_RPAREN] = ACTIONS(6488), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2816] = { - [anon_sym_in] = ACTIONS(6504), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2815), + [sym__atom_no_curly] = STATE(2815), + [sym_literal] = STATE(2805), + [sym_record_assignments] = STATE(2805), + [sym_atom] = STATE(4048), + [aux_sym__open_args1_repeat1] = STATE(4048), + [anon_sym_COLON] = ACTIONS(419), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(4342), + [anon_sym_quoteTerm] = ACTIONS(4342), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4344), + [aux_sym_integer_token1] = ACTIONS(4346), + [anon_sym_QMARK] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(4348), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(4350), + [sym_qualified_name] = ACTIONS(4342), + [anon_sym_quote] = ACTIONS(4342), + [anon_sym_3] = ACTIONS(4352), + [anon_sym_Prop] = ACTIONS(4342), + [sym__const_ellipsis] = ACTIONS(4342), + [anon_sym_record] = ACTIONS(4354), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(419), + [anon_sym_] = ACTIONS(4356), + [anon_sym_unquote] = ACTIONS(4342), + [anon_sym_DOT] = ACTIONS(4358), + [anon_sym_LBRACE] = ACTIONS(4360), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(4362), + [anon_sym_Set] = ACTIONS(4342), + [anon_sym_module] = ACTIONS(419), }, [2817] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4027), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_COLON] = ACTIONS(737), + [sym__newline] = ACTIONS(737), + [anon_sym_with] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6393), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), }, [2818] = { - [anon_sym_LBRACE] = ACTIONS(6508), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4050), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4050), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4050), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4050), + [sym_abstract] = STATE(4050), + [sym_private] = STATE(4050), + [sym_function_clause] = STATE(4050), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4050), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4051), + [sym_infix] = STATE(4050), + [sym_data] = STATE(4050), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4050), + [sym_macro] = STATE(4050), + [sym_test] = STATE(4050), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4050), + [sym_record_signature_only] = STATE(4050), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4050), + [sym_syntax] = STATE(4050), + [sym_record] = STATE(4050), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4050), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4050), + [sym_mutual] = STATE(4050), + [sym_postulate] = STATE(4050), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2819] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6395), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6488), [sym_pragma] = ACTIONS(3), }, [2820] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2801), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4484), + [sym_primitive] = STATE(4053), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4053), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4053), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4053), + [sym_abstract] = STATE(4053), + [sym_private] = STATE(4053), + [sym_function_clause] = STATE(4053), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4053), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4053), + [sym_data] = STATE(4053), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4053), + [sym_macro] = STATE(4053), + [sym_test] = STATE(4053), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4053), + [sym_record_signature_only] = STATE(4053), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4053), + [sym_syntax] = STATE(4053), + [sym_record] = STATE(4053), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4053), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4053), + [sym_mutual] = STATE(4053), + [sym_postulate] = STATE(4053), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2821] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2815), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4484), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4055), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6397), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2822] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2819), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4508), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(6399), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2823] = { - [sym__atom_no_curly] = STATE(1618), - [sym_literal] = STATE(1601), - [sym_record_assignments] = STATE(1601), - [sym__atom_curly] = STATE(1618), - [sym_atom] = STATE(2800), - [anon_sym__] = ACTIONS(2554), - [anon_sym_unquote] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4570), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(4572), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [anon_sym_] = ACTIONS(4568), - [anon_sym_DOT] = ACTIONS(4516), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(4574), - [anon_sym_3] = ACTIONS(2584), - [aux_sym_string_token1] = ACTIONS(2580), - [anon_sym_Prop] = ACTIONS(2554), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6383), }, [2824] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2827), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6383), + [sym_pragma] = ACTIONS(3), }, [2825] = { - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6488), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2826] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6401), + [sym_pragma] = ACTIONS(3), }, [2827] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6510), + [sym_let] = STATE(43), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), [sym_pragma] = ACTIONS(3), }, [2828] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [2829] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4031), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6512), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6425), }, [2830] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6427), + [sym_pragma] = ACTIONS(3), }, [2831] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4032), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6512), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [sym__newline] = ACTIONS(1183), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_module] = ACTIONS(1185), }, [2832] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4034), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6514), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__expr2] = STATE(4075), + [sym_do] = STATE(4075), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4075), + [sym_lambda] = STATE(4075), + [sym__application] = STATE(4075), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [2833] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4035), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6516), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__expr2] = STATE(4076), + [sym_do] = STATE(4076), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4076), + [sym_lambda] = STATE(4076), + [sym__application] = STATE(4076), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [2834] = { - [sym__atom_no_curly] = STATE(2838), - [sym_literal] = STATE(2828), - [sym_record_assignments] = STATE(2828), - [sym__atom_curly] = STATE(2838), - [sym_atom] = STATE(4030), - [anon_sym__] = ACTIONS(4522), - [anon_sym_unquote] = ACTIONS(4522), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4524), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4526), - [anon_sym_Set] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4528), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4522), - [anon_sym_quoteTerm] = ACTIONS(4522), - [anon_sym_quote] = ACTIONS(4522), - [sym__const_ellipsis] = ACTIONS(4522), - [anon_sym_record] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4522), - [anon_sym_] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_LPAREN_PIPE] = ACTIONS(4536), - [anon_sym_LBRACE] = ACTIONS(4538), - [anon_sym_3] = ACTIONS(4540), - [aux_sym_string_token1] = ACTIONS(4542), - [anon_sym_Prop] = ACTIONS(4522), + [sym_anonymous_name] = STATE(2837), + [sym__binding_name] = STATE(4081), + [anon_sym__] = ACTIONS(4376), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6429), + [anon_sym_] = ACTIONS(6431), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6433), + [anon_sym_LBRACE] = ACTIONS(6435), + [sym_name] = ACTIONS(4390), }, [2835] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4036), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_open] = STATE(4083), + [sym__expr2] = STATE(4082), + [sym_do] = STATE(4082), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4082), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4082), + [sym_lambda] = STATE(4082), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [2836] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4038), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6518), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(4084), + [sym_do] = STATE(4084), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4084), + [sym_let] = STATE(4084), + [sym_lambda] = STATE(4084), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [2837] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4039), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [sym__newline] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_module] = ACTIONS(1295), }, [2838] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_anonymous_name] = STATE(2837), + [sym_typed_binding] = STATE(2838), + [sym_untyped_binding] = STATE(2838), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(2840), + [anon_sym_COLON] = ACTIONS(1299), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(4376), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4378), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(4390), + [anon_sym_] = ACTIONS(4380), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(6437), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_module] = ACTIONS(1299), }, [2839] = { - [sym__atom_no_curly] = STATE(2838), - [sym_literal] = STATE(2828), - [sym_record_assignments] = STATE(2828), - [sym__atom_curly] = STATE(2838), - [sym_atom] = STATE(4040), - [aux_sym__open_args1_repeat1] = STATE(4040), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(4522), - [anon_sym_unquote] = ACTIONS(4522), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4524), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(4526), - [anon_sym_Set] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4528), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(4522), - [anon_sym_quoteTerm] = ACTIONS(4522), - [anon_sym_quote] = ACTIONS(4522), - [sym__const_ellipsis] = ACTIONS(4522), - [anon_sym_record] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4522), - [anon_sym_] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(4534), - [anon_sym_LPAREN_PIPE] = ACTIONS(4536), - [anon_sym_LBRACE] = ACTIONS(4538), - [anon_sym_3] = ACTIONS(4540), - [aux_sym_string_token1] = ACTIONS(4542), - [anon_sym_Prop] = ACTIONS(4522), - [anon_sym_module] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(1303), + [sym__newline] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(6439), + [anon_sym_module] = ACTIONS(1303), }, [2840] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6520), - [anon_sym_in] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [sym__newline] = ACTIONS(1307), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), }, [2841] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), - }, - [2842] = { + [anon_sym_RPAREN] = ACTIONS(6425), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6488), [sym_pragma] = ACTIONS(3), }, - [2843] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), - }, - [2844] = { + [2842] = { + [anon_sym_COLON] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [2845] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [2843] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4088), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6441), }, - [2846] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4043), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [2844] = { + [anon_sym_COLON] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6522), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, - [2847] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4044), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6522), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [2845] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4089), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6441), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, - [2848] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4046), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6524), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [2846] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4090), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, - [2849] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4047), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6526), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [2847] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4091), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), + }, + [2848] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4093), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6443), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [2849] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4094), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6445), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2850] = { - [sym__atom_no_curly] = STATE(2854), - [sym_literal] = STATE(2844), - [sym_record_assignments] = STATE(2844), - [sym__atom_curly] = STATE(2854), - [sym_atom] = STATE(4042), - [anon_sym__] = ACTIONS(4546), - [anon_sym_unquote] = ACTIONS(4546), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4550), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4548), - [anon_sym_Set] = ACTIONS(4546), - [anon_sym_LPAREN] = ACTIONS(4552), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4546), - [anon_sym_quoteTerm] = ACTIONS(4546), - [anon_sym_quote] = ACTIONS(4546), - [sym__const_ellipsis] = ACTIONS(4546), - [anon_sym_record] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_LPAREN_PIPE] = ACTIONS(4560), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_3] = ACTIONS(4566), - [aux_sym_string_token1] = ACTIONS(4564), - [anon_sym_Prop] = ACTIONS(4546), + [sym__atom_curly] = STATE(2852), + [sym__atom_no_curly] = STATE(2852), + [sym_literal] = STATE(2842), + [sym_record_assignments] = STATE(2842), + [sym_atom] = STATE(4087), + [anon_sym__] = ACTIONS(4392), + [anon_sym_quoteTerm] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4394), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4396), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4398), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4400), + [sym_qualified_name] = ACTIONS(4392), + [anon_sym_quote] = ACTIONS(4392), + [anon_sym_3] = ACTIONS(4402), + [anon_sym_Prop] = ACTIONS(4392), + [sym__const_ellipsis] = ACTIONS(4392), + [anon_sym_record] = ACTIONS(4404), + [anon_sym_] = ACTIONS(4406), + [anon_sym_unquote] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4410), + [aux_sym_string_token1] = ACTIONS(4412), + [anon_sym_Set] = ACTIONS(4392), }, [2851] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4048), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4096), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6447), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2852] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4050), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6528), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2853] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4051), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__atom_curly] = STATE(2852), + [sym__atom_no_curly] = STATE(2852), + [sym_literal] = STATE(2842), + [sym_record_assignments] = STATE(2842), + [sym_atom] = STATE(4097), + [aux_sym__open_args1_repeat1] = STATE(4097), + [anon_sym_COLON] = ACTIONS(419), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(4392), + [anon_sym_quoteTerm] = ACTIONS(4392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4394), + [aux_sym_integer_token1] = ACTIONS(4396), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(4398), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(4400), + [sym_qualified_name] = ACTIONS(4392), + [anon_sym_quote] = ACTIONS(4392), + [anon_sym_3] = ACTIONS(4402), + [anon_sym_Prop] = ACTIONS(4392), + [sym__const_ellipsis] = ACTIONS(4392), + [anon_sym_record] = ACTIONS(4404), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(4406), + [anon_sym_unquote] = ACTIONS(4392), + [anon_sym_DOT] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4410), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(4412), + [anon_sym_Set] = ACTIONS(4392), + [anon_sym_module] = ACTIONS(419), }, [2854] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(737), + [sym__newline] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6449), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), + [anon_sym_module] = ACTIONS(737), }, [2855] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2856), - [sym__atom_curly] = STATE(2854), - [sym_literal] = STATE(2844), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2854), - [sym_record_assignments] = STATE(2844), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(4546), - [anon_sym_unquote] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(4548), - [anon_sym_Set] = ACTIONS(4546), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4552), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4546), - [anon_sym_quoteTerm] = ACTIONS(4546), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4546), - [sym__const_ellipsis] = ACTIONS(4546), - [anon_sym_record] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_LPAREN_PIPE] = ACTIONS(4560), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(4564), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(4546), - [anon_sym_3] = ACTIONS(4566), + [sym_primitive] = STATE(4099), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4099), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4099), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4099), + [sym_abstract] = STATE(4099), + [sym_private] = STATE(4099), + [sym_function_clause] = STATE(4099), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4099), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4100), + [sym_infix] = STATE(4099), + [sym_data] = STATE(4099), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4099), + [sym_macro] = STATE(4099), + [sym_test] = STATE(4099), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4099), + [sym_record_signature_only] = STATE(4099), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4099), + [sym_syntax] = STATE(4099), + [sym_record] = STATE(4099), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4099), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4099), + [sym_mutual] = STATE(4099), + [sym_postulate] = STATE(4099), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [2856] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6451), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2857] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2801), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4484), - }, - [2858] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2815), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4484), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [2859] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2819), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(4102), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4102), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4102), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4102), + [sym_abstract] = STATE(4102), + [sym_private] = STATE(4102), + [sym_function_clause] = STATE(4102), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4102), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4102), + [sym_data] = STATE(4102), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4102), + [sym_macro] = STATE(4102), + [sym_test] = STATE(4102), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4102), + [sym_record_signature_only] = STATE(4102), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4102), + [sym_syntax] = STATE(4102), + [sym_record] = STATE(4102), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4102), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4102), + [sym_mutual] = STATE(4102), + [sym_postulate] = STATE(4102), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4508), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [2858] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4104), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6453), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [2859] = { + [anon_sym_LBRACE] = ACTIONS(6455), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2860] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2827), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(6425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2861] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6425), + [sym_pragma] = ACTIONS(3), }, [2862] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [2863] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6530), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6425), + }, + [2863] = { + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2829), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4372), }, [2864] = { - [sym__field_assignments1] = STATE(4053), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6530), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2841), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(4372), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2865] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2861), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4418), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2866] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_literal] = STATE(1507), + [sym_record_assignments] = STATE(1507), + [sym_atom] = STATE(2828), + [anon_sym__] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4434), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2494), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(4436), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_Prop] = ACTIONS(2488), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_record] = ACTIONS(2504), + [anon_sym_] = ACTIONS(4432), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4438), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), }, [2867] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6532), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2869), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2868] = { - [sym_primitive] = STATE(4055), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4055), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4055), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4056), - [sym_field] = STATE(4055), - [sym_abstract] = STATE(4055), - [sym_private] = STATE(4055), - [sym_function_clause] = STATE(4055), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4055), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4055), - [sym_data] = STATE(4055), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4055), - [sym_macro] = STATE(4055), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4055), - [sym_record_signature_only] = STATE(4055), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4055), - [sym_syntax] = STATE(4055), - [sym_record] = STATE(4055), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4055), - [sym_generalize] = STATE(4055), - [sym_mutual] = STATE(4055), - [sym_postulate] = STATE(4055), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [2869] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6534), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6457), [sym_pragma] = ACTIONS(3), }, [2870] = { - [sym_primitive] = STATE(4058), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4058), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym_module_macro] = STATE(4058), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4058), - [sym_abstract] = STATE(4058), - [sym_private] = STATE(4058), - [sym_function_clause] = STATE(4058), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(1523), [sym__expr2] = STATE(43), - [sym_open] = STATE(4058), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4058), - [sym_data] = STATE(4058), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4058), - [sym_macro] = STATE(4058), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4058), - [sym_record_signature_only] = STATE(4058), - [sym_atom] = STATE(158), [sym_do] = STATE(43), - [sym_pattern] = STATE(4058), - [sym_syntax] = STATE(4058), - [sym_record] = STATE(4058), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4058), - [sym_generalize] = STATE(4058), - [sym_mutual] = STATE(4058), - [sym_postulate] = STATE(4058), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), + [sym_pragma] = ACTIONS(3), }, [2871] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2829), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4372), }, [2872] = { - [sym_do] = STATE(4059), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4059), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4059), - [sym_lambda] = STATE(4059), - [sym__application] = STATE(4059), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2841), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4372), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2873] = { - [sym_do] = STATE(4060), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4060), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4060), - [sym_lambda] = STATE(4060), - [sym__application] = STATE(4060), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2861), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4418), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2874] = { - [sym_anonymous_name] = STATE(2877), - [sym__binding_name] = STATE(4065), - [anon_sym__] = ACTIONS(4588), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6536), - [anon_sym_] = ACTIONS(6538), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6540), - [anon_sym_LBRACE] = ACTIONS(6542), - [sym_name] = ACTIONS(4602), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2869), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4430), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2875] = { - [sym_do] = STATE(4067), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4067), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4067), - [sym_lambda] = STATE(4067), - [sym_open] = STATE(4066), - [sym__application] = STATE(4067), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(43), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), + [sym_pragma] = ACTIONS(3), }, [2876] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4068), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4068), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4068), - [sym__expr2] = STATE(4068), - [sym_lambda] = STATE(4068), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(119), + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [2877] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [2878] = { - [sym_typed_binding] = STATE(2878), - [sym_anonymous_name] = STATE(2877), - [sym_untyped_binding] = STATE(2878), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2880), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(4588), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4590), - [anon_sym_in] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4596), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(4600), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4602), - [anon_sym_] = ACTIONS(4592), - [anon_sym_DOT] = ACTIONS(4594), - [anon_sym_LBRACE] = ACTIONS(6544), - [anon_sym_module] = ACTIONS(1143), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4108), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6459), }, [2879] = { - [sym__newline] = ACTIONS(1147), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6546), - [anon_sym_module] = ACTIONS(1147), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4109), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6459), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2880] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4110), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), }, [2881] = { - [anon_sym_RPAREN] = ACTIONS(6532), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4112), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6461), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [2882] = { - [anon_sym_in] = ACTIONS(6548), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4113), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [2883] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4073), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6550), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4114), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6463), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2884] = { - [anon_sym_LBRACE] = ACTIONS(6552), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2886), + [sym__atom_no_curly] = STATE(2886), + [sym_literal] = STATE(2876), + [sym_record_assignments] = STATE(2876), + [sym_atom] = STATE(4107), + [anon_sym__] = ACTIONS(4442), + [anon_sym_quoteTerm] = ACTIONS(4442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4446), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4444), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4448), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4450), + [sym_qualified_name] = ACTIONS(4442), + [anon_sym_quote] = ACTIONS(4442), + [anon_sym_3] = ACTIONS(4454), + [anon_sym_Prop] = ACTIONS(4442), + [sym__const_ellipsis] = ACTIONS(4442), + [anon_sym_record] = ACTIONS(4452), + [anon_sym_] = ACTIONS(4456), + [anon_sym_unquote] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [aux_sym_string_token1] = ACTIONS(4462), + [anon_sym_Set] = ACTIONS(4442), }, [2885] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6532), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4116), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2886] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4584), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [2887] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4584), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(2876), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(2888), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2886), + [sym__atom_no_curly] = STATE(2886), + [sym_record_assignments] = STATE(2876), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(4442), + [anon_sym_quoteTerm] = ACTIONS(4442), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(4444), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4448), + [anon_sym_LPAREN_PIPE] = ACTIONS(4450), + [sym_qualified_name] = ACTIONS(4442), + [anon_sym_quote] = ACTIONS(4442), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(4442), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(4452), + [sym__const_ellipsis] = ACTIONS(4442), + [anon_sym_3] = ACTIONS(4454), + [anon_sym_] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(4462), + [anon_sym_Set] = ACTIONS(4442), + [sym_pragma] = ACTIONS(3), }, [2888] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [2889] = { - [sym__atom_no_curly] = STATE(1649), - [sym_literal] = STATE(1632), - [sym_record_assignments] = STATE(1632), - [sym__atom_curly] = STATE(1649), - [sym_atom] = STATE(2866), - [anon_sym__] = ACTIONS(2594), - [anon_sym_unquote] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4670), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(4672), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_] = ACTIONS(4668), - [anon_sym_DOT] = ACTIONS(4616), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_3] = ACTIONS(2624), - [aux_sym_string_token1] = ACTIONS(2620), - [anon_sym_Prop] = ACTIONS(2594), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_DOT_DOT] = ACTIONS(4492), + [sym_name] = ACTIONS(4490), }, [2890] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6467), + [sym_pragma] = ACTIONS(3), }, [2891] = { + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_] = ACTIONS(3076), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6532), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(3078), + [sym_name] = ACTIONS(3076), }, [2892] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(6469), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6469), + [sym_pragma] = ACTIONS(3), }, [2893] = { + [anon_sym_SEMI] = ACTIONS(6471), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6554), + [anon_sym_RBRACE] = ACTIONS(6471), [sym_pragma] = ACTIONS(3), }, [2894] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), + [aux_sym__record_assignments1_repeat1] = STATE(2894), + [anon_sym_SEMI] = ACTIONS(6473), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6471), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), }, [2895] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4077), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6556), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_renaming] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_using] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_hiding] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_public] = ACTIONS(993), }, [2896] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6476), }, [2897] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4078), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6556), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(6476), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2898] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4080), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6558), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_PIPE_RPAREN] = ACTIONS(6476), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2899] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4081), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6560), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_renaming] = STATE(4120), + [anon_sym_module] = ACTIONS(4916), + [anon_sym_RPAREN] = ACTIONS(6478), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4920), }, [2900] = { - [sym__atom_no_curly] = STATE(2904), - [sym_literal] = STATE(2894), - [sym_record_assignments] = STATE(2894), - [sym__atom_curly] = STATE(2904), - [sym_atom] = STATE(4076), - [anon_sym__] = ACTIONS(4622), - [anon_sym_unquote] = ACTIONS(4622), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4624), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4626), - [anon_sym_Set] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4628), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4622), - [anon_sym_quoteTerm] = ACTIONS(4622), - [anon_sym_quote] = ACTIONS(4622), - [sym__const_ellipsis] = ACTIONS(4622), - [anon_sym_record] = ACTIONS(4630), - [anon_sym_QMARK] = ACTIONS(4622), - [anon_sym_] = ACTIONS(4632), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_LPAREN_PIPE] = ACTIONS(4636), - [anon_sym_LBRACE] = ACTIONS(4638), - [anon_sym_3] = ACTIONS(4640), - [aux_sym_string_token1] = ACTIONS(4642), - [anon_sym_Prop] = ACTIONS(4622), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4122), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6480), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2901] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4082), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(6482), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2902] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4084), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6562), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__import_name] = STATE(3071), + [sym__comma_import_names1] = STATE(4124), + [anon_sym_module] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(6478), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4928), }, [2903] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4085), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6476), }, [2904] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6476), + [sym_pragma] = ACTIONS(3), }, [2905] = { - [sym__atom_no_curly] = STATE(2904), - [sym_literal] = STATE(2894), - [sym_record_assignments] = STATE(2894), - [sym__atom_curly] = STATE(2904), - [sym_atom] = STATE(4086), - [aux_sym__open_args1_repeat1] = STATE(4086), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(4622), - [anon_sym_unquote] = ACTIONS(4622), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4624), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(4626), - [anon_sym_Set] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4628), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(4622), - [anon_sym_quoteTerm] = ACTIONS(4622), - [anon_sym_quote] = ACTIONS(4622), - [sym__const_ellipsis] = ACTIONS(4622), - [anon_sym_record] = ACTIONS(4630), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4622), - [anon_sym_] = ACTIONS(4632), - [anon_sym_DOT] = ACTIONS(4634), - [anon_sym_LPAREN_PIPE] = ACTIONS(4636), - [anon_sym_LBRACE] = ACTIONS(4638), - [anon_sym_3] = ACTIONS(4640), - [aux_sym_string_token1] = ACTIONS(4642), - [anon_sym_Prop] = ACTIONS(4622), - [anon_sym_module] = ACTIONS(425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_renaming] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_using] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_hiding] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), }, [2906] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6564), - [anon_sym_in] = ACTIONS(1457), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6484), [sym_pragma] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1457), }, [2907] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), - }, - [2908] = { + [sym_import_directive] = STATE(2909), + [aux_sym_module_macro_repeat1] = STATE(2909), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(6486), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6532), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_RBRACE] = ACTIONS(6486), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + }, + [2908] = { + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(2908), + [aux_sym__open_args1_repeat1] = STATE(2908), + [anon_sym__] = ACTIONS(6488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6491), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_quoteTerm] = ACTIONS(6488), + [aux_sym_integer_token1] = ACTIONS(6494), + [anon_sym_QMARK] = ACTIONS(6488), + [anon_sym_LPAREN] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6500), + [sym_qualified_name] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_renaming] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(6488), + [sym__const_ellipsis] = ACTIONS(6488), + [anon_sym_record] = ACTIONS(6503), + [anon_sym_using] = ACTIONS(1527), + [anon_sym_quote] = ACTIONS(6488), + [anon_sym_] = ACTIONS(6506), + [anon_sym_3] = ACTIONS(6509), + [anon_sym_DOT] = ACTIONS(6512), + [anon_sym_unquote] = ACTIONS(6488), + [anon_sym_LBRACE] = ACTIONS(6515), + [anon_sym_hiding] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(6518), + [anon_sym_Set] = ACTIONS(6488), + [anon_sym_public] = ACTIONS(1527), }, [2909] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [sym_import_directive] = STATE(2909), + [aux_sym_module_macro_repeat1] = STATE(2909), + [anon_sym_using] = ACTIONS(6521), + [anon_sym_SEMI] = ACTIONS(4965), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(6521), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_public] = ACTIONS(6524), + [anon_sym_renaming] = ACTIONS(6527), }, [2910] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [2911] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6530), }, [2912] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4089), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6566), + [anon_sym_RPAREN] = ACTIONS(6530), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2913] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4090), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6566), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4128), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6532), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2914] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4092), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6568), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(6534), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2915] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4093), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6570), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_PIPE_RPAREN] = ACTIONS(6530), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2916] = { - [sym__atom_no_curly] = STATE(2920), - [sym_literal] = STATE(2910), - [sym_record_assignments] = STATE(2910), - [sym__atom_curly] = STATE(2920), - [sym_atom] = STATE(4088), - [anon_sym__] = ACTIONS(4646), - [anon_sym_unquote] = ACTIONS(4646), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4650), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4648), - [anon_sym_Set] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4652), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4646), - [anon_sym_quoteTerm] = ACTIONS(4646), - [anon_sym_quote] = ACTIONS(4646), - [sym__const_ellipsis] = ACTIONS(4646), - [anon_sym_record] = ACTIONS(4654), - [anon_sym_QMARK] = ACTIONS(4646), - [anon_sym_] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_LPAREN_PIPE] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_3] = ACTIONS(4666), - [aux_sym_string_token1] = ACTIONS(4664), - [anon_sym_Prop] = ACTIONS(4646), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6530), + [sym_pragma] = ACTIONS(3), }, [2917] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4094), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6530), }, [2918] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4096), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6572), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2911), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4494), }, [2919] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4097), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2912), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(4494), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2920] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(2916), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(4498), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [2921] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2922), - [sym__atom_curly] = STATE(2920), - [sym_literal] = STATE(2910), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(2920), - [sym_record_assignments] = STATE(2910), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(4646), - [anon_sym_unquote] = ACTIONS(4646), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(4648), - [anon_sym_Set] = ACTIONS(4646), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4652), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4646), - [anon_sym_quoteTerm] = ACTIONS(4646), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4646), - [sym__const_ellipsis] = ACTIONS(4646), - [anon_sym_record] = ACTIONS(4654), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4646), - [anon_sym_] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_LPAREN_PIPE] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(4664), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(4646), - [anon_sym_3] = ACTIONS(4666), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_literal] = STATE(1555), + [sym_record_assignments] = STATE(1555), + [sym_atom] = STATE(2910), + [anon_sym__] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4518), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2576), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(4520), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_Prop] = ACTIONS(2572), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_record] = ACTIONS(2580), + [anon_sym_] = ACTIONS(4516), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_DOT] = ACTIONS(4506), + [anon_sym_LBRACE] = ACTIONS(4522), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), }, [2922] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2924), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(4510), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [2923] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4584), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [2924] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4584), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6536), + [sym_pragma] = ACTIONS(3), }, [2925] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_record_declarations_block] = STATE(4131), + [sym__newline] = ACTIONS(6538), + [anon_sym_in] = ACTIONS(6538), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(2606), + [sym_pragma] = ACTIONS(3), }, [2926] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4620), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2911), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4494), }, [2927] = { - [sym_primitive] = STATE(4098), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4098), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4098), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4099), - [sym_field] = STATE(4098), - [sym_abstract] = STATE(4098), - [sym_private] = STATE(4098), - [sym_function_clause] = STATE(4098), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4098), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4098), - [sym_data] = STATE(4098), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4098), - [sym_macro] = STATE(4098), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4098), - [sym_record_signature_only] = STATE(4098), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4098), - [sym_syntax] = STATE(4098), - [sym_record] = STATE(4098), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4098), - [sym_generalize] = STATE(4098), - [sym_mutual] = STATE(4098), - [sym_postulate] = STATE(4098), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2912), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(4494), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [2928] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6574), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2916), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4498), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [2929] = { - [sym_primitive] = STATE(4101), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4101), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2924), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(4510), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [2930] = { [sym_let] = STATE(43), - [sym_module_macro] = STATE(4101), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4101), - [sym_abstract] = STATE(4101), - [sym_private] = STATE(4101), - [sym_function_clause] = STATE(4101), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(1567), [sym__expr2] = STATE(43), - [sym_open] = STATE(4101), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4101), - [sym_data] = STATE(4101), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4101), - [sym_macro] = STATE(4101), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4101), - [sym_record_signature_only] = STATE(4101), - [sym_atom] = STATE(158), [sym_do] = STATE(43), - [sym_pattern] = STATE(4101), - [sym_syntax] = STATE(4101), - [sym_record] = STATE(4101), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4101), - [sym_generalize] = STATE(4101), - [sym_mutual] = STATE(4101), - [sym_postulate] = STATE(4101), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [2930] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym__newline] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), }, [2931] = { - [sym_do] = STATE(4102), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4102), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4102), - [sym_lambda] = STATE(4102), - [sym__application] = STATE(4102), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4132), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2932] = { - [sym_do] = STATE(4103), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4103), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4103), - [sym_lambda] = STATE(4103), - [sym__application] = STATE(4103), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym_name] = ACTIONS(5019), }, [2933] = { - [sym_anonymous_name] = STATE(2936), - [sym__binding_name] = STATE(4108), - [anon_sym__] = ACTIONS(4678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6576), - [anon_sym_] = ACTIONS(6578), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4133), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6580), - [anon_sym_LBRACE] = ACTIONS(6582), - [sym_name] = ACTIONS(4692), }, [2934] = { - [sym_do] = STATE(4110), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4110), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4110), - [sym_lambda] = STATE(4110), - [sym_open] = STATE(4109), - [sym__application] = STATE(4110), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(6540), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6542), + [sym_pragma] = ACTIONS(3), }, [2935] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4111), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4111), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4111), - [sym__expr2] = STATE(4111), - [sym_lambda] = STATE(4111), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(6544), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6542), }, [2936] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym__newline] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [anon_sym_COLON] = ACTIONS(6546), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2937] = { - [sym_typed_binding] = STATE(2937), - [sym_anonymous_name] = STATE(2936), - [sym_untyped_binding] = STATE(2937), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2939), - [anon_sym_COLON] = ACTIONS(1143), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(4678), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4680), - [anon_sym_in] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(6548), + [anon_sym_2] = ACTIONS(6542), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4692), - [anon_sym_with] = ACTIONS(1143), - [anon_sym_] = ACTIONS(4682), - [anon_sym_DOT] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(6584), - [anon_sym_module] = ACTIONS(1143), }, [2938] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym__newline] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4139), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(6586), - [anon_sym_module] = ACTIONS(1147), }, [2939] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym__newline] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym_name] = ACTIONS(3774), }, [2940] = { - [anon_sym_in] = ACTIONS(6588), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [2941] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [sym_field_assignment] = STATE(4140), + [sym_qualified_name] = ACTIONS(3831), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [2942] = { + [aux_sym__field_assignments1_repeat1] = STATE(4141), + [anon_sym_SEMI] = ACTIONS(4538), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6554), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6590), }, [2943] = { - [anon_sym_RPAREN] = ACTIONS(6590), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4142), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [2944] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4117), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6592), + [sym__newline] = ACTIONS(6556), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2945] = { - [anon_sym_LBRACE] = ACTIONS(6594), + [sym__newline] = ACTIONS(6558), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2946] = { + [sym__declaration_block] = STATE(186), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6590), + [sym__indent] = ACTIONS(6560), [sym_pragma] = ACTIONS(3), }, [2947] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6590), + [sym_name] = ACTIONS(6562), }, [2948] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - }, - [2949] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6596), - [sym_pragma] = ACTIONS(3), - }, - [2950] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym__newline] = ACTIONS(121), + [sym__newline] = ACTIONS(6564), + [anon_sym_in] = ACTIONS(6564), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + }, + [2949] = { + [sym__newline] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [2950] = { + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym_postulate] = STATE(323), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym_module_macro] = STATE(323), + [sym__atom_curly] = STATE(37), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [sym_record_constructor_instance] = STATE(2949), + [sym__record_directive] = STATE(2949), + [aux_sym_record_declarations_block_repeat1] = STATE(4147), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4148), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [sym_record_constructor] = STATE(2949), + [sym_record_induction] = STATE(2949), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__atoms1] = STATE(47), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym_record_eta] = STATE(2949), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [anon_sym_inductive] = ACTIONS(4544), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_no_DASHeta_DASHequality] = ACTIONS(4546), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_coinductive] = ACTIONS(4544), + [anon_sym_instance] = ACTIONS(4548), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [anon_sym_constructor] = ACTIONS(4550), + [sym__dedent] = ACTIONS(6568), + [anon_sym_infixl] = ACTIONS(29), + [sym_comment] = ACTIONS(3), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_eta_DASHequality] = ACTIONS(4546), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [2951] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4121), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6598), + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym__dedent] = ACTIONS(6568), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [2952] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__newline] = ACTIONS(6570), + [anon_sym_in] = ACTIONS(6570), + [anon_sym_where] = ACTIONS(6572), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2953] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4122), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6598), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6538), + [anon_sym_in] = ACTIONS(6538), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2954] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4124), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6600), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4150), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2955] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4125), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6602), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_4] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [2956] = { - [sym__atom_no_curly] = STATE(2960), - [sym_literal] = STATE(2950), - [sym_record_assignments] = STATE(2950), - [sym__atom_curly] = STATE(2960), - [sym_atom] = STATE(4120), - [anon_sym__] = ACTIONS(4704), - [anon_sym_unquote] = ACTIONS(4704), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4706), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4708), - [anon_sym_Set] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4710), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4704), - [anon_sym_quoteTerm] = ACTIONS(4704), - [anon_sym_quote] = ACTIONS(4704), - [sym__const_ellipsis] = ACTIONS(4704), - [anon_sym_record] = ACTIONS(4712), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_LPAREN_PIPE] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_3] = ACTIONS(4722), - [aux_sym_string_token1] = ACTIONS(4724), - [anon_sym_Prop] = ACTIONS(4704), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4151), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [2957] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4126), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(6574), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6576), + [sym_pragma] = ACTIONS(3), }, [2958] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4128), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6604), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6578), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6576), }, [2959] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4129), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(6580), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2960] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_COLON] = ACTIONS(6582), + [anon_sym_2] = ACTIONS(6576), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2961] = { - [sym__atom_no_curly] = STATE(2960), - [sym_literal] = STATE(2950), - [sym_record_assignments] = STATE(2950), - [sym__atom_curly] = STATE(2960), - [sym_atom] = STATE(4130), - [aux_sym__open_args1_repeat1] = STATE(4130), - [anon_sym_COLON] = ACTIONS(425), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(4704), - [anon_sym_unquote] = ACTIONS(4704), - [anon_sym_in] = ACTIONS(425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4706), - [aux_sym_integer_token1] = ACTIONS(4708), - [anon_sym_Set] = ACTIONS(4704), - [anon_sym_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4704), - [anon_sym_quoteTerm] = ACTIONS(4704), - [anon_sym_quote] = ACTIONS(4704), - [sym__const_ellipsis] = ACTIONS(4704), - [anon_sym_record] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_with] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_] = ACTIONS(4714), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_LPAREN_PIPE] = ACTIONS(4718), - [anon_sym_LBRACE] = ACTIONS(4720), - [anon_sym_3] = ACTIONS(4722), - [aux_sym_string_token1] = ACTIONS(4724), - [anon_sym_Prop] = ACTIONS(4704), - [anon_sym_module] = ACTIONS(425), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4157), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2962] = { - [anon_sym_COLON] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6606), - [anon_sym_with] = ACTIONS(1457), - [anon_sym_in] = ACTIONS(1457), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_4] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [2963] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4158), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2964] = { + [anon_sym_COLON] = ACTIONS(4590), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6590), + [anon_sym_RBRACE] = ACTIONS(4582), [sym_pragma] = ACTIONS(3), }, [2965] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_4] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [2966] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6630), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_4] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [2967] = { - [sym_primitive] = STATE(4148), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4148), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4148), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4149), - [sym_field] = STATE(4148), - [sym_abstract] = STATE(4148), - [sym_private] = STATE(4148), - [sym_function_clause] = STATE(4148), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4148), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4148), - [sym_data] = STATE(4148), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4148), - [sym_macro] = STATE(4148), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4148), - [sym_record_signature_only] = STATE(4148), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4148), - [sym_syntax] = STATE(4148), - [sym_record] = STATE(4148), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4148), - [sym_generalize] = STATE(4148), - [sym_mutual] = STATE(4148), - [sym_postulate] = STATE(4148), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6584), + [sym_pragma] = ACTIONS(3), }, [2968] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6632), + [sym__field_assignments1] = STATE(4160), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6584), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [2969] = { - [sym_primitive] = STATE(4151), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4151), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4151), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4151), - [sym_abstract] = STATE(4151), - [sym_private] = STATE(4151), - [sym_function_clause] = STATE(4151), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4151), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4151), - [sym_data] = STATE(4151), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4151), - [sym_macro] = STATE(4151), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4151), - [sym_record_signature_only] = STATE(4151), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4151), - [sym_syntax] = STATE(4151), - [sym_record] = STATE(4151), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4151), - [sym_generalize] = STATE(4151), - [sym_mutual] = STATE(4151), - [sym_postulate] = STATE(4151), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_4] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [2970] = { - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [sym__newline] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_module] = ACTIONS(1029), }, [2971] = { - [sym_do] = STATE(4152), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4152), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4152), - [sym_lambda] = STATE(4152), - [sym__application] = STATE(4152), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2972] = { - [sym_do] = STATE(4153), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4153), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4153), - [sym_lambda] = STATE(4153), - [sym__application] = STATE(4153), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_4] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [2973] = { - [sym_anonymous_name] = STATE(2976), - [sym__binding_name] = STATE(4158), - [anon_sym__] = ACTIONS(4730), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6634), - [anon_sym_] = ACTIONS(6636), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6588), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6638), - [anon_sym_LBRACE] = ACTIONS(6640), - [sym_name] = ACTIONS(4744), }, [2974] = { - [sym_do] = STATE(4160), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4160), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4160), - [sym_lambda] = STATE(4160), - [sym_open] = STATE(4159), - [sym__application] = STATE(4160), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_4] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [2975] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4161), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4161), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4161), - [sym__expr2] = STATE(4161), - [sym_lambda] = STATE(4161), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_4] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [2976] = { - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [sym__newline] = ACTIONS(1137), - [anon_sym_in] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_module] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6590), + [sym_pragma] = ACTIONS(3), }, [2977] = { - [sym_typed_binding] = STATE(2977), - [sym_anonymous_name] = STATE(2976), - [sym_untyped_binding] = STATE(2977), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(2979), - [anon_sym_COLON] = ACTIONS(1143), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(4730), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(1143), + [sym__field_assignments1] = STATE(4164), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6590), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4738), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(4742), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4744), - [anon_sym_] = ACTIONS(4734), - [anon_sym_DOT] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(6642), - [anon_sym_module] = ACTIONS(1143), }, [2978] = { - [anon_sym_COLON] = ACTIONS(1147), - [sym__newline] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(6644), - [anon_sym_module] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_4] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [2979] = { - [anon_sym_COLON] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [sym__newline] = ACTIONS(1151), - [anon_sym_in] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4165), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LBRACE] = ACTIONS(1153), - [anon_sym_module] = ACTIONS(1153), }, [2980] = { - [anon_sym_RPAREN] = ACTIONS(6630), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_2] = ACTIONS(5019), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [2981] = { - [anon_sym_in] = ACTIONS(6646), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4166), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [2982] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4166), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6648), + [anon_sym_COLON] = ACTIONS(6592), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6594), [sym_pragma] = ACTIONS(3), }, [2983] = { - [anon_sym_LBRACE] = ACTIONS(6650), + [anon_sym_COLON] = ACTIONS(6596), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6594), }, [2984] = { + [anon_sym_COLON] = ACTIONS(6598), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6630), [sym_pragma] = ACTIONS(3), }, [2985] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2966), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4726), + [anon_sym_COLON] = ACTIONS(6600), + [anon_sym_2] = ACTIONS(6594), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2986] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2980), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4726), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4172), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2987] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2984), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(4750), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_2] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [2988] = { - [sym__atom_no_curly] = STATE(1689), - [sym_literal] = STATE(1672), - [sym_record_assignments] = STATE(1672), - [sym__atom_curly] = STATE(1689), - [sym_atom] = STATE(2965), - [anon_sym__] = ACTIONS(2658), - [anon_sym_unquote] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4812), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(4814), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_] = ACTIONS(4810), - [anon_sym_DOT] = ACTIONS(4758), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(4816), - [anon_sym_3] = ACTIONS(2688), - [aux_sym_string_token1] = ACTIONS(2684), - [anon_sym_Prop] = ACTIONS(2658), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4173), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [2989] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2992), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [2990] = { + [anon_sym_COLON] = ACTIONS(4655), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(4647), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6630), + }, + [2990] = { + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [2991] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [2992] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6652), + [anon_sym_RBRACE] = ACTIONS(6602), [sym_pragma] = ACTIONS(3), }, [2993] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym__newline] = ACTIONS(121), + [sym__field_assignments1] = STATE(4175), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6602), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), }, [2994] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4170), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6654), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [2995] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [2996] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4171), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6654), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [2997] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4173), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6656), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [2998] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4174), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6606), + [sym_pragma] = ACTIONS(3), }, [2999] = { - [sym__atom_no_curly] = STATE(3003), - [sym_literal] = STATE(2993), - [sym_record_assignments] = STATE(2993), - [sym__atom_curly] = STATE(3003), - [sym_atom] = STATE(4169), - [anon_sym__] = ACTIONS(4764), - [anon_sym_unquote] = ACTIONS(4764), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4766), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4768), - [anon_sym_Set] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4770), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4764), - [anon_sym_quoteTerm] = ACTIONS(4764), - [anon_sym_quote] = ACTIONS(4764), - [sym__const_ellipsis] = ACTIONS(4764), - [anon_sym_record] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4764), - [anon_sym_] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_LPAREN_PIPE] = ACTIONS(4778), - [anon_sym_LBRACE] = ACTIONS(4780), - [anon_sym_3] = ACTIONS(4782), - [aux_sym_string_token1] = ACTIONS(4784), - [anon_sym_Prop] = ACTIONS(4764), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3000] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4175), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3001] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4177), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6660), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6608), + [sym_pragma] = ACTIONS(3), }, [3002] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4178), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__field_assignments1] = STATE(4179), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3003] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3004] = { - [sym__atom_no_curly] = STATE(3003), - [sym_literal] = STATE(2993), - [sym_record_assignments] = STATE(2993), - [sym__atom_curly] = STATE(3003), - [sym_atom] = STATE(4179), - [aux_sym__open_args1_repeat1] = STATE(4179), - [anon_sym_COLON] = ACTIONS(425), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(4764), - [anon_sym_unquote] = ACTIONS(4764), - [anon_sym_in] = ACTIONS(425), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4766), - [aux_sym_integer_token1] = ACTIONS(4768), - [anon_sym_Set] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4770), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4764), - [anon_sym_quoteTerm] = ACTIONS(4764), - [anon_sym_quote] = ACTIONS(4764), - [sym__const_ellipsis] = ACTIONS(4764), - [anon_sym_record] = ACTIONS(4772), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4764), - [anon_sym_] = ACTIONS(4774), - [anon_sym_DOT] = ACTIONS(4776), - [anon_sym_LPAREN_PIPE] = ACTIONS(4778), - [anon_sym_LBRACE] = ACTIONS(4780), - [anon_sym_3] = ACTIONS(4782), - [aux_sym_string_token1] = ACTIONS(4784), - [anon_sym_Prop] = ACTIONS(4764), - [anon_sym_module] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6610), }, [3005] = { - [anon_sym_COLON] = ACTIONS(1457), - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6662), - [anon_sym_in] = ACTIONS(1457), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6612), + [anon_sym_] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6614), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6614), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_module] = ACTIONS(1457), + [sym_name] = ACTIONS(6614), }, [3006] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_simple_hole] = STATE(4181), + [sym__const_lambda] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2698), }, [3007] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6630), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6616), }, [3008] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_simple_hole] = STATE(4183), + [sym__const_lambda] = ACTIONS(2696), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2698), }, [3009] = { - [anon_sym_COLON] = ACTIONS(119), - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), + [sym_simple_hole] = STATE(4184), + [sym__const_lambda] = ACTIONS(2696), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2698), }, [3010] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [aux_sym_syntax_repeat2] = STATE(4185), + [sym__newline] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6620), }, [3011] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4182), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6664), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6622), + [anon_sym_RBRACE] = ACTIONS(6624), + [anon_sym_DOT_DOT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6624), + [sym_name] = ACTIONS(6624), }, [3012] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4183), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6664), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6626), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6628), + [anon_sym_] = ACTIONS(6626), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6626), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(6626), + [anon_sym_DOT_DOT] = ACTIONS(6628), + [sym_name] = ACTIONS(6626), }, [3013] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4185), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6666), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__field_name] = STATE(3013), + [aux_sym__arg_name_repeat1] = STATE(3013), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6622), + [anon_sym_DOT_DOT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6633), + [sym_name] = ACTIONS(6636), }, [3014] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), [sym_expr] = STATE(4186), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6668), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [3015] = { - [sym__atom_no_curly] = STATE(3019), - [sym_literal] = STATE(3009), - [sym_record_assignments] = STATE(3009), - [sym__atom_curly] = STATE(3019), - [sym_atom] = STATE(4181), - [anon_sym__] = ACTIONS(4788), - [anon_sym_unquote] = ACTIONS(4788), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4790), - [anon_sym_Set] = ACTIONS(4788), - [anon_sym_LPAREN] = ACTIONS(4794), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4788), - [anon_sym_quoteTerm] = ACTIONS(4788), - [anon_sym_quote] = ACTIONS(4788), - [sym__const_ellipsis] = ACTIONS(4788), - [anon_sym_record] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_] = ACTIONS(4798), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_LPAREN_PIPE] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(4804), - [anon_sym_3] = ACTIONS(4808), - [aux_sym_string_token1] = ACTIONS(4806), - [anon_sym_Prop] = ACTIONS(4788), + [anon_sym_2] = ACTIONS(6624), + [anon_sym_DOT_DOT] = ACTIONS(6622), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6624), + [sym_name] = ACTIONS(6624), }, [3016] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4187), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__field_name] = STATE(3016), + [aux_sym__arg_name_repeat1] = STATE(3016), + [anon_sym_2] = ACTIONS(6624), + [anon_sym_DOT_DOT] = ACTIONS(6639), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6642), + [sym_name] = ACTIONS(6645), }, [3017] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4189), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6670), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_name] = STATE(4188), + [aux_sym__arg_name_repeat2] = STATE(4188), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6648), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2714), }, [3018] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4190), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__field_name] = STATE(4189), + [aux_sym__arg_name_repeat2] = STATE(4189), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6648), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2714), }, [3019] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__field_name] = STATE(4190), + [aux_sym__arg_name_repeat2] = STATE(4190), + [anon_sym_2] = ACTIONS(6650), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(2720), }, [3020] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3021), - [sym__atom_curly] = STATE(3019), - [sym_literal] = STATE(3009), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(3019), - [sym_record_assignments] = STATE(3009), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(4788), - [anon_sym_unquote] = ACTIONS(4788), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(4790), - [anon_sym_Set] = ACTIONS(4788), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4794), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4788), - [anon_sym_quoteTerm] = ACTIONS(4788), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4788), - [sym__const_ellipsis] = ACTIONS(4788), - [anon_sym_record] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_] = ACTIONS(4798), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_LPAREN_PIPE] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(4804), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(4806), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(4788), - [anon_sym_3] = ACTIONS(4808), + [sym__field_name] = STATE(3020), + [aux_sym__arg_name_repeat1] = STATE(3020), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6630), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_DOT] = ACTIONS(6633), + [sym_name] = ACTIONS(6636), }, [3021] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym__newline] = ACTIONS(6652), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3022] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2966), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4726), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [3023] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(2980), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(4726), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6654), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6656), }, [3024] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2984), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4750), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(6658), + [anon_sym_2] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3025] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(2992), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4194), + [sym_do] = STATE(4194), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4194), + [sym_lambda] = STATE(4194), + [sym__application] = STATE(4194), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3026] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_3] = ACTIONS(2065), + [sym__expr2] = STATE(4195), + [sym_do] = STATE(4195), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4195), + [sym_lambda] = STATE(4195), + [sym__application] = STATE(4195), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3027] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_3] = ACTIONS(2256), + [sym__expr2] = STATE(4196), + [sym_do] = STATE(4196), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4196), + [sym_lambda] = STATE(4196), + [sym__application] = STATE(4196), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3028] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6672), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4197), + [sym_do] = STATE(4197), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4197), + [sym_lambda] = STATE(4197), + [sym__application] = STATE(4197), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3029] = { - [sym__field_assignments1] = STATE(4192), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6672), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [3030] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(6660), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3031] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_quoteGoal] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_RPAREN] = ACTIONS(6662), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), }, [3032] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4194), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6674), + [anon_sym_COLON] = ACTIONS(6664), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6656), + [sym_pragma] = ACTIONS(3), }, [3033] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_quoteGoal] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__expr2] = STATE(4201), + [sym_do] = STATE(4201), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4201), + [sym_lambda] = STATE(4201), + [sym__application] = STATE(4201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [3034] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4195), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6674), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [3035] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4197), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6676), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3036] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4198), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6678), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3037] = { - [sym__atom_no_curly] = STATE(3041), - [sym_literal] = STATE(3031), - [sym_record_assignments] = STATE(3031), - [sym__atom_curly] = STATE(3041), - [sym_atom] = STATE(4193), - [anon_sym__] = ACTIONS(6680), - [anon_sym_unquote] = ACTIONS(6680), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6682), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6684), - [anon_sym_Set] = ACTIONS(6680), - [anon_sym_LPAREN] = ACTIONS(6686), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6680), - [anon_sym_quoteTerm] = ACTIONS(6680), - [anon_sym_quote] = ACTIONS(6680), - [sym__const_ellipsis] = ACTIONS(6680), - [anon_sym_record] = ACTIONS(6688), - [anon_sym_QMARK] = ACTIONS(6680), - [anon_sym_] = ACTIONS(6690), - [anon_sym_DOT] = ACTIONS(6692), - [anon_sym_LPAREN_PIPE] = ACTIONS(6694), - [anon_sym_LBRACE] = ACTIONS(6696), - [anon_sym_3] = ACTIONS(6698), - [aux_sym_string_token1] = ACTIONS(6700), - [anon_sym_Prop] = ACTIONS(6680), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6666), }, [3038] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4199), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(6666), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3039] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4201), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6702), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(6666), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3040] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4202), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6666), }, [3041] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_quoteGoal] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4204), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6668), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3042] = { + [anon_sym_LBRACE] = ACTIONS(6670), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6704), }, [3043] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_2] = ACTIONS(2065), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [anon_sym_2] = ACTIONS(6666), + [sym_pragma] = ACTIONS(3), }, [3044] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_2] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3045] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6706), + [anon_sym_RBRACE] = ACTIONS(6672), [sym_pragma] = ACTIONS(3), }, [3046] = { - [sym__field_assignments1] = STATE(4205), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6706), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1729), + [sym__atom_no_curly] = STATE(1729), + [sym_literal] = STATE(1719), + [sym_record_assignments] = STATE(1719), + [sym_atom] = STATE(3046), + [aux_sym__open_args1_repeat1] = STATE(3046), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(6674), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6677), + [anon_sym_quoteTerm] = ACTIONS(6674), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6680), + [anon_sym_QMARK] = ACTIONS(6674), + [anon_sym_LPAREN] = ACTIONS(6683), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(6686), + [sym_qualified_name] = ACTIONS(6674), + [anon_sym_quote] = ACTIONS(6674), + [anon_sym_3] = ACTIONS(6689), + [anon_sym_Prop] = ACTIONS(6674), + [sym__const_ellipsis] = ACTIONS(6674), + [anon_sym_record] = ACTIONS(6692), + [anon_sym_] = ACTIONS(6695), + [anon_sym_DOT] = ACTIONS(6698), + [anon_sym_unquote] = ACTIONS(6674), + [anon_sym_LBRACE] = ACTIONS(6701), + [aux_sym_string_token1] = ACTIONS(6704), + [anon_sym_Set] = ACTIONS(6674), }, [3047] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_2] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_literal] = STATE(714), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(730), + [sym__atom_no_curly] = STATE(730), + [aux_sym__open_args1_repeat1] = STATE(731), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(732), + [sym_record_assignments] = STATE(714), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1111), + [anon_sym_quoteTerm] = ACTIONS(1111), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(1115), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1123), + [sym_qualified_name] = ACTIONS(1111), + [anon_sym_quote] = ACTIONS(1111), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(1111), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(1129), + [sym__const_ellipsis] = ACTIONS(1111), + [anon_sym_3] = ACTIONS(1131), + [anon_sym_] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(1141), + [anon_sym_Set] = ACTIONS(1111), }, [3048] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6707), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6704), [sym_pragma] = ACTIONS(3), }, [3049] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4206), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(4208), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4208), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4208), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4208), + [sym_abstract] = STATE(4208), + [sym_private] = STATE(4208), + [sym_function_clause] = STATE(4208), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4208), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4208), + [sym_data] = STATE(4208), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4208), + [sym_macro] = STATE(4208), + [sym_test] = STATE(4208), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4208), + [sym_record_signature_only] = STATE(4208), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4208), + [sym_syntax] = STATE(4208), + [sym_record] = STATE(4208), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4208), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4208), + [sym_mutual] = STATE(4208), + [sym_postulate] = STATE(4208), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3050] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_rewrite] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [3051] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4207), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6707), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3052] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4208), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3053] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4209), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(6709), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [3054] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6712), + [sym__field_assignments1] = STATE(4210), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6709), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3055] = { - [sym_primitive] = STATE(4211), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4211), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4211), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4211), - [sym_abstract] = STATE(4211), - [sym_private] = STATE(4211), - [sym_function_clause] = STATE(4211), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4211), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4211), - [sym_data] = STATE(4211), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4211), - [sym_macro] = STATE(4211), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4211), - [sym_record_signature_only] = STATE(4211), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4211), - [sym_syntax] = STATE(4211), - [sym_record] = STATE(4211), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4211), - [sym_generalize] = STATE(4211), - [sym_mutual] = STATE(4211), - [sym_postulate] = STATE(4211), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3056] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(6711), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3057] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6712), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(6713), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), }, [3058] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_import_directive] = STATE(4211), + [aux_sym_module_macro_repeat1] = STATE(4211), + [sym__newline] = ACTIONS(6713), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [3059] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_import_directive] = STATE(4212), + [aux_sym_module_macro_repeat1] = STATE(4212), + [sym__newline] = ACTIONS(6715), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [3060] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(3060), - [aux_sym__open_args1_repeat1] = STATE(3060), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5690), - [anon_sym_unquote] = ACTIONS(5687), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5693), - [anon_sym_Set] = ACTIONS(5687), - [anon_sym_LPAREN] = ACTIONS(5696), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5687), - [anon_sym_quoteTerm] = ACTIONS(5687), - [anon_sym_quote] = ACTIONS(5687), - [sym__const_ellipsis] = ACTIONS(5687), - [anon_sym_record] = ACTIONS(5699), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_] = ACTIONS(5702), - [anon_sym_DOT] = ACTIONS(6714), - [anon_sym_LPAREN_PIPE] = ACTIONS(5711), - [anon_sym_LBRACE] = ACTIONS(5708), - [anon_sym_3] = ACTIONS(5717), - [aux_sym_string_token1] = ACTIONS(5714), - [anon_sym_Prop] = ACTIONS(5687), + [sym_module_application] = STATE(4213), + [sym_qualified_name] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3061] = { - [sym_literal] = STATE(3586), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3596), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(4213), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6717), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_anonymous_name] = STATE(316), + [sym_typed_binding] = STATE(3061), + [sym_untyped_binding] = STATE(3061), + [aux_sym__typed_untyped_binding1_repeat1] = STATE(3061), + [sym__binding_name] = STATE(319), + [anon_sym__] = ACTIONS(6717), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6720), + [anon_sym_] = ACTIONS(6723), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6726), + [anon_sym_LPAREN] = ACTIONS(6729), + [anon_sym_LBRACE] = ACTIONS(6732), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6735), + [sym_name] = ACTIONS(6738), }, [3062] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1887), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(6719), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_renaming] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_hiding] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), }, [3063] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6721), + [sym_name] = ACTIONS(6741), }, [3064] = { - [sym_literal] = STATE(3586), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3596), - [aux_sym__open_args1_repeat1] = STATE(4213), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6717), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym__newline] = ACTIONS(6743), + [anon_sym_using] = ACTIONS(6743), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(6743), + [anon_sym_in] = ACTIONS(6743), + [anon_sym_public] = ACTIONS(6743), + [anon_sym_renaming] = ACTIONS(6743), }, [3065] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(323), - [sym_record_assignments] = STATE(306), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(6719), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_to] = ACTIONS(6745), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3066] = { - [anon_sym_PIPE] = ACTIONS(455), + [aux_sym_import_directive_repeat1] = STATE(4218), + [anon_sym_SEMI] = ACTIONS(6747), + [anon_sym_RPAREN] = ACTIONS(6749), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6721), }, [3067] = { - [anon_sym_RPAREN] = ACTIONS(6704), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_renaming] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_hiding] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), }, [3068] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6723), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6751), [sym_pragma] = ACTIONS(3), }, [3069] = { - [sym_primitive] = STATE(4217), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4217), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4217), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4217), - [sym_abstract] = STATE(4217), - [sym_private] = STATE(4217), - [sym_function_clause] = STATE(4217), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4217), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4217), - [sym_data] = STATE(4217), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4217), - [sym_macro] = STATE(4217), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4217), - [sym_record_signature_only] = STATE(4217), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4217), - [sym_syntax] = STATE(4217), - [sym_record] = STATE(4217), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4217), - [sym_generalize] = STATE(4217), - [sym_mutual] = STATE(4217), - [sym_postulate] = STATE(4217), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__field_assignments1] = STATE(4220), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6751), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3070] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6753), }, [3071] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6723), + [aux_sym__comma_import_names1_repeat1] = STATE(4223), + [anon_sym_SEMI] = ACTIONS(6755), + [anon_sym_RPAREN] = ACTIONS(6757), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3072] = { - [anon_sym_COLON] = ACTIONS(6725), + [anon_sym_RPAREN] = ACTIONS(6749), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6727), }, [3073] = { - [anon_sym_COLON] = ACTIONS(6729), - [anon_sym_2] = ACTIONS(6727), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_renaming] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_using] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_hiding] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), }, [3074] = { - [sym_do] = STATE(4221), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4221), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4221), - [sym_lambda] = STATE(4221), - [sym__application] = STATE(4221), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), }, [3075] = { - [sym_do] = STATE(4222), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4222), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4222), - [sym_lambda] = STATE(4222), - [sym__application] = STATE(4222), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), }, [3076] = { - [sym_do] = STATE(4223), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4223), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4223), - [sym_lambda] = STATE(4223), - [sym__application] = STATE(4223), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6759), + [sym_pragma] = ACTIONS(3), }, [3077] = { - [sym_do] = STATE(4224), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4224), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4224), - [sym_lambda] = STATE(4224), - [sym__application] = STATE(4224), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), - }, - [3078] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), + [sym__field_assignments1] = STATE(4225), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6759), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + }, + [3078] = { + [anon_sym_COLON] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), }, [3079] = { - [anon_sym_RPAREN] = ACTIONS(6731), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [3080] = { - [anon_sym_COLON] = ACTIONS(6733), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4227), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6761), }, [3081] = { - [anon_sym_COLON] = ACTIONS(6735), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6727), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3082] = { - [sym_do] = STATE(4228), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4228), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4228), - [sym_lambda] = STATE(4228), - [sym__application] = STATE(4228), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4228), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6761), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3083] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4229), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [3084] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4230), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3085] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2067), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4232), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6763), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3086] = { - [sym_primitive] = STATE(4229), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4229), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4229), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4230), - [sym_field] = STATE(4229), - [sym_abstract] = STATE(4229), - [sym_private] = STATE(4229), - [sym_function_clause] = STATE(4229), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4229), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4229), - [sym_data] = STATE(4229), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4229), - [sym_macro] = STATE(4229), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4229), - [sym_record_signature_only] = STATE(4229), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4229), - [sym_syntax] = STATE(4229), - [sym_record] = STATE(4229), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4229), - [sym_generalize] = STATE(4229), - [sym_mutual] = STATE(4229), - [sym_postulate] = STATE(4229), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4233), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6765), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3087] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6737), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3089), + [sym__atom_no_curly] = STATE(3089), + [sym_literal] = STATE(3079), + [sym_record_assignments] = STATE(3079), + [sym_atom] = STATE(4226), + [anon_sym__] = ACTIONS(6767), + [anon_sym_quoteTerm] = ACTIONS(6767), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6769), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6771), + [anon_sym_QMARK] = ACTIONS(6767), + [anon_sym_LPAREN] = ACTIONS(6773), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6775), + [sym_qualified_name] = ACTIONS(6767), + [anon_sym_quote] = ACTIONS(6767), + [anon_sym_3] = ACTIONS(6777), + [anon_sym_Prop] = ACTIONS(6767), + [sym__const_ellipsis] = ACTIONS(6767), + [anon_sym_record] = ACTIONS(6779), + [anon_sym_] = ACTIONS(6781), + [anon_sym_unquote] = ACTIONS(6767), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_LBRACE] = ACTIONS(6785), + [aux_sym_string_token1] = ACTIONS(6787), + [anon_sym_Set] = ACTIONS(6767), }, [3088] = { - [sym_primitive] = STATE(4232), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4232), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4232), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4232), - [sym_abstract] = STATE(4232), - [sym_private] = STATE(4232), - [sym_function_clause] = STATE(4232), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4232), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4232), - [sym_data] = STATE(4232), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4232), - [sym_macro] = STATE(4232), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4232), - [sym_record_signature_only] = STATE(4232), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4232), - [sym_syntax] = STATE(4232), - [sym_record] = STATE(4232), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4232), - [sym_generalize] = STATE(4232), - [sym_mutual] = STATE(4232), - [sym_postulate] = STATE(4232), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4235), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6789), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3089] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3090] = { - [sym_do] = STATE(4233), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4233), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4233), - [sym_lambda] = STATE(4233), - [sym__application] = STATE(4233), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6791), }, [3091] = { - [sym_do] = STATE(4234), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4234), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4234), - [sym_lambda] = STATE(4234), - [sym__application] = STATE(4234), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3092] = { - [sym_anonymous_name] = STATE(3095), - [sym__binding_name] = STATE(4239), - [anon_sym__] = ACTIONS(4911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6739), - [anon_sym_] = ACTIONS(6741), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6743), - [anon_sym_LBRACE] = ACTIONS(6745), - [sym_name] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3093] = { - [sym_do] = STATE(4241), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4241), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4241), - [sym_lambda] = STATE(4241), - [sym_open] = STATE(4240), - [sym__application] = STATE(4241), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6793), + [sym_pragma] = ACTIONS(3), }, [3094] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4242), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4242), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4242), - [sym__expr2] = STATE(4242), - [sym_lambda] = STATE(4242), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), + [sym__field_assignments1] = STATE(4238), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6793), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_pragma] = ACTIONS(3), }, [3095] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [anon_sym_COLON] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3096] = { - [sym_typed_binding] = STATE(3096), - [sym_anonymous_name] = STATE(3095), - [sym_untyped_binding] = STATE(3096), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(3098), - [anon_sym__] = ACTIONS(4911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(6747), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [anon_sym_RBRACE] = ACTIONS(1141), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4925), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6791), + [sym_pragma] = ACTIONS(3), }, [3097] = { - [anon_sym_SEMI] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1147), - [sym__const_right_arrow] = ACTIONS(6749), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4239), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3098] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_SEMI] = ACTIONS(1153), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [anon_sym_RBRACE] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_rewrite] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [3099] = { - [anon_sym_in] = ACTIONS(6751), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4240), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3100] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(4929), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4241), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3101] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4242), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [3102] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(4246), - [aux_sym__open_args1_repeat1] = STATE(4246), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4931), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [3103] = { - [anon_sym_PIPE] = ACTIONS(6753), - [anon_sym_SEMI] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(1457), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3104] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(3104), + [aux_sym__open_args1_repeat1] = STATE(3104), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5763), + [anon_sym_quoteTerm] = ACTIONS(5760), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5772), + [sym_qualified_name] = ACTIONS(5760), + [anon_sym_quote] = ACTIONS(5760), + [anon_sym_3] = ACTIONS(5775), + [anon_sym_Prop] = ACTIONS(5760), + [sym__const_ellipsis] = ACTIONS(5760), + [anon_sym_record] = ACTIONS(5778), + [anon_sym_] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_unquote] = ACTIONS(5760), + [anon_sym_LBRACE] = ACTIONS(5787), + [aux_sym_string_token1] = ACTIONS(5790), + [anon_sym_Set] = ACTIONS(5760), }, [3105] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(4244), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3106] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(4937), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6804), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3107] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(4937), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym_primitive] = STATE(4246), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4246), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4246), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4246), + [sym_abstract] = STATE(4246), + [sym_private] = STATE(4246), + [sym_function_clause] = STATE(4246), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4246), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4246), + [sym_data] = STATE(4246), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4246), + [sym_macro] = STATE(4246), + [sym_test] = STATE(4246), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4246), + [sym_record_signature_only] = STATE(4246), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4246), + [sym_syntax] = STATE(4246), + [sym_record] = STATE(4246), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4246), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4246), + [sym_mutual] = STATE(4246), + [sym_postulate] = STATE(4246), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3108] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2258), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [3109] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6804), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6755), [sym_pragma] = ACTIONS(3), }, [3110] = { - [sym__field_assignments1] = STATE(4249), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6755), - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(1985), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1987), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_LBRACE] = ACTIONS(1991), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3111] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3014), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_literal] = STATE(325), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(344), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_record_assignments] = STATE(325), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_] = ACTIONS(1997), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_LBRACE] = ACTIONS(2003), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3112] = { - [sym__atom_no_curly] = STATE(1132), - [sym_literal] = STATE(1122), - [sym_record_assignments] = STATE(1122), - [sym__atom_curly] = STATE(1132), - [sym_atom] = STATE(3112), - [aux_sym__open_args1_repeat1] = STATE(3112), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(5687), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5690), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_unquote] = ACTIONS(5687), - [aux_sym_integer_token1] = ACTIONS(5693), - [anon_sym_Set] = ACTIONS(5687), - [anon_sym_LPAREN] = ACTIONS(5696), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5687), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_quoteTerm] = ACTIONS(5687), - [anon_sym_quote] = ACTIONS(5687), - [sym__const_ellipsis] = ACTIONS(5687), - [anon_sym_record] = ACTIONS(5699), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_] = ACTIONS(5702), - [anon_sym_DOT] = ACTIONS(6757), - [anon_sym_LPAREN_PIPE] = ACTIONS(5711), - [anon_sym_LBRACE] = ACTIONS(5708), - [anon_sym_3] = ACTIONS(5717), - [aux_sym_string_token1] = ACTIONS(5714), - [anon_sym_Prop] = ACTIONS(5687), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6808), + [anon_sym_PIPE] = ACTIONS(479), }, [3113] = { - [sym_literal] = STATE(3586), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3596), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(4251), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6760), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6808), }, [3114] = { - [anon_sym__] = ACTIONS(6762), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6764), - [sym__const_lambda] = ACTIONS(6762), - [anon_sym_let] = ACTIONS(6762), - [aux_sym_integer_token1] = ACTIONS(6762), - [anon_sym_Set] = ACTIONS(6762), - [anon_sym_LPAREN] = ACTIONS(6762), - [anon_sym_quoteGoal] = ACTIONS(6762), - [anon_sym_unquote] = ACTIONS(6762), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6762), - [anon_sym_quoteTerm] = ACTIONS(6762), - [sym__const_right_arrow] = ACTIONS(6762), - [anon_sym_do] = ACTIONS(6762), - [sym__const_ellipsis] = ACTIONS(6762), - [anon_sym_record] = ACTIONS(6762), - [anon_sym_QMARK] = ACTIONS(6762), - [anon_sym_quote] = ACTIONS(6762), - [anon_sym_] = ACTIONS(6762), - [anon_sym_DOT] = ACTIONS(6762), - [anon_sym_LPAREN_PIPE] = ACTIONS(6764), - [anon_sym_LBRACE] = ACTIONS(6762), - [sym__const_forall] = ACTIONS(6762), - [aux_sym_string_token1] = ACTIONS(6764), - [anon_sym_tactic] = ACTIONS(6762), - [anon_sym_Prop] = ACTIONS(6762), - [anon_sym_3] = ACTIONS(6762), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(4244), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3115] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1887), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(6766), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [anon_sym_RPAREN] = ACTIONS(6791), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3116] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6768), }, [3117] = { - [sym_literal] = STATE(3586), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(3596), - [aux_sym__open_args1_repeat1] = STATE(4251), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6760), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(6810), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6812), }, [3118] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(323), - [sym_record_assignments] = STATE(306), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(6766), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [3119] = { - [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_COLON] = ACTIONS(6814), + [anon_sym_2] = ACTIONS(6812), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6768), + }, + [3119] = { + [sym__expr2] = STATE(4252), + [sym_do] = STATE(4252), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4252), + [sym_lambda] = STATE(4252), + [sym__application] = STATE(4252), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3120] = { - [sym__atom_no_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym_record_assignments] = STATE(1776), - [sym__atom_curly] = STATE(1792), - [sym_atom] = STATE(3133), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_3] = ACTIONS(2808), - [aux_sym_string_token1] = ACTIONS(2804), - [anon_sym_Prop] = ACTIONS(2778), + [sym__expr2] = STATE(4253), + [sym_do] = STATE(4253), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4253), + [sym_lambda] = STATE(4253), + [sym__application] = STATE(4253), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3121] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(1792), - [sym_record_assignments] = STATE(1776), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(2776), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [sym__expr2] = STATE(4254), + [sym_do] = STATE(4254), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4254), + [sym_lambda] = STATE(4254), + [sym__application] = STATE(4254), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3122] = { - [sym_do] = STATE(1794), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1794), - [sym__atom_no_curly] = STATE(1792), - [sym_record_assignments] = STATE(1776), - [aux_sym__open_args1_repeat1] = STATE(4254), - [sym__expr2] = STATE(1794), - [sym_lambda] = STATE(1794), - [sym__application] = STATE(1794), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(2776), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [sym__expr2] = STATE(4255), + [sym_do] = STATE(4255), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4255), + [sym_lambda] = STATE(4255), + [sym__application] = STATE(4255), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3123] = { - [anon_sym_SEMI] = ACTIONS(6770), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6770), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [3124] = { - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_COLON] = ACTIONS(6816), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(2814), [sym_pragma] = ACTIONS(3), }, [3125] = { - [anon_sym_SEMI] = ACTIONS(6772), + [anon_sym_RPAREN] = ACTIONS(6818), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6772), [sym_pragma] = ACTIONS(3), }, [3126] = { - [sym__atom_no_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym_record_assignments] = STATE(1776), - [sym__atom_curly] = STATE(1792), - [sym_atom] = STATE(3133), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(6774), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_3] = ACTIONS(2808), - [aux_sym_string_token1] = ACTIONS(2804), - [anon_sym_Prop] = ACTIONS(2778), + [anon_sym_COLON] = ACTIONS(6820), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6812), + [sym_pragma] = ACTIONS(3), }, [3127] = { - [sym_primitive] = STATE(4255), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4255), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4255), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4256), - [sym_field] = STATE(4255), - [sym_abstract] = STATE(4255), - [sym_private] = STATE(4255), - [sym_function_clause] = STATE(4255), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4255), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4255), - [sym_data] = STATE(4255), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4255), - [sym_macro] = STATE(4255), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4255), - [sym_record_signature_only] = STATE(4255), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4255), - [sym_syntax] = STATE(4255), - [sym_record] = STATE(4255), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4255), - [sym_generalize] = STATE(4255), - [sym_mutual] = STATE(4255), - [sym_postulate] = STATE(4255), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__expr2] = STATE(4259), + [sym_do] = STATE(4259), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4259), + [sym_lambda] = STATE(4259), + [sym__application] = STATE(4259), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [3128] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6776), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3129] = { - [sym_primitive] = STATE(4258), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4258), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4258), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4258), - [sym_abstract] = STATE(4258), - [sym_private] = STATE(4258), - [sym_function_clause] = STATE(4258), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4258), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4258), - [sym_data] = STATE(4258), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4258), - [sym_macro] = STATE(4258), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4258), - [sym_record_signature_only] = STATE(4258), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4258), - [sym_syntax] = STATE(4258), - [sym_record] = STATE(4258), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4258), - [sym_generalize] = STATE(4258), - [sym_mutual] = STATE(4258), - [sym_postulate] = STATE(4258), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym__] = ACTIONS(6822), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6824), + [sym__const_lambda] = ACTIONS(6822), + [anon_sym_quoteGoal] = ACTIONS(6822), + [aux_sym_integer_token1] = ACTIONS(6822), + [anon_sym_do] = ACTIONS(6822), + [anon_sym_LPAREN] = ACTIONS(6822), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_quoteTerm] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6824), + [sym_qualified_name] = ACTIONS(6822), + [anon_sym_quote] = ACTIONS(6822), + [sym__const_right_arrow] = ACTIONS(6822), + [anon_sym_tactic] = ACTIONS(6822), + [sym__const_ellipsis] = ACTIONS(6822), + [anon_sym_record] = ACTIONS(6822), + [anon_sym_let] = ACTIONS(6822), + [anon_sym_Prop] = ACTIONS(6822), + [anon_sym_] = ACTIONS(6822), + [anon_sym_3] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6822), + [anon_sym_unquote] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [sym__const_forall] = ACTIONS(6822), + [aux_sym_string_token1] = ACTIONS(6824), + [anon_sym_Set] = ACTIONS(6822), + [sym_pragma] = ACTIONS(3), }, [3130] = { - [sym_typed_binding] = STATE(3130), - [sym_anonymous_name] = STATE(3095), - [sym_untyped_binding] = STATE(3130), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(3098), - [anon_sym__] = ACTIONS(4911), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_] = ACTIONS(4915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(6747), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4923), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2159), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3131] = { - [anon_sym_SEMI] = ACTIONS(1147), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6826), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6778), }, [3132] = { - [anon_sym_in] = ACTIONS(6780), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [3133] = { - [anon_sym_SEMI] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym__expr2] = STATE(4261), + [sym_do] = STATE(4261), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4261), + [sym_lambda] = STATE(4261), + [sym__application] = STATE(4261), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [3134] = { - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(4262), + [sym_do] = STATE(4262), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4262), + [sym_lambda] = STATE(4262), + [sym__application] = STATE(4262), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6782), }, [3135] = { - [anon_sym_RPAREN] = ACTIONS(6782), + [sym_anonymous_name] = STATE(3138), + [sym__binding_name] = STATE(4267), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6828), + [anon_sym_] = ACTIONS(6830), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6834), + [sym_name] = ACTIONS(5083), }, [3136] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4263), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6784), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_open] = STATE(4269), + [sym__expr2] = STATE(4268), + [sym_do] = STATE(4268), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4268), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4268), + [sym_lambda] = STATE(4268), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [3137] = { - [anon_sym_LBRACE] = ACTIONS(6786), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(4270), + [sym_do] = STATE(4270), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4270), + [sym_let] = STATE(4270), + [sym_lambda] = STATE(4270), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [3138] = { + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6782), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [3139] = { + [sym_anonymous_name] = STATE(3138), + [sym_typed_binding] = STATE(3139), + [sym_untyped_binding] = STATE(3139), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(3141), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_] = ACTIONS(5073), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(6836), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6782), + [anon_sym_DOT_DOT] = ACTIONS(5081), + [anon_sym_RBRACE] = ACTIONS(1297), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(5083), }, [3140] = { - [anon_sym_SEMI] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1303), + [sym__const_right_arrow] = ACTIONS(6838), + [sym_pragma] = ACTIONS(3), }, [3141] = { + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6788), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [3142] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(1855), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4998), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [3143] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(4266), - [aux_sym__open_args1_repeat1] = STATE(4266), - [anon_sym__] = ACTIONS(1223), - [anon_sym_unquote] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1225), - [aux_sym_integer_token1] = ACTIONS(1227), - [anon_sym_Set] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1229), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1223), - [anon_sym_quoteTerm] = ACTIONS(1223), - [anon_sym_quote] = ACTIONS(1223), - [sym__const_ellipsis] = ACTIONS(1223), - [anon_sym_record] = ACTIONS(1231), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1223), - [anon_sym_] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(4998), - [anon_sym_LPAREN_PIPE] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_3] = ACTIONS(1241), - [aux_sym_string_token1] = ACTIONS(1243), - [anon_sym_Prop] = ACTIONS(1223), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(4273), + [aux_sym__open_args1_repeat1] = STATE(4273), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_Prop] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [3144] = { - [anon_sym_PIPE] = ACTIONS(6790), - [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(737), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(737), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6840), }, [3145] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(4275), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4275), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4275), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4275), + [sym_abstract] = STATE(4275), + [sym_private] = STATE(4275), + [sym_function_clause] = STATE(4275), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4275), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4276), + [sym_infix] = STATE(4275), + [sym_data] = STATE(4275), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4275), + [sym_macro] = STATE(4275), + [sym_test] = STATE(4275), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4275), + [sym_record_signature_only] = STATE(4275), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4275), + [sym_syntax] = STATE(4275), + [sym_record] = STATE(4275), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4275), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4275), + [sym_mutual] = STATE(4275), + [sym_postulate] = STATE(4275), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3146] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6842), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6782), [sym_pragma] = ACTIONS(3), }, [3147] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(4273), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_primitive] = STATE(4278), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4278), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4278), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4278), + [sym_abstract] = STATE(4278), + [sym_private] = STATE(4278), + [sym_function_clause] = STATE(4278), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4278), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4278), + [sym_data] = STATE(4278), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4278), + [sym_macro] = STATE(4278), + [sym_test] = STATE(4278), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4278), + [sym_record_signature_only] = STATE(4278), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4278), + [sym_syntax] = STATE(4278), + [sym_record] = STATE(4278), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4278), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4278), + [sym_mutual] = STATE(4278), + [sym_postulate] = STATE(4278), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3148] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6704), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3149] = { - [sym__newline] = ACTIONS(811), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [3150] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6794), }, [3151] = { - [anon_sym_RPAREN] = ACTIONS(6794), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [3152] = { - [sym__newline] = ACTIONS(4935), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(873), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(885), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_record_assignments] = STATE(873), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), [sym_pragma] = ACTIONS(3), }, [3153] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4276), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6796), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1164), + [sym__atom_no_curly] = STATE(1164), + [sym_literal] = STATE(1154), + [sym_record_assignments] = STATE(1154), + [sym_atom] = STATE(3153), + [aux_sym__open_args1_repeat1] = STATE(3153), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(5760), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5763), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_quoteTerm] = ACTIONS(5760), + [aux_sym_integer_token1] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5760), + [anon_sym_LPAREN] = ACTIONS(5769), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5772), + [sym_qualified_name] = ACTIONS(5760), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_quote] = ACTIONS(5760), + [anon_sym_Prop] = ACTIONS(5760), + [sym__const_ellipsis] = ACTIONS(5760), + [anon_sym_record] = ACTIONS(5778), + [anon_sym_3] = ACTIONS(5775), + [anon_sym_] = ACTIONS(5781), + [anon_sym_DOT] = ACTIONS(6844), + [anon_sym_unquote] = ACTIONS(5760), + [anon_sym_LBRACE] = ACTIONS(5787), + [aux_sym_string_token1] = ACTIONS(5790), + [anon_sym_Set] = ACTIONS(5760), }, [3154] = { - [anon_sym_LBRACE] = ACTIONS(6798), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(4280), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6847), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3155] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6849), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6794), [sym_pragma] = ACTIONS(3), }, [3156] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6794), + [sym_primitive] = STATE(4282), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4282), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4282), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4282), + [sym_abstract] = STATE(4282), + [sym_private] = STATE(4282), + [sym_function_clause] = STATE(4282), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4282), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4282), + [sym_data] = STATE(4282), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4282), + [sym_macro] = STATE(4282), + [sym_test] = STATE(4282), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4282), + [sym_record_signature_only] = STATE(4282), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4282), + [sym_syntax] = STATE(4282), + [sym_record] = STATE(4282), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4282), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4282), + [sym_mutual] = STATE(4282), + [sym_postulate] = STATE(4282), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3157] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [3158] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6849), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6800), [sym_pragma] = ACTIONS(3), }, [3159] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6794), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2534), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3160] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(4279), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6851), + [sym_pragma] = ACTIONS(3), }, [3161] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(1808), - [sym_record_assignments] = STATE(1797), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(2816), - [anon_sym_unquote] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2824), - [anon_sym_Set] = ACTIONS(2816), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2816), - [anon_sym_quoteTerm] = ACTIONS(2816), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2816), - [sym__const_ellipsis] = ACTIONS(2816), - [anon_sym_record] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2816), - [sym__const_right_arrow] = ACTIONS(6802), - [anon_sym_] = ACTIONS(2822), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_LPAREN_PIPE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2816), - [anon_sym_3] = ACTIONS(2838), + [sym__field_assignments1] = STATE(4284), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6851), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3162] = { - [sym__newline] = ACTIONS(5002), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3078), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3163] = { - [sym__newline] = ACTIONS(6804), - [anon_sym_COLON] = ACTIONS(6804), - [anon_sym_with] = ACTIONS(6804), - [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(6804), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(1985), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6804), - [anon_sym_where] = ACTIONS(6804), - [anon_sym_rewrite] = ACTIONS(6804), - [anon_sym_module] = ACTIONS(6804), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1987), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6853), + [anon_sym_LBRACE] = ACTIONS(1991), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3164] = { - [sym_lambda_clause] = STATE(1813), - [sym_lambda_clause_absurd] = STATE(1813), - [sym_literal] = STATE(1797), - [sym__let_in] = STATE(37), - [sym_let] = STATE(1814), - [sym__atom_no_curly] = STATE(1808), - [aux_sym__open_args1_repeat1] = STATE(1809), - [sym_catchall_pragma] = STATE(1810), - [aux_sym__lambda_where_block_repeat1] = STATE(3164), - [sym_do] = STATE(1814), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1812), - [sym__atom_curly] = STATE(1808), - [sym__lambda_clause] = STATE(1813), - [sym_record_assignments] = STATE(1797), - [sym__application] = STATE(1814), - [sym__expr2] = STATE(1814), - [sym_lambda] = STATE(1814), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6806), - [sym_qualified_name] = ACTIONS(6809), - [anon_sym_quoteTerm] = ACTIONS(6809), - [sym__const_right_arrow] = ACTIONS(6812), - [anon_sym_do] = ACTIONS(6815), - [sym__const_ellipsis] = ACTIONS(6809), - [anon_sym_record] = ACTIONS(6818), - [anon_sym_QMARK] = ACTIONS(6809), - [anon_sym_quote] = ACTIONS(6809), - [anon_sym_] = ACTIONS(6821), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(6824), - [anon_sym__] = ACTIONS(6809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6827), - [sym__const_lambda] = ACTIONS(6830), - [anon_sym_let] = ACTIONS(6833), - [aux_sym_integer_token1] = ACTIONS(6836), - [anon_sym_Set] = ACTIONS(6809), - [anon_sym_LPAREN] = ACTIONS(6839), - [anon_sym_unquote] = ACTIONS(6809), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(6842), - [anon_sym_DOT] = ACTIONS(6844), - [anon_sym_LPAREN_PIPE] = ACTIONS(6847), - [anon_sym_LBRACE] = ACTIONS(6850), - [sym__const_forall] = ACTIONS(6853), - [aux_sym_string_token1] = ACTIONS(6856), - [anon_sym_tactic] = ACTIONS(6859), - [anon_sym_Prop] = ACTIONS(6809), - [anon_sym_3] = ACTIONS(6862), + [sym_literal] = STATE(325), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(344), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_record_assignments] = STATE(325), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_] = ACTIONS(1997), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6853), + [anon_sym_LBRACE] = ACTIONS(2003), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3165] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6865), - [sym_qualified_name] = ACTIONS(6865), - [anon_sym_quoteTerm] = ACTIONS(6865), - [sym__const_right_arrow] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [sym__const_ellipsis] = ACTIONS(6865), - [anon_sym_record] = ACTIONS(6865), - [anon_sym_QMARK] = ACTIONS(6865), - [anon_sym_quote] = ACTIONS(6865), - [anon_sym_] = ACTIONS(6865), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(6865), - [anon_sym__] = ACTIONS(6865), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6842), - [sym__const_lambda] = ACTIONS(6865), - [anon_sym_let] = ACTIONS(6865), - [aux_sym_integer_token1] = ACTIONS(6865), - [anon_sym_Set] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6865), - [anon_sym_unquote] = ACTIONS(6865), - [sym_comment] = ACTIONS(3), - [sym__dedent] = ACTIONS(6842), - [anon_sym_DOT] = ACTIONS(6865), - [anon_sym_LPAREN_PIPE] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6865), - [sym__const_forall] = ACTIONS(6865), - [aux_sym_string_token1] = ACTIONS(6842), - [anon_sym_tactic] = ACTIONS(6865), - [anon_sym_Prop] = ACTIONS(6865), - [anon_sym_3] = ACTIONS(6865), + [sym__const_right_arrow] = ACTIONS(6855), + [anon_sym_PIPE] = ACTIONS(479), }, [3166] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(6867), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6855), }, [3167] = { - [sym_import_directive] = STATE(4281), - [aux_sym_module_macro_repeat1] = STATE(4281), - [sym__newline] = ACTIONS(6867), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(3639), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [aux_sym__open_args1_repeat1] = STATE(4280), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3651), + [sym_record_assignments] = STATE(3639), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6847), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3168] = { - [sym_import_directive] = STATE(4282), - [aux_sym_module_macro_repeat1] = STATE(4282), - [sym__newline] = ACTIONS(6869), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(6857), [sym_pragma] = ACTIONS(3), }, [3169] = { - [sym_module_application] = STATE(4283), - [sym_qualified_name] = ACTIONS(3133), + [sym_anonymous_name] = STATE(3138), + [sym_typed_binding] = STATE(3169), + [sym_untyped_binding] = STATE(3169), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(3141), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5071), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_] = ACTIONS(5073), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5075), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(6836), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5081), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(5083), }, [3170] = { - [sym_typed_binding] = STATE(3170), - [sym_anonymous_name] = STATE(447), - [sym_untyped_binding] = STATE(3170), - [aux_sym__typed_untyped_binding1_repeat1] = STATE(3170), - [sym__binding_name] = STATE(450), - [anon_sym__] = ACTIONS(6871), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6874), - [anon_sym_] = ACTIONS(6877), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym_DOT] = ACTIONS(6880), - [anon_sym_LPAREN] = ACTIONS(6883), - [anon_sym_LBRACE] = ACTIONS(6886), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6889), - [sym_name] = ACTIONS(6892), + [anon_sym_SEMI] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6859), }, [3171] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_renaming] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_hiding] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_public] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3172] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6895), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6861), }, [3173] = { - [sym__newline] = ACTIONS(6897), - [anon_sym_using] = ACTIONS(6897), + [anon_sym_RPAREN] = ACTIONS(6861), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6897), - [anon_sym_hiding] = ACTIONS(6897), - [anon_sym_public] = ACTIONS(6897), - [anon_sym_renaming] = ACTIONS(6897), }, [3174] = { - [anon_sym_to] = ACTIONS(6899), + [anon_sym_PIPE_RPAREN] = ACTIONS(6861), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3175] = { - [aux_sym_import_directive_repeat1] = STATE(4288), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(6903), - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(1900), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [3176] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_renaming] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_using] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_hiding] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(4290), + [aux_sym__open_args1_repeat1] = STATE(4290), + [anon_sym__] = ACTIONS(1323), + [anon_sym_quoteTerm] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1325), + [aux_sym_integer_token1] = ACTIONS(1327), + [anon_sym_QMARK] = ACTIONS(1323), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(1329), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1331), + [sym_qualified_name] = ACTIONS(1323), + [anon_sym_quote] = ACTIONS(1323), + [anon_sym_3] = ACTIONS(1333), + [anon_sym_Prop] = ACTIONS(1323), + [sym__const_ellipsis] = ACTIONS(1323), + [anon_sym_record] = ACTIONS(1335), + [anon_sym_] = ACTIONS(1337), + [anon_sym_unquote] = ACTIONS(1323), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(1341), + [aux_sym_string_token1] = ACTIONS(1343), + [anon_sym_Set] = ACTIONS(1323), }, [3177] = { + [anon_sym_SEMI] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6905), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6863), }, [3178] = { - [sym__field_assignments1] = STATE(4290), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6905), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4292), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4292), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4292), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4292), + [sym_abstract] = STATE(4292), + [sym_private] = STATE(4292), + [sym_function_clause] = STATE(4292), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4292), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4293), + [sym_infix] = STATE(4292), + [sym_data] = STATE(4292), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4292), + [sym_macro] = STATE(4292), + [sym_test] = STATE(4292), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4292), + [sym_record_signature_only] = STATE(4292), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4292), + [sym_syntax] = STATE(4292), + [sym_record] = STATE(4292), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4292), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4292), + [sym_mutual] = STATE(4292), + [sym_postulate] = STATE(4292), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3179] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6865), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6907), }, [3180] = { - [aux_sym__comma_import_names1_repeat1] = STATE(4293), - [anon_sym_SEMI] = ACTIONS(6909), - [anon_sym_RPAREN] = ACTIONS(6911), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4295), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4295), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4295), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4295), + [sym_abstract] = STATE(4295), + [sym_private] = STATE(4295), + [sym_function_clause] = STATE(4295), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4295), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4295), + [sym_data] = STATE(4295), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4295), + [sym_macro] = STATE(4295), + [sym_test] = STATE(4295), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4295), + [sym_record_signature_only] = STATE(4295), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4295), + [sym_syntax] = STATE(4295), + [sym_record] = STATE(4295), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4295), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4295), + [sym_mutual] = STATE(4295), + [sym_postulate] = STATE(4295), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3181] = { - [anon_sym_RPAREN] = ACTIONS(6903), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4297), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6867), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3182] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_renaming] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_hiding] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(6869), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3183] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6861), }, [3184] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6913), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6861), [sym_pragma] = ACTIONS(3), }, [3185] = { - [anon_sym_SEMI] = ACTIONS(3991), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_3] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(6871), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6871), + [sym_pragma] = ACTIONS(3), }, [3186] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6915), + [anon_sym_SEMI] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3187] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6873), + [sym_pragma] = ACTIONS(3), }, [3188] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3189] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6917), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4305), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3190] = { - [sym__field_assignments1] = STATE(4297), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6917), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_literal] = STATE(1852), + [sym_record_assignments] = STATE(1852), + [sym_atom] = STATE(3171), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_Prop] = ACTIONS(2918), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_record] = ACTIONS(2936), + [anon_sym_] = ACTIONS(2940), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(6877), + [anon_sym_LBRACE] = ACTIONS(2946), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), }, [3191] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_SEMI] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_literal] = STATE(1852), + [sym_record_assignments] = STATE(1852), + [sym_atom] = STATE(3171), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_Prop] = ACTIONS(2918), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_record] = ACTIONS(2936), + [anon_sym_] = ACTIONS(2940), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(2946), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), }, [3192] = { - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_3] = ACTIONS(2065), + [sym__expr2] = STATE(1871), + [sym_do] = STATE(1871), + [sym_literal] = STATE(1852), + [sym_atom] = STATE(1868), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_record_assignments] = STATE(1852), + [aux_sym__open_args1_repeat1] = STATE(4306), + [sym_let] = STATE(1871), + [sym_lambda] = STATE(1871), + [sym__application] = STATE(1871), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_] = ACTIONS(2940), + [sym__const_right_arrow] = ACTIONS(2942), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), + [sym_pragma] = ACTIONS(3), }, [3193] = { - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_3] = ACTIONS(2256), + [sym_literal] = STATE(1852), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(1868), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_record_assignments] = STATE(1852), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_] = ACTIONS(2940), + [sym__const_right_arrow] = ACTIONS(2942), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), + [sym_pragma] = ACTIONS(3), }, [3194] = { + [anon_sym_SEMI] = ACTIONS(6879), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_RBRACE] = ACTIONS(6879), [sym_pragma] = ACTIONS(3), }, [3195] = { - [sym__field_assignments1] = STATE(4299), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(2958), [sym_pragma] = ACTIONS(3), }, [3196] = { - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_3] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6791), + [sym_pragma] = ACTIONS(3), }, [3197] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3198] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6921), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6881), }, [3199] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(6881), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), }, [3200] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(6881), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6923), }, [3201] = { - [sym_primitive] = STATE(4302), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4302), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4302), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4303), - [sym_field] = STATE(4302), - [sym_abstract] = STATE(4302), - [sym_private] = STATE(4302), - [sym_function_clause] = STATE(4302), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4302), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4302), - [sym_data] = STATE(4302), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4302), - [sym_macro] = STATE(4302), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4302), - [sym_record_signature_only] = STATE(4302), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4302), - [sym_syntax] = STATE(4302), - [sym_record] = STATE(4302), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4302), - [sym_generalize] = STATE(4302), - [sym_mutual] = STATE(4302), - [sym_postulate] = STATE(4302), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3202] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(6925), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4309), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6883), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3203] = { - [sym_primitive] = STATE(4305), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4305), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4305), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4305), - [sym_abstract] = STATE(4305), - [sym_private] = STATE(4305), - [sym_function_clause] = STATE(4305), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4305), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4305), - [sym_data] = STATE(4305), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4305), - [sym_macro] = STATE(4305), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4305), - [sym_record_signature_only] = STATE(4305), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4305), - [sym_syntax] = STATE(4305), - [sym_record] = STATE(4305), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4305), - [sym_generalize] = STATE(4305), - [sym_mutual] = STATE(4305), - [sym_postulate] = STATE(4305), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(6885), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3204] = { - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_2] = ACTIONS(6881), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), }, [3205] = { - [sym_do] = STATE(4306), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4306), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4306), - [sym_lambda] = STATE(4306), - [sym__application] = STATE(4306), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6881), }, [3206] = { - [sym_do] = STATE(4307), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4307), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4307), - [sym_lambda] = STATE(4307), - [sym__application] = STATE(4307), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3207] = { - [sym_anonymous_name] = STATE(3210), - [sym__binding_name] = STATE(4312), - [anon_sym__] = ACTIONS(5152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6927), - [anon_sym_] = ACTIONS(6929), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6887), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6931), - [anon_sym_LBRACE] = ACTIONS(6933), - [sym_name] = ACTIONS(5166), }, [3208] = { - [sym_do] = STATE(4314), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4314), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4314), - [sym_lambda] = STATE(4314), - [sym_open] = STATE(4313), - [sym__application] = STATE(4314), - [anon_sym_RPAREN] = ACTIONS(1933), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(4312), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [3209] = { - [sym_lambda_clause] = STATE(1157), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4315), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4315), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(1157), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4315), - [sym__expr2] = STATE(4315), - [sym_lambda] = STATE(4315), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_literal] = STATE(1876), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(1891), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [sym_record_assignments] = STATE(1876), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(2962), + [anon_sym_quoteTerm] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(2972), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2960), + [sym_qualified_name] = ACTIONS(2962), + [anon_sym_quote] = ACTIONS(2962), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(2962), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(2966), + [sym__const_ellipsis] = ACTIONS(2962), + [anon_sym_3] = ACTIONS(2970), + [anon_sym_] = ACTIONS(2968), + [sym__const_right_arrow] = ACTIONS(6889), + [anon_sym_unquote] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2980), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(2982), + [anon_sym_Set] = ACTIONS(2962), + [sym_pragma] = ACTIONS(3), }, [3210] = { - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), + [sym__newline] = ACTIONS(5125), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), }, [3211] = { - [sym_typed_binding] = STATE(3211), - [sym_anonymous_name] = STATE(3210), - [sym_untyped_binding] = STATE(3211), - [sym__lambda_binding] = STATE(1147), - [sym__binding_name] = STATE(3213), - [anon_sym__] = ACTIONS(5152), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5154), - [anon_sym_] = ACTIONS(5156), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(5158), - [anon_sym_LPAREN] = ACTIONS(5160), - [anon_sym_LBRACE] = ACTIONS(6935), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(5164), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(5166), - }, - [3212] = { - [anon_sym_where] = ACTIONS(1147), + [sym__newline] = ACTIONS(6891), + [anon_sym_COLON] = ACTIONS(6891), + [anon_sym_with] = ACTIONS(6891), [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(6891), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6937), + [anon_sym_in] = ACTIONS(6891), + [anon_sym_where] = ACTIONS(6891), + [anon_sym_rewrite] = ACTIONS(6891), + [anon_sym_module] = ACTIONS(6891), + }, + [3212] = { + [sym_catchall_pragma] = STATE(1887), + [sym_lambda_clause] = STATE(1892), + [sym_literal] = STATE(1876), + [aux_sym__lambda_where_block_repeat1] = STATE(3212), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1889), + [sym__atom_no_curly] = STATE(1889), + [aux_sym__open_args1_repeat1] = STATE(1890), + [sym__expr2] = STATE(1893), + [sym_do] = STATE(1893), + [sym_atom] = STATE(1891), + [sym_lambda_clause_absurd] = STATE(1892), + [sym__lambda_clause] = STATE(1892), + [sym_record_assignments] = STATE(1876), + [sym__application] = STATE(1893), + [sym_let] = STATE(1893), + [sym_lambda] = STATE(1893), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(6893), + [anon_sym_LPAREN_PIPE] = ACTIONS(6896), + [sym_qualified_name] = ACTIONS(6899), + [anon_sym_quote] = ACTIONS(6899), + [sym__const_right_arrow] = ACTIONS(6902), + [anon_sym_tactic] = ACTIONS(6905), + [sym__const_ellipsis] = ACTIONS(6899), + [anon_sym_record] = ACTIONS(6908), + [anon_sym_let] = ACTIONS(6911), + [anon_sym_Prop] = ACTIONS(6899), + [anon_sym_] = ACTIONS(6914), + [anon_sym_3] = ACTIONS(6917), + [anon_sym__] = ACTIONS(6899), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6920), + [sym__const_lambda] = ACTIONS(6923), + [anon_sym_quoteGoal] = ACTIONS(6926), + [aux_sym_integer_token1] = ACTIONS(6929), + [anon_sym_do] = ACTIONS(6932), + [anon_sym_LPAREN] = ACTIONS(6935), + [anon_sym_QMARK] = ACTIONS(6899), + [anon_sym_quoteTerm] = ACTIONS(6899), + [sym__dedent] = ACTIONS(6938), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6940), + [anon_sym_unquote] = ACTIONS(6899), + [anon_sym_LBRACE] = ACTIONS(6943), + [sym__const_forall] = ACTIONS(6946), + [aux_sym_string_token1] = ACTIONS(6949), + [anon_sym_Set] = ACTIONS(6899), }, [3213] = { - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(6952), + [anon_sym_LPAREN_PIPE] = ACTIONS(6938), + [sym_qualified_name] = ACTIONS(6952), + [anon_sym_quote] = ACTIONS(6952), + [sym__const_right_arrow] = ACTIONS(6952), + [anon_sym_tactic] = ACTIONS(6952), + [sym__const_ellipsis] = ACTIONS(6952), + [anon_sym_record] = ACTIONS(6952), + [anon_sym_let] = ACTIONS(6952), + [anon_sym_Prop] = ACTIONS(6952), + [anon_sym_] = ACTIONS(6952), + [anon_sym_3] = ACTIONS(6952), + [anon_sym__] = ACTIONS(6952), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6938), + [sym__const_lambda] = ACTIONS(6952), + [anon_sym_quoteGoal] = ACTIONS(6952), + [aux_sym_integer_token1] = ACTIONS(6952), + [anon_sym_do] = ACTIONS(6952), + [anon_sym_LPAREN] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_quoteTerm] = ACTIONS(6952), + [sym__dedent] = ACTIONS(6938), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6952), + [anon_sym_unquote] = ACTIONS(6952), + [anon_sym_LBRACE] = ACTIONS(6952), + [sym__const_forall] = ACTIONS(6952), + [aux_sym_string_token1] = ACTIONS(6938), + [anon_sym_Set] = ACTIONS(6952), }, [3214] = { - [anon_sym_RPAREN] = ACTIONS(6923), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3215] = { - [anon_sym_in] = ACTIONS(6939), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3216] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4320), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(6941), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6954), [sym_pragma] = ACTIONS(3), }, [3217] = { - [anon_sym_LBRACE] = ACTIONS(6943), + [sym__field_assignments1] = STATE(4315), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6954), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3218] = { + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6923), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3219] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3200), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5148), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3220] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3214), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5148), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6956), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3221] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3218), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(5172), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), }, [3222] = { - [sym__atom_no_curly] = STATE(1903), - [sym_literal] = STATE(1885), - [sym_record_assignments] = STATE(1885), - [sym__atom_curly] = STATE(1903), - [sym_atom] = STATE(3199), - [anon_sym__] = ACTIONS(2922), - [anon_sym_unquote] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5236), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(5238), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_] = ACTIONS(5234), - [anon_sym_DOT] = ACTIONS(5180), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(5240), - [anon_sym_3] = ACTIONS(2952), - [aux_sym_string_token1] = ACTIONS(2948), - [anon_sym_Prop] = ACTIONS(2922), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6958), + [sym_pragma] = ACTIONS(3), }, [3223] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3226), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), }, [3224] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6923), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), }, [3225] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6960), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), }, [3226] = { + [sym__field_assignments1] = STATE(4319), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6945), [sym_pragma] = ACTIONS(3), }, [3227] = { - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), }, [3228] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4324), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6947), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3229] = { - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(6962), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3230] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4325), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6947), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3231] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4327), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6949), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6964), }, [3232] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4328), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6951), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6966), + [sym_pragma] = ACTIONS(3), }, [3233] = { - [sym__atom_no_curly] = STATE(3237), - [sym_literal] = STATE(3227), - [sym_record_assignments] = STATE(3227), - [sym__atom_curly] = STATE(3237), - [sym_atom] = STATE(4323), - [anon_sym__] = ACTIONS(5186), - [anon_sym_unquote] = ACTIONS(5186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5188), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5190), - [anon_sym_Set] = ACTIONS(5186), - [anon_sym_LPAREN] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5186), - [anon_sym_quoteTerm] = ACTIONS(5186), - [anon_sym_quote] = ACTIONS(5186), - [sym__const_ellipsis] = ACTIONS(5186), - [anon_sym_record] = ACTIONS(5194), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_LPAREN_PIPE] = ACTIONS(5200), - [anon_sym_LBRACE] = ACTIONS(5202), - [anon_sym_3] = ACTIONS(5204), - [aux_sym_string_token1] = ACTIONS(5206), - [anon_sym_Prop] = ACTIONS(5186), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [3234] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4329), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__expr2] = STATE(4323), + [sym_do] = STATE(4323), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4323), + [sym_lambda] = STATE(4323), + [sym__application] = STATE(4323), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1877), }, [3235] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4331), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6953), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4324), + [sym_do] = STATE(4324), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4324), + [sym_lambda] = STATE(4324), + [sym__application] = STATE(4324), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1879), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [3236] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4332), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_anonymous_name] = STATE(3239), + [sym__binding_name] = STATE(4329), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6968), + [anon_sym_] = ACTIONS(6970), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6972), + [anon_sym_LBRACE] = ACTIONS(6974), + [sym_name] = ACTIONS(5254), }, [3237] = { - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [sym_open] = STATE(4331), + [sym__expr2] = STATE(4330), + [sym_do] = STATE(4330), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4330), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4330), + [sym_lambda] = STATE(4330), + [anon_sym_RPAREN] = ACTIONS(1877), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [3238] = { - [sym__atom_no_curly] = STATE(3237), - [sym_literal] = STATE(3227), - [sym_record_assignments] = STATE(3227), - [sym__atom_curly] = STATE(3237), - [sym_atom] = STATE(4333), - [aux_sym__open_args1_repeat1] = STATE(4333), - [anon_sym__] = ACTIONS(5186), - [anon_sym_unquote] = ACTIONS(5186), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5188), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5190), - [anon_sym_Set] = ACTIONS(5186), - [anon_sym_LPAREN] = ACTIONS(5192), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(5186), - [anon_sym_quoteTerm] = ACTIONS(5186), - [anon_sym_quote] = ACTIONS(5186), - [sym__const_ellipsis] = ACTIONS(5186), - [anon_sym_record] = ACTIONS(5194), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5186), - [anon_sym_] = ACTIONS(5196), - [anon_sym_DOT] = ACTIONS(5198), - [anon_sym_LPAREN_PIPE] = ACTIONS(5200), - [anon_sym_LBRACE] = ACTIONS(5202), - [anon_sym_3] = ACTIONS(5204), - [aux_sym_string_token1] = ACTIONS(5206), - [anon_sym_Prop] = ACTIONS(5186), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(1200), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(1200), + [sym__expr2] = STATE(4332), + [sym_do] = STATE(4332), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4332), + [sym_let] = STATE(4332), + [sym_lambda] = STATE(4332), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [3239] = { - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(6955), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [3240] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(1265), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_anonymous_name] = STATE(3239), + [sym_typed_binding] = STATE(3240), + [sym_untyped_binding] = STATE(3240), + [sym__lambda_binding] = STATE(1098), + [sym__binding_name] = STATE(3242), + [anon_sym__] = ACTIONS(5240), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5242), + [anon_sym_] = ACTIONS(5244), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5246), + [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_LBRACE] = ACTIONS(6976), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(5252), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(5254), }, [3241] = { + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(6923), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6978), }, [3242] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [3243] = { - [sym__declaration_block] = STATE(4335), - [sym__newline] = ACTIONS(6957), + [anon_sym_RPAREN] = ACTIONS(6964), [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6957), }, [3244] = { + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, [3245] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4336), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6980), }, [3246] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4337), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6959), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3247] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4338), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6959), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4337), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6980), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3248] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4340), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(6961), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4338), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [3249] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4341), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6963), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4339), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3250] = { - [sym__atom_no_curly] = STATE(3254), - [sym_literal] = STATE(3244), - [sym_record_assignments] = STATE(3244), - [sym__atom_curly] = STATE(3254), - [sym_atom] = STATE(4336), - [anon_sym__] = ACTIONS(5212), - [anon_sym_unquote] = ACTIONS(5212), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5216), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5214), - [anon_sym_Set] = ACTIONS(5212), - [anon_sym_LPAREN] = ACTIONS(5218), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5212), - [anon_sym_quoteTerm] = ACTIONS(5212), - [anon_sym_quote] = ACTIONS(5212), - [sym__const_ellipsis] = ACTIONS(5212), - [anon_sym_record] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_] = ACTIONS(5222), - [anon_sym_DOT] = ACTIONS(5224), - [anon_sym_LPAREN_PIPE] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(5228), - [anon_sym_3] = ACTIONS(5232), - [aux_sym_string_token1] = ACTIONS(5230), - [anon_sym_Prop] = ACTIONS(5212), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4341), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(6982), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3251] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), [sym_expr] = STATE(4342), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6984), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3252] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4344), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6965), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(3254), + [sym__atom_no_curly] = STATE(3254), + [sym_literal] = STATE(3244), + [sym_record_assignments] = STATE(3244), + [sym_atom] = STATE(4335), + [anon_sym__] = ACTIONS(5256), + [anon_sym_quoteTerm] = ACTIONS(5256), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5262), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5264), + [sym_qualified_name] = ACTIONS(5256), + [anon_sym_quote] = ACTIONS(5256), + [anon_sym_3] = ACTIONS(5266), + [anon_sym_Prop] = ACTIONS(5256), + [sym__const_ellipsis] = ACTIONS(5256), + [anon_sym_record] = ACTIONS(5268), + [anon_sym_] = ACTIONS(5270), + [anon_sym_unquote] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(5274), + [aux_sym_string_token1] = ACTIONS(5276), + [anon_sym_Set] = ACTIONS(5256), }, [3253] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4345), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4344), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6986), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3254] = { + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3255] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3256), [sym__atom_curly] = STATE(3254), - [sym_literal] = STATE(3244), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), [sym__atom_no_curly] = STATE(3254), + [sym_literal] = STATE(3244), [sym_record_assignments] = STATE(3244), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5212), - [anon_sym_unquote] = ACTIONS(5212), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(5214), - [anon_sym_Set] = ACTIONS(5212), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5218), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5212), - [anon_sym_quoteTerm] = ACTIONS(5212), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5212), - [sym__const_ellipsis] = ACTIONS(5212), - [anon_sym_record] = ACTIONS(5220), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_] = ACTIONS(5222), - [anon_sym_DOT] = ACTIONS(5224), - [anon_sym_LPAREN_PIPE] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(5228), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(5230), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(5212), - [anon_sym_3] = ACTIONS(5232), + [sym_atom] = STATE(4345), + [aux_sym__open_args1_repeat1] = STATE(4345), + [anon_sym__] = ACTIONS(5256), + [anon_sym_quoteTerm] = ACTIONS(5256), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5258), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5256), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(5262), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(5264), + [sym_qualified_name] = ACTIONS(5256), + [anon_sym_quote] = ACTIONS(5256), + [anon_sym_3] = ACTIONS(5266), + [anon_sym_Prop] = ACTIONS(5256), + [sym__const_ellipsis] = ACTIONS(5256), + [anon_sym_record] = ACTIONS(5268), + [anon_sym_] = ACTIONS(5270), + [anon_sym_unquote] = ACTIONS(5256), + [anon_sym_DOT] = ACTIONS(5272), + [anon_sym_LBRACE] = ACTIONS(5274), + [aux_sym_string_token1] = ACTIONS(5276), + [anon_sym_Set] = ACTIONS(5256), }, [3256] = { + [anon_sym_where] = ACTIONS(737), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(6988), }, [3257] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3200), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(5148), + [sym_primitive] = STATE(4347), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4347), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4347), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4347), + [sym_abstract] = STATE(4347), + [sym_private] = STATE(4347), + [sym_function_clause] = STATE(4347), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4347), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4348), + [sym_infix] = STATE(4347), + [sym_data] = STATE(4347), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4347), + [sym_macro] = STATE(4347), + [sym_test] = STATE(4347), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4347), + [sym_record_signature_only] = STATE(4347), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4347), + [sym_syntax] = STATE(4347), + [sym_record] = STATE(4347), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4347), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4347), + [sym_mutual] = STATE(4347), + [sym_postulate] = STATE(4347), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3258] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3214), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(5148), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(6990), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3259] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3218), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(4350), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4350), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4350), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4350), + [sym_abstract] = STATE(4350), + [sym_private] = STATE(4350), + [sym_function_clause] = STATE(4350), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4350), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4350), + [sym_data] = STATE(4350), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4350), + [sym_macro] = STATE(4350), + [sym_test] = STATE(4350), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4350), + [sym_record_signature_only] = STATE(4350), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4350), + [sym_syntax] = STATE(4350), + [sym_record] = STATE(4350), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4350), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4350), + [sym_mutual] = STATE(4350), + [sym_postulate] = STATE(4350), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(5172), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3260] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3226), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4352), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(6992), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3261] = { + [anon_sym_LBRACE] = ACTIONS(6994), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6967), }, [3262] = { - [sym__newline] = ACTIONS(6957), + [anon_sym_PIPE_RPAREN] = ACTIONS(6964), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6957), }, [3263] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(6964), + [sym_pragma] = ACTIONS(3), }, [3264] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6969), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(6964), }, [3265] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4348), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3231), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5236), }, [3266] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_PIPE_RPAREN] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3243), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(5236), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3267] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4349), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3263), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3268] = { - [anon_sym_COLON] = ACTIONS(6971), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_literal] = STATE(1938), + [sym_record_assignments] = STATE(1938), + [sym_atom] = STATE(3230), + [anon_sym__] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5300), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6973), + [aux_sym_integer_token1] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(5302), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_Prop] = ACTIONS(3028), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_record] = ACTIONS(3044), + [anon_sym_] = ACTIONS(5298), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_DOT] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5304), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), }, [3269] = { - [anon_sym_COLON] = ACTIONS(6975), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6973), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3271), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3270] = { - [anon_sym_COLON] = ACTIONS(6977), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3271] = { - [anon_sym_COLON] = ACTIONS(6979), - [anon_sym_2] = ACTIONS(6973), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6996), [sym_pragma] = ACTIONS(3), }, [3272] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(1310), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_PIPE_RPAREN] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [3273] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4355), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__declaration_block] = STATE(4355), + [sym__newline] = ACTIONS(6998), + [anon_sym_in] = ACTIONS(6998), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), + [sym_pragma] = ACTIONS(3), }, [3274] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4356), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3231), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5236), }, [3275] = { - [anon_sym_COLON] = ACTIONS(5256), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5248), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3243), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5236), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3276] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [anon_sym_PIPE_RPAREN] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3263), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3277] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6981), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3271), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3278] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), + [sym_pragma] = ACTIONS(3), }, [3279] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [3280] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6983), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3281] = { - [sym__field_assignments1] = STATE(4359), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6983), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4357), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7000), }, [3282] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4358), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7000), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3283] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4359), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [anon_sym_PIPE_RPAREN] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), }, [3284] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [anon_sym_PIPE_RPAREN] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4361), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7002), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3285] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6985), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4362), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [3286] = { - [sym__field_assignments1] = STATE(4361), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6985), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4363), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7004), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3287] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [anon_sym_PIPE_RPAREN] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__atom_curly] = STATE(3289), + [sym__atom_no_curly] = STATE(3289), + [sym_literal] = STATE(3279), + [sym_record_assignments] = STATE(3279), + [sym_atom] = STATE(4356), + [anon_sym__] = ACTIONS(5308), + [anon_sym_quoteTerm] = ACTIONS(5308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5312), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5310), + [anon_sym_QMARK] = ACTIONS(5308), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5316), + [sym_qualified_name] = ACTIONS(5308), + [anon_sym_quote] = ACTIONS(5308), + [anon_sym_3] = ACTIONS(5320), + [anon_sym_Prop] = ACTIONS(5308), + [sym__const_ellipsis] = ACTIONS(5308), + [anon_sym_record] = ACTIONS(5318), + [anon_sym_] = ACTIONS(5322), + [anon_sym_unquote] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5326), + [aux_sym_string_token1] = ACTIONS(5328), + [anon_sym_Set] = ACTIONS(5308), }, [3288] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4365), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7006), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3289] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3290] = { - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(3279), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3291), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3289), + [sym__atom_no_curly] = STATE(3289), + [sym_record_assignments] = STATE(3279), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5308), + [anon_sym_quoteTerm] = ACTIONS(5308), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(5310), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5314), + [anon_sym_LPAREN_PIPE] = ACTIONS(5316), + [sym_qualified_name] = ACTIONS(5308), + [anon_sym_quote] = ACTIONS(5308), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(5308), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(5318), + [sym__const_ellipsis] = ACTIONS(5308), + [anon_sym_3] = ACTIONS(5320), + [anon_sym_] = ACTIONS(5322), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(5328), + [anon_sym_Set] = ACTIONS(5308), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6989), }, [3291] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6989), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [3292] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4364), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7008), }, [3293] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), + [sym__newline] = ACTIONS(6998), + [anon_sym_in] = ACTIONS(6998), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6708), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_RPAREN] = ACTIONS(6708), - [anon_sym_RBRACE] = ACTIONS(6710), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [3294] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4365), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3295] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4366), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7010), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3296] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4367), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7012), }, [3297] = { - [anon_sym_RPAREN] = ACTIONS(6989), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7012), [sym_pragma] = ACTIONS(3), }, [3298] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4369), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3299] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6795), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [anon_sym_RPAREN] = ACTIONS(6795), + [anon_sym_RBRACE] = ACTIONS(6797), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [3300] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4370), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3301] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6991), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4371), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3302] = { - [sym__field_assignments1] = STATE(4369), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(6991), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4372), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [3303] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(7012), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3304] = { - [sym__newline] = ACTIONS(3734), - [anon_sym_COLON] = ACTIONS(3734), - [anon_sym_with] = ACTIONS(3734), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(3734), + [anon_sym_RBRACE] = ACTIONS(7012), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(3734), - [anon_sym_where] = ACTIONS(3734), - [anon_sym_rewrite] = ACTIONS(3734), - [anon_sym_module] = ACTIONS(3734), }, [3305] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3306] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6993), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3307] = { - [sym__newline] = ACTIONS(6995), - [anon_sym_where] = ACTIONS(6967), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7014), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(6995), }, [3308] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4371), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(4374), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7014), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3309] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3310] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4372), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__newline] = ACTIONS(3879), + [anon_sym_COLON] = ACTIONS(3879), + [anon_sym_with] = ACTIONS(3879), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_EQ] = ACTIONS(3879), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_in] = ACTIONS(3879), + [anon_sym_where] = ACTIONS(3879), + [anon_sym_rewrite] = ACTIONS(3879), + [anon_sym_module] = ACTIONS(3879), }, [3311] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(1827), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(6997), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2854), + [sym__newline] = ACTIONS(7016), + [anon_sym_in] = ACTIONS(7016), + [anon_sym_where] = ACTIONS(7008), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3312] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(1835), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(6999), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4375), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3313] = { - [sym__newline] = ACTIONS(7001), - [anon_sym_using] = ACTIONS(7001), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7001), - [anon_sym_hiding] = ACTIONS(7001), - [anon_sym_public] = ACTIONS(7001), - [anon_sym_renaming] = ACTIONS(7001), + [sym_name] = ACTIONS(5019), }, [3314] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(6869), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4376), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [3315] = { - [anon_sym_COLON] = ACTIONS(7003), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7005), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1757), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(7018), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2810), }, [3316] = { - [anon_sym_COLON] = ACTIONS(7007), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7005), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(1767), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(7020), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(2820), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3317] = { - [anon_sym_COLON] = ACTIONS(7009), + [sym__newline] = ACTIONS(7022), + [anon_sym_using] = ACTIONS(7022), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(7022), + [anon_sym_in] = ACTIONS(7022), + [anon_sym_public] = ACTIONS(7022), + [anon_sym_renaming] = ACTIONS(7022), }, [3318] = { - [anon_sym_COLON] = ACTIONS(7011), - [anon_sym_2] = ACTIONS(7005), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(6715), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), }, [3319] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(7024), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(7026), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(3633), }, [3320] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4380), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(7028), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7026), }, [3321] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4381), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(7030), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3322] = { - [sym__newline] = ACTIONS(7013), + [anon_sym_COLON] = ACTIONS(7032), + [anon_sym_2] = ACTIONS(7026), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7013), }, [3323] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4382), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4384), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3324] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym_name] = ACTIONS(4861), + [sym_name] = ACTIONS(3774), }, [3325] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4383), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4385), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [3326] = { - [anon_sym_COLON] = ACTIONS(7015), + [sym__newline] = ACTIONS(7034), + [anon_sym_in] = ACTIONS(7034), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7017), [sym_pragma] = ACTIONS(3), }, [3327] = { - [anon_sym_COLON] = ACTIONS(7019), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4386), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7017), }, [3328] = { - [anon_sym_COLON] = ACTIONS(7021), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym_name] = ACTIONS(5019), }, [3329] = { - [anon_sym_COLON] = ACTIONS(7023), - [anon_sym_2] = ACTIONS(7017), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4387), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [3330] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(7036), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_RBRACE] = ACTIONS(7038), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym_name] = ACTIONS(3633), }, [3331] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4389), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(7040), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7038), }, [3332] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4390), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(7042), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3333] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7044), + [anon_sym_2] = ACTIONS(7038), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3334] = { - [sym_primitive] = STATE(4392), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4392), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4392), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4392), - [sym_abstract] = STATE(4392), - [sym_private] = STATE(4392), - [sym_function_clause] = STATE(4392), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4392), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4392), - [sym_data] = STATE(4392), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4392), - [sym_macro] = STATE(4392), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4392), - [sym_record_signature_only] = STATE(4392), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4392), - [sym_syntax] = STATE(4392), - [sym_record] = STATE(4392), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4392), - [sym_generalize] = STATE(4392), - [sym_mutual] = STATE(4392), - [sym_postulate] = STATE(4392), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4393), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3335] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym_name] = ACTIONS(3774), }, [3336] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7025), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4394), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3337] = { - [anon_sym_COLON] = ACTIONS(7027), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7029), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [3338] = { - [anon_sym_COLON] = ACTIONS(7031), - [anon_sym_2] = ACTIONS(7029), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7046), [sym_pragma] = ACTIONS(3), }, [3339] = { - [sym_do] = STATE(4396), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4396), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4396), - [sym_lambda] = STATE(4396), - [sym__application] = STATE(4396), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3340] = { - [sym_do] = STATE(4397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4397), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4397), - [sym_lambda] = STATE(4397), - [sym__application] = STATE(4397), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), + [sym_pragma] = ACTIONS(3), }, [3341] = { - [sym_do] = STATE(4398), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4398), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4398), - [sym_lambda] = STATE(4398), - [sym__application] = STATE(4398), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7048), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7050), }, [3342] = { + [anon_sym_COLON] = ACTIONS(7052), + [anon_sym_2] = ACTIONS(7050), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [3343] = { + [sym__expr2] = STATE(4399), [sym_do] = STATE(4399), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), [sym_let] = STATE(4399), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4399), [sym_lambda] = STATE(4399), [sym__application] = STATE(4399), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, - [3343] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [3344] = { + [sym__expr2] = STATE(4400), + [sym_do] = STATE(4400), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4400), + [sym_lambda] = STATE(4400), + [sym__application] = STATE(4400), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [3345] = { + [sym__expr2] = STATE(4401), + [sym_do] = STATE(4401), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4401), + [sym_lambda] = STATE(4401), + [sym__application] = STATE(4401), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [3346] = { + [sym__expr2] = STATE(4402), + [sym_do] = STATE(4402), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4402), + [sym_lambda] = STATE(4402), + [sym__application] = STATE(4402), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + }, + [3347] = { + [anon_sym_module] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym__newline] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, - [3344] = { - [anon_sym_RPAREN] = ACTIONS(7033), + [3348] = { + [anon_sym_COLON] = ACTIONS(7054), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [3345] = { - [anon_sym_COLON] = ACTIONS(7035), + [3349] = { + [anon_sym_RPAREN] = ACTIONS(7056), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [3346] = { - [anon_sym_COLON] = ACTIONS(7037), - [anon_sym_SEMI] = ACTIONS(2814), + [3350] = { + [anon_sym_COLON] = ACTIONS(7058), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7029), + [anon_sym_RBRACE] = ACTIONS(7050), [sym_pragma] = ACTIONS(3), }, - [3347] = { - [sym_do] = STATE(4403), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4403), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4403), - [sym_lambda] = STATE(4403), - [sym__application] = STATE(4403), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [3351] = { + [sym__expr2] = STATE(4406), + [sym_do] = STATE(4406), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4406), + [sym_lambda] = STATE(4406), + [sym__application] = STATE(4406), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, - [3348] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), + [3352] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), - [sym__application] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1002), [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), - }, - [3349] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), - }, - [3350] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), - }, - [3351] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [3352] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7039), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), }, - [3353] = { - [sym__field_assignments1] = STATE(4405), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7039), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [3353] = { + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3354] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7060), }, [3355] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(7060), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [3356] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(7060), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7041), }, [3357] = { - [anon_sym_RPAREN] = ACTIONS(7041), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7060), }, [3358] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4408), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7043), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4409), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7062), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3359] = { - [anon_sym_LBRACE] = ACTIONS(7045), + [anon_sym_LBRACE] = ACTIONS(7064), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3360] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7041), + [anon_sym_2] = ACTIONS(7060), [sym_pragma] = ACTIONS(3), }, [3361] = { + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7041), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3362] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), - }, - [3363] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7047), - [sym_pragma] = ACTIONS(3), - }, - [3364] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7041), + [anon_sym_RBRACE] = ACTIONS(7066), [sym_pragma] = ACTIONS(3), }, - [3365] = { + [3363] = { + [sym__atom_curly] = STATE(2059), [sym__atom_no_curly] = STATE(2059), [sym_literal] = STATE(2049), [sym_record_assignments] = STATE(2049), - [sym__atom_curly] = STATE(2059), - [sym_atom] = STATE(3365), - [aux_sym__open_args1_repeat1] = STATE(3365), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7049), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7052), - [anon_sym_unquote] = ACTIONS(7049), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(7055), - [anon_sym_Set] = ACTIONS(7049), - [anon_sym_LPAREN] = ACTIONS(7058), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7049), - [anon_sym_quoteTerm] = ACTIONS(7049), - [anon_sym_quote] = ACTIONS(7049), - [sym__const_ellipsis] = ACTIONS(7049), - [anon_sym_record] = ACTIONS(7061), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(7064), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(7067), - [anon_sym_QMARK] = ACTIONS(7049), - [anon_sym_LBRACE] = ACTIONS(7070), - [anon_sym_LPAREN_PIPE] = ACTIONS(7073), - [aux_sym_string_token1] = ACTIONS(7076), - [anon_sym_Prop] = ACTIONS(7049), - [anon_sym_3] = ACTIONS(7079), - [anon_sym_module] = ACTIONS(1683), + [sym_atom] = STATE(3363), + [aux_sym__open_args1_repeat1] = STATE(3363), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7068), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7071), + [anon_sym_quoteTerm] = ACTIONS(7068), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7074), + [anon_sym_QMARK] = ACTIONS(7068), + [anon_sym_LPAREN] = ACTIONS(7077), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7080), + [sym_qualified_name] = ACTIONS(7068), + [anon_sym_quote] = ACTIONS(7068), + [anon_sym_3] = ACTIONS(7083), + [anon_sym_Prop] = ACTIONS(7068), + [sym__const_ellipsis] = ACTIONS(7068), + [anon_sym_record] = ACTIONS(7086), + [anon_sym_] = ACTIONS(7089), + [anon_sym_DOT] = ACTIONS(7092), + [anon_sym_unquote] = ACTIONS(7068), + [anon_sym_LBRACE] = ACTIONS(7095), + [aux_sym_string_token1] = ACTIONS(7098), + [anon_sym_Set] = ACTIONS(7068), + [anon_sym_module] = ACTIONS(1527), }, - [3366] = { - [sym_literal] = STATE(970), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(986), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(988), + [3364] = { + [sym_literal] = STATE(2083), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2093), + [sym__atom_no_curly] = STATE(2093), + [aux_sym__open_args1_repeat1] = STATE(2094), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(989), - [sym__atom_curly] = STATE(986), - [sym_record_assignments] = STATE(970), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2095), + [sym_record_assignments] = STATE(2083), + [sym__with_expr] = STATE(1332), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1501), - [anon_sym_unquote] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(1507), - [anon_sym_Set] = ACTIONS(1501), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1501), - [anon_sym_quoteTerm] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1501), - [sym__const_ellipsis] = ACTIONS(1501), - [anon_sym_record] = ACTIONS(1515), - [anon_sym_QMARK] = ACTIONS(1501), - [anon_sym_] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_LPAREN_PIPE] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(1527), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(1501), - [anon_sym_3] = ACTIONS(1531), + [anon_sym__] = ACTIONS(3260), + [anon_sym_quoteTerm] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(3262), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(3260), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3268), + [sym_qualified_name] = ACTIONS(3260), + [anon_sym_quote] = ACTIONS(3260), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(3270), + [sym__const_ellipsis] = ACTIONS(3260), + [anon_sym_3] = ACTIONS(3272), + [anon_sym_] = ACTIONS(3274), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3260), + [anon_sym_DOT] = ACTIONS(3276), + [anon_sym_LBRACE] = ACTIONS(3278), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(3280), + [anon_sym_Set] = ACTIONS(3260), + }, + [3365] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7101), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [3366] = { + [sym_primitive] = STATE(4413), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4413), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4413), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4413), + [sym_abstract] = STATE(4413), + [sym_private] = STATE(4413), + [sym_function_clause] = STATE(4413), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4413), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4413), + [sym_data] = STATE(4413), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4413), + [sym_macro] = STATE(4413), + [sym_test] = STATE(4413), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4413), + [sym_record_signature_only] = STATE(4413), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4413), + [sym_syntax] = STATE(4413), + [sym_record] = STATE(4413), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4413), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4413), + [sym_mutual] = STATE(4413), + [sym_postulate] = STATE(4413), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3367] = { - [sym__newline] = ACTIONS(121), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), }, [3368] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4412), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7082), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7101), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3369] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3370] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4413), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(7082), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7103), + [sym_pragma] = ACTIONS(3), }, [3371] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4415), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7084), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__field_assignments1] = STATE(4415), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7103), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3372] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4416), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7086), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3373] = { - [sym__atom_no_curly] = STATE(3378), - [sym_literal] = STATE(3367), - [sym_record_assignments] = STATE(3367), - [sym__atom_curly] = STATE(3378), - [sym_atom] = STATE(4411), - [anon_sym__] = ACTIONS(5454), - [anon_sym_unquote] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7088), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(7090), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_] = ACTIONS(7092), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(7096), - [anon_sym_3] = ACTIONS(5474), - [aux_sym_string_token1] = ACTIONS(5472), - [anon_sym_Prop] = ACTIONS(5454), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3374] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4422), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7105), }, [3375] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4424), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7098), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_RPAREN] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3376] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4425), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_PIPE_RPAREN] = ACTIONS(7105), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3377] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4418), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7107), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7100), }, [3378] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7109), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3379] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_literal] = STATE(3367), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(3378), - [sym_record_assignments] = STATE(3367), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1509), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_] = ACTIONS(7102), - [anon_sym__] = ACTIONS(5454), - [anon_sym_unquote] = ACTIONS(5454), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7104), - [anon_sym_LPAREN] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(7108), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7105), }, [3380] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7105), + [sym_pragma] = ACTIONS(3), }, [3381] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7100), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3382] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7111), + [sym_pragma] = ACTIONS(3), }, [3383] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7110), + [sym__newline] = ACTIONS(7113), + [anon_sym_in] = ACTIONS(7113), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3384] = { - [sym_primitive] = STATE(4432), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4432), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym_module_macro] = STATE(4432), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4432), - [sym_abstract] = STATE(4432), - [sym_private] = STATE(4432), - [sym_function_clause] = STATE(4432), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(3429), [sym__expr2] = STATE(43), - [sym_open] = STATE(4432), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4432), - [sym_data] = STATE(4432), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4432), - [sym_macro] = STATE(4432), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4432), - [sym_record_signature_only] = STATE(4432), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4432), - [sym_syntax] = STATE(4432), - [sym_record] = STATE(4432), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4432), - [sym_generalize] = STATE(4432), - [sym_mutual] = STATE(4432), - [sym_postulate] = STATE(4432), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [3385] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), + [sym_pragma] = ACTIONS(3), }, - [3386] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7110), + [3385] = { + [anon_sym_COLON] = ACTIONS(7115), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7117), }, - [3387] = { - [anon_sym_COLON] = ACTIONS(7112), + [3386] = { + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_2] = ACTIONS(7117), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7114), + }, + [3387] = { + [sym__expr2] = STATE(4424), + [sym_do] = STATE(4424), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4424), + [sym_lambda] = STATE(4424), + [sym__application] = STATE(4424), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3388] = { - [anon_sym_COLON] = ACTIONS(7116), - [anon_sym_2] = ACTIONS(7114), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4425), + [sym_do] = STATE(4425), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4425), + [sym_lambda] = STATE(4425), + [sym__application] = STATE(4425), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3389] = { - [sym_do] = STATE(4436), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4436), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4436), - [sym_lambda] = STATE(4436), - [sym__application] = STATE(4436), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(4426), + [sym_do] = STATE(4426), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4426), + [sym_lambda] = STATE(4426), + [sym__application] = STATE(4426), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3390] = { - [sym_do] = STATE(4437), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4437), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4437), - [sym_lambda] = STATE(4437), - [sym__application] = STATE(4437), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(4427), + [sym_do] = STATE(4427), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4427), + [sym_lambda] = STATE(4427), + [sym__application] = STATE(4427), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3391] = { - [sym_do] = STATE(4438), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4438), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4438), - [sym_lambda] = STATE(4438), - [sym__application] = STATE(4438), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3392] = { - [sym_do] = STATE(4439), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4439), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4439), - [sym_lambda] = STATE(4439), - [sym__application] = STATE(4439), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3393] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(7123), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), }, [3394] = { - [anon_sym_RPAREN] = ACTIONS(7118), + [anon_sym_COLON] = ACTIONS(7125), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7117), [sym_pragma] = ACTIONS(3), }, [3395] = { - [anon_sym_COLON] = ACTIONS(7120), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(4431), + [sym_do] = STATE(4431), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4431), + [sym_lambda] = STATE(4431), + [sym__application] = STATE(4431), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [3396] = { - [anon_sym_COLON] = ACTIONS(7122), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7114), + [sym_let] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(3429), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), [sym_pragma] = ACTIONS(3), }, [3397] = { - [sym_do] = STATE(4443), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4443), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4443), - [sym_lambda] = STATE(4443), - [sym__application] = STATE(4443), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3398] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3399] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7127), }, [3400] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(7127), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3401] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(7127), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7124), [sym_pragma] = ACTIONS(3), }, [3402] = { - [sym__field_assignments1] = STATE(4445), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7124), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7127), }, [3403] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4434), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3404] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(7131), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [3405] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7127), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7126), }, [3406] = { - [anon_sym_RPAREN] = ACTIONS(7126), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3407] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4448), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7128), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7133), [sym_pragma] = ACTIONS(3), }, [3408] = { - [anon_sym_LBRACE] = ACTIONS(7130), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2122), + [sym__atom_no_curly] = STATE(2122), + [sym_literal] = STATE(2112), + [sym_record_assignments] = STATE(2112), + [sym_atom] = STATE(3408), + [aux_sym__open_args1_repeat1] = STATE(3408), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7135), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7138), + [anon_sym_quoteTerm] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7141), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_LPAREN] = ACTIONS(7144), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7147), + [sym_qualified_name] = ACTIONS(7135), + [anon_sym_quote] = ACTIONS(7135), + [anon_sym_3] = ACTIONS(7150), + [anon_sym_Prop] = ACTIONS(7135), + [sym__const_ellipsis] = ACTIONS(7135), + [anon_sym_record] = ACTIONS(7153), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(7156), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(7159), + [anon_sym_unquote] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7162), + [aux_sym_string_token1] = ACTIONS(7165), + [anon_sym_Set] = ACTIONS(7135), + [anon_sym_module] = ACTIONS(1527), }, [3409] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7126), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(1011), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1026), + [sym__atom_no_curly] = STATE(1026), + [aux_sym__open_args1_repeat1] = STATE(1027), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1028), + [sym_record_assignments] = STATE(1011), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1599), + [anon_sym_quoteTerm] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(1603), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1599), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1609), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1611), + [sym_qualified_name] = ACTIONS(1599), + [anon_sym_quote] = ACTIONS(1599), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(1617), + [sym__const_ellipsis] = ACTIONS(1599), + [anon_sym_3] = ACTIONS(1619), + [anon_sym_] = ACTIONS(1621), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(1629), + [anon_sym_Set] = ACTIONS(1599), }, [3410] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7168), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7126), }, [3411] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_primitive] = STATE(4438), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4438), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4438), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4438), + [sym_abstract] = STATE(4438), + [sym_private] = STATE(4438), + [sym_function_clause] = STATE(4438), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4438), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4438), + [sym_data] = STATE(4438), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4438), + [sym_macro] = STATE(4438), + [sym_test] = STATE(4438), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4438), + [sym_record_signature_only] = STATE(4438), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4438), + [sym_syntax] = STATE(4438), + [sym_record] = STATE(4438), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4438), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4438), + [sym_mutual] = STATE(4438), + [sym_postulate] = STATE(4438), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3412] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7132), + [sym_let] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(3429), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), [sym_pragma] = ACTIONS(3), }, [3413] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7168), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7126), [sym_pragma] = ACTIONS(3), }, [3414] = { - [sym__atom_no_curly] = STATE(2102), - [sym_literal] = STATE(2092), - [sym_record_assignments] = STATE(2092), - [sym__atom_curly] = STATE(2102), - [sym_atom] = STATE(3414), - [aux_sym__open_args1_repeat1] = STATE(3414), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7137), - [anon_sym_unquote] = ACTIONS(7134), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(7140), - [anon_sym_Set] = ACTIONS(7134), - [anon_sym_LPAREN] = ACTIONS(7143), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7134), - [anon_sym_quoteTerm] = ACTIONS(7134), - [anon_sym_quote] = ACTIONS(7134), - [sym__const_ellipsis] = ACTIONS(7134), - [anon_sym_record] = ACTIONS(7146), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_] = ACTIONS(7149), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_LPAREN_PIPE] = ACTIONS(7155), - [anon_sym_LBRACE] = ACTIONS(7158), - [anon_sym_3] = ACTIONS(7161), - [aux_sym_string_token1] = ACTIONS(7164), - [anon_sym_Prop] = ACTIONS(7134), - [anon_sym_module] = ACTIONS(1683), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3415] = { - [sym_literal] = STATE(2108), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2118), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2119), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2120), - [sym__atom_curly] = STATE(2118), - [sym_record_assignments] = STATE(2108), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3273), - [anon_sym_unquote] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(3275), - [anon_sym_Set] = ACTIONS(3273), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3279), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3273), - [anon_sym_quoteTerm] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3273), - [sym__const_ellipsis] = ACTIONS(3273), - [anon_sym_record] = ACTIONS(3281), - [anon_sym_QMARK] = ACTIONS(3273), - [anon_sym_] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3285), - [anon_sym_LPAREN_PIPE] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(3291), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(3273), - [anon_sym_3] = ACTIONS(3293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7170), + [sym_pragma] = ACTIONS(3), }, [3416] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__field_assignments1] = STATE(4440), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7170), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), }, [3417] = { - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7167), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3418] = { - [anon_sym_RPAREN] = ACTIONS(7167), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [3419] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4453), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7169), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4442), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7172), }, [3420] = { - [anon_sym_LBRACE] = ACTIONS(7171), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [3421] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7167), - [sym_pragma] = ACTIONS(3), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4443), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(7172), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [3422] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7167), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4445), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7174), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3423] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4446), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [3424] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7173), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4447), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7176), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3425] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7167), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4448), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [3426] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_literal] = STATE(3418), + [sym_record_assignments] = STATE(3418), + [sym_atom] = STATE(4441), + [anon_sym__] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7178), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5523), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_LPAREN] = ACTIONS(7180), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_Prop] = ACTIONS(5519), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_record] = ACTIONS(5527), + [anon_sym_] = ACTIONS(7182), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_DOT] = ACTIONS(7184), + [anon_sym_LBRACE] = ACTIONS(7186), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), }, [3427] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7175), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4455), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3428] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [3429] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7177), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(3418), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(3431), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_record_assignments] = STATE(3418), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_] = ACTIONS(7190), + [anon_sym__] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7192), + [anon_sym_LPAREN] = ACTIONS(7194), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_DOT] = ACTIONS(7184), + [anon_sym_LBRACE] = ACTIONS(7196), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), }, [3430] = { - [sym_primitive] = STATE(4458), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4458), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4458), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4458), - [sym_abstract] = STATE(4458), - [sym_private] = STATE(4458), - [sym_function_clause] = STATE(4458), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4458), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4458), - [sym_data] = STATE(4458), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4458), - [sym_macro] = STATE(4458), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4458), - [sym_record_signature_only] = STATE(4458), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4458), - [sym_syntax] = STATE(4458), - [sym_record] = STATE(4458), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4458), - [sym_generalize] = STATE(4458), - [sym_mutual] = STATE(4458), - [sym_postulate] = STATE(4458), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7198), + [anon_sym_PIPE] = ACTIONS(479), }, [3431] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [3432] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7177), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7198), }, [3433] = { - [anon_sym_COLON] = ACTIONS(7179), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7181), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3434] = { - [anon_sym_COLON] = ACTIONS(7183), - [anon_sym_2] = ACTIONS(7181), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), [sym_pragma] = ACTIONS(3), }, [3435] = { - [sym_do] = STATE(4462), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4462), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4462), - [sym_lambda] = STATE(4462), - [sym__application] = STATE(4462), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7200), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7202), }, [3436] = { - [sym_do] = STATE(4463), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4463), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4463), - [sym_lambda] = STATE(4463), - [sym__application] = STATE(4463), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7204), + [anon_sym_2] = ACTIONS(7202), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3437] = { + [sym__expr2] = STATE(4464), [sym_do] = STATE(4464), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), [sym_let] = STATE(4464), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4464), [sym_lambda] = STATE(4464), [sym__application] = STATE(4464), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3438] = { + [sym__expr2] = STATE(4465), [sym_do] = STATE(4465), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(4465), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4465), [sym_lambda] = STATE(4465), [sym__application] = STATE(4465), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3439] = { - [anon_sym_module] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [sym__expr2] = STATE(4466), + [sym_do] = STATE(4466), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4466), + [sym_lambda] = STATE(4466), + [sym__application] = STATE(4466), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3440] = { - [anon_sym_RPAREN] = ACTIONS(7185), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4467), + [sym_do] = STATE(4467), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4467), + [sym_lambda] = STATE(4467), + [sym__application] = STATE(4467), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3441] = { - [anon_sym_COLON] = ACTIONS(7187), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3442] = { - [anon_sym_COLON] = ACTIONS(7189), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_COLON] = ACTIONS(7206), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7181), [sym_pragma] = ACTIONS(3), }, [3443] = { - [sym_do] = STATE(4469), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4469), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4469), - [sym_lambda] = STATE(4469), - [sym__application] = STATE(4469), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(7208), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3444] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [anon_sym_COLON] = ACTIONS(7210), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7202), + [sym_pragma] = ACTIONS(3), }, [3445] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), + [sym__expr2] = STATE(4471), + [sym_do] = STATE(4471), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4471), + [sym_lambda] = STATE(4471), + [sym__application] = STATE(4471), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), + }, + [3446] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), - }, - [3446] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + [sym_pragma] = ACTIONS(3), }, [3447] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7191), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3448] = { - [sym__field_assignments1] = STATE(4471), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7191), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7212), }, [3449] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(7212), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3450] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_PIPE_RPAREN] = ACTIONS(7212), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [3451] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7193), + [anon_sym_4] = ACTIONS(7212), }, [3452] = { - [anon_sym_RPAREN] = ACTIONS(7193), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4474), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7214), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3453] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4474), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7216), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3454] = { - [anon_sym_LBRACE] = ACTIONS(7197), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7212), [sym_pragma] = ACTIONS(3), }, [3455] = { + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7193), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3456] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7218), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7193), }, [3457] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__atom_curly] = STATE(2159), + [sym__atom_no_curly] = STATE(2159), + [sym_literal] = STATE(2149), + [sym_record_assignments] = STATE(2149), + [sym_atom] = STATE(3457), + [aux_sym__open_args1_repeat1] = STATE(3457), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7220), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7223), + [anon_sym_quoteTerm] = ACTIONS(7220), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7226), + [anon_sym_QMARK] = ACTIONS(7220), + [anon_sym_LPAREN] = ACTIONS(7229), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7232), + [sym_qualified_name] = ACTIONS(7220), + [anon_sym_quote] = ACTIONS(7220), + [anon_sym_3] = ACTIONS(7235), + [anon_sym_Prop] = ACTIONS(7220), + [sym__const_ellipsis] = ACTIONS(7220), + [anon_sym_record] = ACTIONS(7238), + [anon_sym_] = ACTIONS(7241), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(7244), + [anon_sym_unquote] = ACTIONS(7220), + [anon_sym_LBRACE] = ACTIONS(7247), + [aux_sym_string_token1] = ACTIONS(7250), + [anon_sym_Set] = ACTIONS(7220), + [anon_sym_module] = ACTIONS(1527), }, [3458] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7199), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(2183), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2193), + [sym__atom_no_curly] = STATE(2193), + [aux_sym__open_args1_repeat1] = STATE(2194), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2195), + [sym_record_assignments] = STATE(2183), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3412), + [anon_sym_quoteTerm] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(3414), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3418), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3420), + [sym_qualified_name] = ACTIONS(3412), + [anon_sym_quote] = ACTIONS(3412), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(3422), + [sym__const_ellipsis] = ACTIONS(3412), + [anon_sym_3] = ACTIONS(3424), + [anon_sym_] = ACTIONS(3426), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3430), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(3432), + [anon_sym_Set] = ACTIONS(3412), }, [3459] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7253), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7193), [sym_pragma] = ACTIONS(3), }, [3460] = { - [sym__atom_no_curly] = STATE(2168), - [sym_literal] = STATE(2158), - [sym_record_assignments] = STATE(2158), - [sym__atom_curly] = STATE(2168), - [sym_atom] = STATE(3460), - [aux_sym__open_args1_repeat1] = STATE(3460), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7201), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7204), - [anon_sym_unquote] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(7207), - [anon_sym_Set] = ACTIONS(7201), - [anon_sym_LPAREN] = ACTIONS(7210), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7201), - [anon_sym_quoteTerm] = ACTIONS(7201), - [anon_sym_quote] = ACTIONS(7201), - [sym__const_ellipsis] = ACTIONS(7201), - [anon_sym_record] = ACTIONS(7213), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_] = ACTIONS(7216), - [anon_sym_DOT] = ACTIONS(7219), - [anon_sym_LPAREN_PIPE] = ACTIONS(7222), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_3] = ACTIONS(7228), - [aux_sym_string_token1] = ACTIONS(7231), - [anon_sym_Prop] = ACTIONS(7201), - [anon_sym_module] = ACTIONS(1683), + [sym_primitive] = STATE(4478), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4478), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4478), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4478), + [sym_abstract] = STATE(4478), + [sym_private] = STATE(4478), + [sym_function_clause] = STATE(4478), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4478), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4478), + [sym_data] = STATE(4478), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4478), + [sym_macro] = STATE(4478), + [sym_test] = STATE(4478), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4478), + [sym_record_signature_only] = STATE(4478), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4478), + [sym_syntax] = STATE(4478), + [sym_record] = STATE(4478), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4478), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4478), + [sym_mutual] = STATE(4478), + [sym_postulate] = STATE(4478), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3461] = { - [sym_literal] = STATE(2174), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1041), [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2184), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2185), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2186), - [sym__atom_curly] = STATE(2184), - [sym_record_assignments] = STATE(2174), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3379), - [anon_sym_unquote] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(3381), - [anon_sym_Set] = ACTIONS(3379), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3379), - [anon_sym_quoteTerm] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3379), - [sym__const_ellipsis] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LPAREN_PIPE] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(3397), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(3379), - [anon_sym_3] = ACTIONS(3399), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + [sym_pragma] = ACTIONS(3), }, [3462] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7253), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), }, [3463] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7234), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3464] = { - [anon_sym_RPAREN] = ACTIONS(7234), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7255), [sym_pragma] = ACTIONS(3), }, [3465] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4479), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7236), + [sym__field_assignments1] = STATE(4480), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7255), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3466] = { - [anon_sym_LBRACE] = ACTIONS(7238), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3467] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7234), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3468] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7234), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7257), }, [3469] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(7257), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3470] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(7257), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7240), [sym_pragma] = ACTIONS(3), }, [3471] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4483), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7259), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7234), [sym_pragma] = ACTIONS(3), }, [3472] = { - [sym__newline] = ACTIONS(7242), + [anon_sym_LBRACE] = ACTIONS(7261), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7242), }, [3473] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7244), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7257), }, [3474] = { - [sym_primitive] = STATE(4483), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4483), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4483), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4483), - [sym_abstract] = STATE(4483), - [sym_private] = STATE(4483), - [sym_function_clause] = STATE(4483), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4483), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4483), - [sym_data] = STATE(4483), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4483), - [sym_macro] = STATE(4483), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4483), - [sym_record_signature_only] = STATE(4483), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4483), - [sym_syntax] = STATE(4483), - [sym_record] = STATE(4483), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4483), - [sym_generalize] = STATE(4483), - [sym_mutual] = STATE(4483), - [sym_postulate] = STATE(4483), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7257), + [sym_pragma] = ACTIONS(3), }, [3475] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3476] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7244), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7263), [sym_pragma] = ACTIONS(3), }, [3477] = { - [anon_sym_COLON] = ACTIONS(7246), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7248), }, [3478] = { - [anon_sym_COLON] = ACTIONS(7250), - [anon_sym_2] = ACTIONS(7248), + [anon_sym_COLON] = ACTIONS(7265), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7267), }, [3479] = { - [sym_do] = STATE(4487), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4487), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4487), - [sym_lambda] = STATE(4487), - [sym__application] = STATE(4487), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_2] = ACTIONS(7267), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3480] = { - [sym_do] = STATE(4488), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4488), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4488), - [sym_lambda] = STATE(4488), - [sym__application] = STATE(4488), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [3481] = { + [sym__expr2] = STATE(4489), [sym_do] = STATE(4489), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), [sym_let] = STATE(4489), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4489), [sym_lambda] = STATE(4489), [sym__application] = STATE(4489), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, - [3482] = { + [3481] = { + [sym__expr2] = STATE(4490), [sym_do] = STATE(4490), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(4490), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4490), [sym_lambda] = STATE(4490), [sym__application] = STATE(4490), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [3482] = { + [sym__expr2] = STATE(4491), + [sym_do] = STATE(4491), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4491), + [sym_lambda] = STATE(4491), + [sym__application] = STATE(4491), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3483] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [sym__expr2] = STATE(4492), + [sym_do] = STATE(4492), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4492), + [sym_lambda] = STATE(4492), + [sym__application] = STATE(4492), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3484] = { - [anon_sym_RPAREN] = ACTIONS(7252), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym__newline] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3485] = { - [anon_sym_COLON] = ACTIONS(7254), + [anon_sym_COLON] = ACTIONS(7271), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3486] = { - [anon_sym_COLON] = ACTIONS(7256), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(7273), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7248), [sym_pragma] = ACTIONS(3), }, [3487] = { - [sym_do] = STATE(4494), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4494), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4494), - [sym_lambda] = STATE(4494), - [sym__application] = STATE(4494), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [3488] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7267), + [sym_pragma] = ACTIONS(3), + }, + [3488] = { + [sym__expr2] = STATE(4496), + [sym_do] = STATE(4496), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4496), + [sym_lambda] = STATE(4496), + [sym__application] = STATE(4496), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [3489] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), + [sym_pragma] = ACTIONS(3), }, [3490] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3491] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3492] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7258), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7277), }, [3493] = { - [sym__field_assignments1] = STATE(4496), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(7277), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3494] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_PIPE_RPAREN] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3495] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_4] = ACTIONS(7277), }, [3496] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4499), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7279), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7260), }, [3497] = { - [anon_sym_RPAREN] = ACTIONS(7260), + [anon_sym_LBRACE] = ACTIONS(7281), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3498] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4499), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7262), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7277), [sym_pragma] = ACTIONS(3), }, [3499] = { - [anon_sym_LBRACE] = ACTIONS(7264), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3500] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7260), + [anon_sym_RBRACE] = ACTIONS(7283), [sym_pragma] = ACTIONS(3), }, [3501] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7260), + [sym__atom_curly] = STATE(2221), + [sym__atom_no_curly] = STATE(2221), + [sym_literal] = STATE(2211), + [sym_record_assignments] = STATE(2211), + [sym_atom] = STATE(3501), + [aux_sym__open_args1_repeat1] = STATE(3501), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(7285), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7288), + [anon_sym_quoteTerm] = ACTIONS(7285), + [sym__newline] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(7291), + [anon_sym_QMARK] = ACTIONS(7285), + [anon_sym_LPAREN] = ACTIONS(7294), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7297), + [sym_qualified_name] = ACTIONS(7285), + [anon_sym_quote] = ACTIONS(7285), + [anon_sym_3] = ACTIONS(7300), + [anon_sym_Prop] = ACTIONS(7285), + [sym__const_ellipsis] = ACTIONS(7285), + [anon_sym_record] = ACTIONS(7303), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7309), + [anon_sym_unquote] = ACTIONS(7285), + [anon_sym_LBRACE] = ACTIONS(7312), + [aux_sym_string_token1] = ACTIONS(7315), + [anon_sym_Set] = ACTIONS(7285), + [anon_sym_module] = ACTIONS(1527), }, [3502] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_literal] = STATE(1055), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1070), + [sym__atom_no_curly] = STATE(1070), + [aux_sym__open_args1_repeat1] = STATE(1071), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1072), + [sym_record_assignments] = STATE(1055), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1770), + [anon_sym_quoteTerm] = ACTIONS(1770), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(1774), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1782), + [sym_qualified_name] = ACTIONS(1770), + [anon_sym_quote] = ACTIONS(1770), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(1788), + [sym__const_ellipsis] = ACTIONS(1770), + [anon_sym_3] = ACTIONS(1790), + [anon_sym_] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1796), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(1800), + [anon_sym_Set] = ACTIONS(1770), }, [3503] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7318), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7266), [sym_pragma] = ACTIONS(3), }, [3504] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7260), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4503), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4503), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4503), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4503), + [sym_abstract] = STATE(4503), + [sym_private] = STATE(4503), + [sym_function_clause] = STATE(4503), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4503), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4503), + [sym_data] = STATE(4503), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4503), + [sym_macro] = STATE(4503), + [sym_test] = STATE(4503), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4503), + [sym_record_signature_only] = STATE(4503), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4503), + [sym_syntax] = STATE(4503), + [sym_record] = STATE(4503), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4503), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4503), + [sym_mutual] = STATE(4503), + [sym_postulate] = STATE(4503), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3505] = { - [sym__atom_no_curly] = STATE(2226), - [sym_literal] = STATE(2216), - [sym_record_assignments] = STATE(2216), - [sym__atom_curly] = STATE(2226), - [sym_atom] = STATE(3505), - [aux_sym__open_args1_repeat1] = STATE(3505), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(7268), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7271), - [anon_sym_unquote] = ACTIONS(7268), - [sym__newline] = ACTIONS(3096), - [aux_sym_integer_token1] = ACTIONS(7274), - [anon_sym_Set] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7277), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7268), - [anon_sym_quoteTerm] = ACTIONS(7268), - [anon_sym_quote] = ACTIONS(7268), - [sym__const_ellipsis] = ACTIONS(7268), - [anon_sym_record] = ACTIONS(7280), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(7283), - [anon_sym_QMARK] = ACTIONS(7268), - [anon_sym_DOT] = ACTIONS(7286), - [anon_sym_LPAREN_PIPE] = ACTIONS(7289), - [anon_sym_LBRACE] = ACTIONS(7292), - [anon_sym_3] = ACTIONS(7295), - [aux_sym_string_token1] = ACTIONS(7298), - [anon_sym_Prop] = ACTIONS(7268), - [anon_sym_module] = ACTIONS(1683), - }, - [3506] = { - [sym_literal] = STATE(1053), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1068), [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1069), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1070), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1071), - [sym__atom_curly] = STATE(1069), - [sym_record_assignments] = STATE(1053), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1791), - [anon_sym_unquote] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(1797), - [anon_sym_Set] = ACTIONS(1791), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1791), - [anon_sym_quoteTerm] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1791), - [sym__const_ellipsis] = ACTIONS(1791), - [anon_sym_record] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_LPAREN_PIPE] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(1817), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(1791), - [anon_sym_3] = ACTIONS(1821), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), + [sym_pragma] = ACTIONS(3), + }, + [3506] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3507] = { + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + }, + [3508] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7320), + [sym_pragma] = ACTIONS(3), + }, + [3509] = { + [sym__field_assignments1] = STATE(4505), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7320), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [3510] = { + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + }, + [3511] = { [anon_sym_COLON] = ACTIONS(119), [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), [anon_sym_with] = ACTIONS(119), [anon_sym_] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [anon_sym_where] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), [anon_sym_module] = ACTIONS(119), }, - [3508] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4503), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7301), - }, - [3509] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), - }, - [3510] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4504), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(7301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [3511] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4506), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7303), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, [3512] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), [sym_expr] = STATE(4507), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7322), }, [3513] = { - [sym__atom_no_curly] = STATE(3518), - [sym_literal] = STATE(3507), - [sym_record_assignments] = STATE(3507), - [sym__atom_curly] = STATE(3518), - [sym_atom] = STATE(4502), - [anon_sym__] = ACTIONS(5599), - [anon_sym_unquote] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7307), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(7309), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [anon_sym_] = ACTIONS(7311), - [anon_sym_DOT] = ACTIONS(7313), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(7315), - [anon_sym_3] = ACTIONS(5619), - [aux_sym_string_token1] = ACTIONS(5617), - [anon_sym_Prop] = ACTIONS(5599), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [3514] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4513), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4508), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(7322), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [3515] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4515), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7317), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4510), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7324), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3516] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4516), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4511), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [3517] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7319), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4512), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7326), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3518] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4513), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3519] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_literal] = STATE(3507), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(3518), - [sym_record_assignments] = STATE(3507), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1799), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [anon_sym_] = ACTIONS(7321), - [anon_sym__] = ACTIONS(5599), - [anon_sym_unquote] = ACTIONS(5599), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7323), - [anon_sym_LPAREN] = ACTIONS(7325), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(7313), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_literal] = STATE(3511), + [sym_record_assignments] = STATE(3511), + [sym_atom] = STATE(4506), + [anon_sym__] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7328), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5621), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(7330), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_Prop] = ACTIONS(5617), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_record] = ACTIONS(5625), + [anon_sym_] = ACTIONS(7332), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(7334), + [anon_sym_LBRACE] = ACTIONS(7336), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), }, [3520] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(467), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4520), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7338), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3521] = { - [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7319), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [3522] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_literal] = STATE(3511), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(3524), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_record_assignments] = STATE(3511), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_] = ACTIONS(7340), + [anon_sym__] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7342), + [anon_sym_LPAREN] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(7334), + [anon_sym_LBRACE] = ACTIONS(7346), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), }, [3523] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7329), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(479), }, [3524] = { - [sym_primitive] = STATE(4523), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4523), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4523), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4523), - [sym_abstract] = STATE(4523), - [sym_private] = STATE(4523), - [sym_function_clause] = STATE(4523), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4523), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4523), - [sym_data] = STATE(4523), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4523), - [sym_macro] = STATE(4523), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4523), - [sym_record_signature_only] = STATE(4523), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4523), - [sym_syntax] = STATE(4523), - [sym_record] = STATE(4523), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4523), - [sym_generalize] = STATE(4523), - [sym_mutual] = STATE(4523), - [sym_postulate] = STATE(4523), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [3525] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7348), + }, + [3526] = { + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + }, + [3527] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(1332), [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), - }, - [3526] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7329), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [3527] = { - [anon_sym_COLON] = ACTIONS(7331), - [sym_comment] = ACTIONS(3), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7333), }, [3528] = { - [anon_sym_COLON] = ACTIONS(7335), - [anon_sym_2] = ACTIONS(7333), + [anon_sym_COLON] = ACTIONS(7350), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7352), }, [3529] = { - [sym_do] = STATE(4527), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4527), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4527), - [sym_lambda] = STATE(4527), - [sym__application] = STATE(4527), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7354), + [anon_sym_2] = ACTIONS(7352), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3530] = { - [sym_do] = STATE(4528), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4528), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4528), - [sym_lambda] = STATE(4528), - [sym__application] = STATE(4528), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [3531] = { + [sym__expr2] = STATE(4529), [sym_do] = STATE(4529), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), [sym_let] = STATE(4529), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4529), [sym_lambda] = STATE(4529), [sym__application] = STATE(4529), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, - [3532] = { + [3531] = { + [sym__expr2] = STATE(4530), [sym_do] = STATE(4530), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), [sym_let] = STATE(4530), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4530), [sym_lambda] = STATE(4530), [sym__application] = STATE(4530), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [3532] = { + [sym__expr2] = STATE(4531), + [sym_do] = STATE(4531), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4531), + [sym_lambda] = STATE(4531), + [sym__application] = STATE(4531), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3533] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [sym__expr2] = STATE(4532), + [sym_do] = STATE(4532), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4532), + [sym_lambda] = STATE(4532), + [sym__application] = STATE(4532), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3534] = { - [anon_sym_RPAREN] = ACTIONS(7337), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym__newline] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3535] = { - [anon_sym_COLON] = ACTIONS(7339), + [anon_sym_COLON] = ACTIONS(7356), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3536] = { - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_RPAREN] = ACTIONS(7358), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7333), [sym_pragma] = ACTIONS(3), }, [3537] = { - [sym_do] = STATE(4534), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4534), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4534), - [sym_lambda] = STATE(4534), - [sym__application] = STATE(4534), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(7360), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7352), + [sym_pragma] = ACTIONS(3), }, [3538] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1089), - [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [sym__expr2] = STATE(4536), + [sym_do] = STATE(4536), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4536), + [sym_lambda] = STATE(4536), + [sym__application] = STATE(4536), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [3539] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(1873), [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + [sym_pragma] = ACTIONS(3), }, [3540] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3541] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7343), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7362), }, [3542] = { - [sym__field_assignments1] = STATE(4536), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_RPAREN] = ACTIONS(7362), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3543] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_PIPE_RPAREN] = ACTIONS(7362), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3544] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_4] = ACTIONS(7362), }, [3545] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4539), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7364), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7345), }, [3546] = { - [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LBRACE] = ACTIONS(7366), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3547] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4539), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7347), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7362), [sym_pragma] = ACTIONS(3), }, [3548] = { - [anon_sym_LBRACE] = ACTIONS(7349), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3549] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7368), [sym_pragma] = ACTIONS(3), }, [3550] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7345), + [sym__atom_curly] = STATE(2258), + [sym__atom_no_curly] = STATE(2258), + [sym_literal] = STATE(2248), + [sym_record_assignments] = STATE(2248), + [sym_atom] = STATE(3550), + [aux_sym__open_args1_repeat1] = STATE(3550), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(7370), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7373), + [anon_sym_quoteTerm] = ACTIONS(7370), + [sym__newline] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(7376), + [anon_sym_QMARK] = ACTIONS(7370), + [anon_sym_LPAREN] = ACTIONS(7379), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7382), + [sym_qualified_name] = ACTIONS(7370), + [anon_sym_quote] = ACTIONS(7370), + [anon_sym_3] = ACTIONS(7385), + [anon_sym_Prop] = ACTIONS(7370), + [sym__const_ellipsis] = ACTIONS(7370), + [anon_sym_record] = ACTIONS(7388), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(7391), + [anon_sym_DOT] = ACTIONS(7394), + [anon_sym_unquote] = ACTIONS(7370), + [anon_sym_LBRACE] = ACTIONS(7397), + [aux_sym_string_token1] = ACTIONS(7400), + [anon_sym_Set] = ACTIONS(7370), + [anon_sym_module] = ACTIONS(1527), }, [3551] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_literal] = STATE(2282), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2292), + [sym__atom_no_curly] = STATE(2292), + [aux_sym__open_args1_repeat1] = STATE(2293), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2294), + [sym_record_assignments] = STATE(2282), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3558), + [anon_sym_quoteTerm] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(3560), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(3558), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3564), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3566), + [sym_qualified_name] = ACTIONS(3558), + [anon_sym_quote] = ACTIONS(3558), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(3568), + [sym__const_ellipsis] = ACTIONS(3558), + [anon_sym_3] = ACTIONS(3570), + [anon_sym_] = ACTIONS(3572), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3558), + [anon_sym_DOT] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3576), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(3578), + [anon_sym_Set] = ACTIONS(3558), }, [3552] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7403), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7351), [sym_pragma] = ACTIONS(3), }, [3553] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7345), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4543), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4543), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4543), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4543), + [sym_abstract] = STATE(4543), + [sym_private] = STATE(4543), + [sym_function_clause] = STATE(4543), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4543), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4543), + [sym_data] = STATE(4543), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4543), + [sym_macro] = STATE(4543), + [sym_test] = STATE(4543), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4543), + [sym_record_signature_only] = STATE(4543), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4543), + [sym_syntax] = STATE(4543), + [sym_record] = STATE(4543), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4543), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4543), + [sym_mutual] = STATE(4543), + [sym_postulate] = STATE(4543), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3554] = { - [sym__atom_no_curly] = STATE(2269), - [sym_literal] = STATE(2259), - [sym_record_assignments] = STATE(2259), - [sym__atom_curly] = STATE(2269), - [sym_atom] = STATE(3554), - [aux_sym__open_args1_repeat1] = STATE(3554), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(7353), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7356), - [anon_sym_unquote] = ACTIONS(7353), - [sym__newline] = ACTIONS(3096), - [aux_sym_integer_token1] = ACTIONS(7359), - [anon_sym_Set] = ACTIONS(7353), - [anon_sym_LPAREN] = ACTIONS(7362), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7353), - [anon_sym_quoteTerm] = ACTIONS(7353), - [anon_sym_quote] = ACTIONS(7353), - [sym__const_ellipsis] = ACTIONS(7353), - [anon_sym_record] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7353), - [anon_sym_] = ACTIONS(7368), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_LPAREN_PIPE] = ACTIONS(7374), - [anon_sym_LBRACE] = ACTIONS(7377), - [anon_sym_3] = ACTIONS(7380), - [aux_sym_string_token1] = ACTIONS(7383), - [anon_sym_Prop] = ACTIONS(7353), - [anon_sym_module] = ACTIONS(1683), - }, - [3555] = { - [sym_literal] = STATE(2275), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1088), [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2285), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2286), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), + [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1090), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2287), - [sym__atom_curly] = STATE(2285), - [sym_record_assignments] = STATE(2275), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3531), - [anon_sym_unquote] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(3533), - [anon_sym_Set] = ACTIONS(3531), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3531), - [anon_sym_quoteTerm] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3531), - [sym__const_ellipsis] = ACTIONS(3531), - [anon_sym_record] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_] = ACTIONS(3541), - [anon_sym_DOT] = ACTIONS(3543), - [anon_sym_LPAREN_PIPE] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(3549), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(3531), - [anon_sym_3] = ACTIONS(3551), - }, - [3556] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + }, + [3555] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7403), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), + }, + [3556] = { + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3557] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7405), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7386), }, [3558] = { - [anon_sym_RPAREN] = ACTIONS(7386), + [sym__field_assignments1] = STATE(4545), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7405), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3559] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4544), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7388), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3560] = { - [anon_sym_LBRACE] = ACTIONS(7390), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3561] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7386), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7407), }, [3562] = { + [anon_sym_RPAREN] = ACTIONS(7407), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7386), }, [3563] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_PIPE_RPAREN] = ACTIONS(7407), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3564] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4548), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7409), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7392), [sym_pragma] = ACTIONS(3), }, [3565] = { + [anon_sym_LBRACE] = ACTIONS(7411), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7386), [sym_pragma] = ACTIONS(3), }, [3566] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7407), }, [3567] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7394), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7407), [sym_pragma] = ACTIONS(3), }, [3568] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4548), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3569] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4861), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7413), + [sym_pragma] = ACTIONS(3), }, [3570] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4549), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7415), }, [3571] = { - [anon_sym_COLON] = ACTIONS(7396), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7398), + [anon_sym_2] = ACTIONS(7415), [sym_pragma] = ACTIONS(3), }, [3572] = { - [anon_sym_COLON] = ACTIONS(7400), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7398), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3573] = { - [anon_sym_COLON] = ACTIONS(7402), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), }, [3574] = { - [anon_sym_COLON] = ACTIONS(7404), - [anon_sym_2] = ACTIONS(7398), + [anon_sym_COLON] = ACTIONS(7417), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7419), }, [3575] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3633), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_2] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3576] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4555), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4555), + [sym_do] = STATE(4555), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4555), + [sym_lambda] = STATE(4555), + [sym__application] = STATE(4555), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3577] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4556), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4556), + [sym_do] = STATE(4556), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4556), + [sym_lambda] = STATE(4556), + [sym__application] = STATE(4556), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3578] = { - [anon_sym_COLON] = ACTIONS(5675), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5667), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4557), + [sym_do] = STATE(4557), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4557), + [sym_lambda] = STATE(4557), + [sym__application] = STATE(4557), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3579] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym_SEMI] = ACTIONS(3991), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_3] = ACTIONS(3989), + [sym__expr2] = STATE(4558), + [sym_do] = STATE(4558), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4558), + [sym_lambda] = STATE(4558), + [sym__application] = STATE(4558), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3580] = { + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7406), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [3581] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3582] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(7425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3583] = { + [anon_sym_COLON] = ACTIONS(7427), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7408), + [anon_sym_RBRACE] = ACTIONS(7419), [sym_pragma] = ACTIONS(3), }, [3584] = { - [sym__field_assignments1] = STATE(4559), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7408), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(4562), + [sym_do] = STATE(4562), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4562), + [sym_lambda] = STATE(4562), + [sym__application] = STATE(4562), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [3585] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_SEMI] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), + [sym_pragma] = ACTIONS(3), }, [3586] = { - [anon_sym_COLON] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_RPAREN] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3587] = { - [anon_sym_COLON] = ACTIONS(253), - [anon_sym_SEMI] = ACTIONS(255), - [anon_sym_RPAREN] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_RBRACE_RBRACE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_3] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7429), }, [3588] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4561), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7410), + [anon_sym_RPAREN] = ACTIONS(7429), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3589] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4562), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7410), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(7429), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3590] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4564), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7412), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7429), }, [3591] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4565), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7414), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4565), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7431), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3592] = { - [sym__atom_no_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym_record_assignments] = STATE(3586), - [sym__atom_curly] = STATE(3596), - [sym_atom] = STATE(4560), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_3] = ACTIONS(5740), - [aux_sym_string_token1] = ACTIONS(5738), - [anon_sym_Prop] = ACTIONS(5720), + [anon_sym_LBRACE] = ACTIONS(7433), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3593] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4566), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7429), + [sym_pragma] = ACTIONS(3), }, [3594] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4568), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7416), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3595] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4569), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7435), + [sym_pragma] = ACTIONS(3), }, [3596] = { - [anon_sym_COLON] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_RPAREN] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_RBRACE_RBRACE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_3] = ACTIONS(439), + [sym__atom_curly] = STATE(2323), + [sym__atom_no_curly] = STATE(2323), + [sym_literal] = STATE(2313), + [sym_record_assignments] = STATE(2313), + [sym_atom] = STATE(3596), + [aux_sym__open_args1_repeat1] = STATE(3596), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7437), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7440), + [anon_sym_quoteTerm] = ACTIONS(7437), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7443), + [anon_sym_QMARK] = ACTIONS(7437), + [anon_sym_LPAREN] = ACTIONS(7446), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(7449), + [sym_qualified_name] = ACTIONS(7437), + [anon_sym_quote] = ACTIONS(7437), + [anon_sym_3] = ACTIONS(7452), + [anon_sym_Prop] = ACTIONS(7437), + [sym__const_ellipsis] = ACTIONS(7437), + [anon_sym_record] = ACTIONS(7455), + [anon_sym_] = ACTIONS(7458), + [anon_sym_DOT] = ACTIONS(7461), + [anon_sym_unquote] = ACTIONS(7437), + [anon_sym_LBRACE] = ACTIONS(7464), + [aux_sym_string_token1] = ACTIONS(7467), + [anon_sym_Set] = ACTIONS(7437), }, [3597] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5732), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_literal] = STATE(2347), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2357), + [sym__atom_no_curly] = STATE(2357), + [aux_sym__open_args1_repeat1] = STATE(2358), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2359), + [sym_record_assignments] = STATE(2347), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3664), + [anon_sym_quoteTerm] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(3666), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_QMARK] = ACTIONS(3664), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3672), + [sym_qualified_name] = ACTIONS(3664), + [anon_sym_quote] = ACTIONS(3664), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(3674), + [sym__const_ellipsis] = ACTIONS(3664), + [anon_sym_3] = ACTIONS(3676), + [anon_sym_] = ACTIONS(3678), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3682), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(3684), + [anon_sym_Set] = ACTIONS(3664), }, [3598] = { - [anon_sym_COLON] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_RPAREN] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_3] = ACTIONS(463), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7470), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3599] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_primitive] = STATE(4569), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4569), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4569), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4569), + [sym_abstract] = STATE(4569), + [sym_private] = STATE(4569), + [sym_function_clause] = STATE(4569), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4569), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4569), + [sym_data] = STATE(4569), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4569), + [sym_macro] = STATE(4569), + [sym_test] = STATE(4569), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4569), + [sym_record_signature_only] = STATE(4569), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4569), + [sym_syntax] = STATE(4569), + [sym_record] = STATE(4569), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4569), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4569), + [sym_mutual] = STATE(4569), + [sym_postulate] = STATE(4569), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3600] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7418), }, [3601] = { - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SEMI] = ACTIONS(6349), - [anon_sym_RPAREN] = ACTIONS(6349), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7470), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6349), - [anon_sym_2] = ACTIONS(6349), - [anon_sym_where] = ACTIONS(6349), - [anon_sym_PIPE_RPAREN] = ACTIONS(6349), - [anon_sym_4] = ACTIONS(6349), - [anon_sym_RBRACE] = ACTIONS(7422), }, [3602] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3603] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7472), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7424), }, [3604] = { + [sym__field_assignments1] = STATE(4571), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7472), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7424), [sym_pragma] = ACTIONS(3), }, [3605] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4572), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3606] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_4] = ACTIONS(6710), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [3607] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4573), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7474), }, [3608] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4574), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(7474), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3609] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4575), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym_PIPE_RPAREN] = ACTIONS(7474), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [3610] = { - [anon_sym_RPAREN] = ACTIONS(7424), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4574), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7476), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3611] = { + [anon_sym_LBRACE] = ACTIONS(7478), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7424), [sym_pragma] = ACTIONS(3), }, [3612] = { - [anon_sym_COLON] = ACTIONS(6804), - [anon_sym_SEMI] = ACTIONS(6804), - [anon_sym_RPAREN] = ACTIONS(6804), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6804), - [anon_sym_2] = ACTIONS(6804), - [anon_sym_where] = ACTIONS(6804), - [anon_sym_PIPE_RPAREN] = ACTIONS(6804), - [anon_sym_4] = ACTIONS(6804), - [anon_sym_RBRACE] = ACTIONS(7426), + [anon_sym_4] = ACTIONS(7474), }, [3613] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7474), + [sym_pragma] = ACTIONS(3), }, [3614] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7428), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [3615] = { - [sym_import_directive] = STATE(3620), - [aux_sym_module_macro_repeat1] = STATE(3620), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7480), + [sym_pragma] = ACTIONS(3), }, [3616] = { - [sym_import_directive] = STATE(4577), - [aux_sym_module_macro_repeat1] = STATE(4577), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4577), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(5020), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), - [sym_comment] = ACTIONS(3), }, [3617] = { - [sym_literal] = STATE(1375), - [sym_atom] = STATE(2358), - [sym__atom_curly] = STATE(1388), - [sym_import_directive] = STATE(4577), - [aux_sym_module_macro_repeat1] = STATE(4577), - [sym__open_args1] = STATE(4578), - [sym__atom_no_curly] = STATE(1388), - [sym_record_assignments] = STATE(1375), - [aux_sym__open_args1_repeat1] = STATE(2358), - [anon_sym__] = ACTIONS(2264), - [anon_sym_unquote] = ACTIONS(2264), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(5020), - [aux_sym_integer_token1] = ACTIONS(2270), - [anon_sym_Set] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2264), - [anon_sym_quoteTerm] = ACTIONS(2264), - [anon_sym_renaming] = ACTIONS(2276), - [anon_sym_quote] = ACTIONS(2264), - [sym__const_ellipsis] = ACTIONS(2264), - [anon_sym_record] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2264), - [anon_sym_] = ACTIONS(2280), - [anon_sym_DOT] = ACTIONS(3627), - [anon_sym_LPAREN_PIPE] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_hiding] = ACTIONS(2278), - [aux_sym_string_token1] = ACTIONS(2288), - [anon_sym_Prop] = ACTIONS(2264), - [anon_sym_3] = ACTIONS(2290), - [anon_sym_public] = ACTIONS(2292), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym_name] = ACTIONS(6797), }, [3618] = { - [anon_sym__] = ACTIONS(1157), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1155), - [anon_sym_unquote] = ACTIONS(1157), - [anon_sym_RPAREN] = ACTIONS(1155), - [aux_sym_integer_token1] = ACTIONS(1157), - [anon_sym_Set] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1157), - [anon_sym_quoteTerm] = ACTIONS(1157), - [anon_sym_renaming] = ACTIONS(1157), - [anon_sym_quote] = ACTIONS(1157), - [sym__const_ellipsis] = ACTIONS(1157), - [anon_sym_record] = ACTIONS(1157), - [anon_sym_using] = ACTIONS(1157), - [anon_sym_QMARK] = ACTIONS(1157), - [anon_sym_] = ACTIONS(1157), - [anon_sym_DOT] = ACTIONS(1157), - [anon_sym_LPAREN_PIPE] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_hiding] = ACTIONS(1157), - [aux_sym_string_token1] = ACTIONS(1155), - [anon_sym_Prop] = ACTIONS(1157), - [anon_sym_3] = ACTIONS(1157), - [anon_sym_public] = ACTIONS(1157), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4578), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3619] = { - [anon_sym__] = ACTIONS(5028), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5026), - [anon_sym_unquote] = ACTIONS(5028), - [anon_sym_RPAREN] = ACTIONS(5026), - [aux_sym_integer_token1] = ACTIONS(5028), - [anon_sym_Set] = ACTIONS(5028), - [anon_sym_LPAREN] = ACTIONS(5028), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5028), - [anon_sym_quoteTerm] = ACTIONS(5028), - [anon_sym_renaming] = ACTIONS(5028), - [anon_sym_quote] = ACTIONS(5028), - [sym__const_ellipsis] = ACTIONS(5028), - [anon_sym_record] = ACTIONS(5028), - [anon_sym_using] = ACTIONS(5028), - [anon_sym_QMARK] = ACTIONS(5028), - [anon_sym_] = ACTIONS(5028), - [anon_sym_DOT] = ACTIONS(5028), - [anon_sym_LPAREN_PIPE] = ACTIONS(5026), - [anon_sym_LBRACE] = ACTIONS(5028), - [anon_sym_hiding] = ACTIONS(5028), - [aux_sym_string_token1] = ACTIONS(5026), - [anon_sym_Prop] = ACTIONS(5028), - [anon_sym_3] = ACTIONS(5028), - [anon_sym_public] = ACTIONS(5028), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4579), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3620] = { - [sym_import_directive] = STATE(3620), - [aux_sym_module_macro_repeat1] = STATE(3620), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4580), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(6013), - [anon_sym_using] = ACTIONS(6013), - [anon_sym_RPAREN] = ACTIONS(5046), - [anon_sym_public] = ACTIONS(6016), - [anon_sym_renaming] = ACTIONS(6019), - [sym_comment] = ACTIONS(3), }, [3621] = { - [sym__atom_no_curly] = STATE(1388), - [sym_literal] = STATE(1375), - [sym_record_assignments] = STATE(1375), - [sym__atom_curly] = STATE(1388), - [sym_atom] = STATE(3621), - [aux_sym__open_args1_repeat1] = STATE(3621), - [anon_sym__] = ACTIONS(6024), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6027), - [anon_sym_unquote] = ACTIONS(6024), - [anon_sym_RPAREN] = ACTIONS(3096), - [aux_sym_integer_token1] = ACTIONS(6030), - [anon_sym_Set] = ACTIONS(6024), - [anon_sym_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6024), - [anon_sym_quoteTerm] = ACTIONS(6024), - [anon_sym_renaming] = ACTIONS(1683), - [anon_sym_quote] = ACTIONS(6024), - [sym__const_ellipsis] = ACTIONS(6024), - [anon_sym_record] = ACTIONS(6036), - [anon_sym_using] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(6024), - [anon_sym_] = ACTIONS(6039), - [anon_sym_DOT] = ACTIONS(7430), - [anon_sym_LPAREN_PIPE] = ACTIONS(6045), - [anon_sym_LBRACE] = ACTIONS(6048), - [anon_sym_hiding] = ACTIONS(1683), - [aux_sym_string_token1] = ACTIONS(6051), - [anon_sym_Prop] = ACTIONS(6024), - [anon_sym_3] = ACTIONS(6054), - [anon_sym_public] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(7415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3622] = { - [sym__atom_no_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym_record_assignments] = STATE(3586), - [sym__atom_curly] = STATE(3596), - [sym_atom] = STATE(4560), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5773), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_3] = ACTIONS(5740), - [aux_sym_string_token1] = ACTIONS(5738), - [anon_sym_Prop] = ACTIONS(5720), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7415), + [sym_pragma] = ACTIONS(3), }, [3623] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5773), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4581), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3624] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), }, [3625] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7433), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4582), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [3626] = { + [anon_sym_COLON] = ACTIONS(7482), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7484), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7433), }, [3627] = { + [anon_sym_COLON] = ACTIONS(7486), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7433), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7484), }, [3628] = { - [anon_sym_RPAREN] = ACTIONS(7433), + [anon_sym_COLON] = ACTIONS(7488), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3629] = { + [anon_sym_COLON] = ACTIONS(7490), + [anon_sym_2] = ACTIONS(7484), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_4] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), }, [3630] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4588), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3631] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7435), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3774), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), }, [3632] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4581), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4589), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3633] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), + [anon_sym_COLON] = ACTIONS(5750), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_2] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(5742), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), }, [3634] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4582), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3635] = { - [anon_sym_COLON] = ACTIONS(7437), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7439), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3636] = { - [anon_sym_COLON] = ACTIONS(7441), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7492), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7439), }, [3637] = { - [anon_sym_COLON] = ACTIONS(7443), + [sym__field_assignments1] = STATE(4591), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7492), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3638] = { - [anon_sym_COLON] = ACTIONS(7445), - [anon_sym_2] = ACTIONS(7439), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3639] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_2] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_RBRACE_RBRACE] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, [3640] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4588), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(295), + [anon_sym_RPAREN] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_RBRACE_RBRACE] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), }, [3641] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4589), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4593), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7494), }, [3642] = { - [anon_sym_COLON] = ACTIONS(5797), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5789), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4594), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7494), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3643] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_2] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4595), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [3644] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7447), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4597), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7496), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3645] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4598), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3646] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4599), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7498), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3647] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7449), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_literal] = STATE(3639), + [sym_record_assignments] = STATE(3639), + [sym_atom] = STATE(4592), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_Prop] = ACTIONS(5793), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_record] = ACTIONS(5803), + [anon_sym_] = ACTIONS(5807), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5811), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3648] = { - [sym__field_assignments1] = STATE(4592), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7449), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4601), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7500), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3649] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(411), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_RBRACE_RBRACE] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), }, [3650] = { - [anon_sym_COLON] = ACTIONS(119), + [sym_literal] = STATE(3639), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3651), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_record_assignments] = STATE(3639), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_2] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), }, [3651] = { - [anon_sym_COLON] = ACTIONS(253), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_2] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_RPAREN] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_RBRACE_RBRACE] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), }, [3652] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4594), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7451), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [3653] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4595), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7451), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7502), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3654] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4597), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7453), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), }, [3655] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4598), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7455), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7504), + [sym_pragma] = ACTIONS(3), }, [3656] = { - [sym__atom_no_curly] = STATE(3660), - [sym_literal] = STATE(3650), - [sym_record_assignments] = STATE(3650), - [sym__atom_curly] = STATE(3660), - [sym_atom] = STATE(4593), - [anon_sym__] = ACTIONS(5842), - [anon_sym_unquote] = ACTIONS(5842), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5846), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5844), - [anon_sym_Set] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5848), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5842), - [anon_sym_quoteTerm] = ACTIONS(5842), - [anon_sym_quote] = ACTIONS(5842), - [sym__const_ellipsis] = ACTIONS(5842), - [anon_sym_record] = ACTIONS(5850), - [anon_sym_QMARK] = ACTIONS(5842), - [anon_sym_] = ACTIONS(5852), - [anon_sym_DOT] = ACTIONS(5854), - [anon_sym_LPAREN_PIPE] = ACTIONS(5856), - [anon_sym_LBRACE] = ACTIONS(5858), - [anon_sym_3] = ACTIONS(5862), - [aux_sym_string_token1] = ACTIONS(5860), - [anon_sym_Prop] = ACTIONS(5842), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [3657] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4599), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7506), }, [3658] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4601), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7457), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7510), }, [3659] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4602), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7510), + [sym_pragma] = ACTIONS(3), }, [3660] = { - [anon_sym_COLON] = ACTIONS(439), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_2] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4605), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3661] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3662), - [sym__atom_curly] = STATE(3660), - [sym_literal] = STATE(3650), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3660), - [sym_record_assignments] = STATE(3650), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5842), - [anon_sym_unquote] = ACTIONS(5842), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(5844), - [anon_sym_Set] = ACTIONS(5842), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5848), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5842), - [anon_sym_quoteTerm] = ACTIONS(5842), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5842), - [sym__const_ellipsis] = ACTIONS(5842), - [anon_sym_record] = ACTIONS(5850), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5842), - [anon_sym_] = ACTIONS(5852), - [anon_sym_DOT] = ACTIONS(5854), - [anon_sym_LPAREN_PIPE] = ACTIONS(5856), - [anon_sym_LBRACE] = ACTIONS(5858), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(5860), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(5842), - [anon_sym_3] = ACTIONS(5862), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_PIPE_RPAREN] = ACTIONS(6795), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [3662] = { - [anon_sym_COLON] = ACTIONS(467), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_2] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4606), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3663] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4607), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3664] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4608), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [3665] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7459), + [anon_sym_RPAREN] = ACTIONS(7510), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3666] = { - [sym__atom_no_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym_record_assignments] = STATE(3586), - [sym__atom_curly] = STATE(3596), - [sym_atom] = STATE(4560), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5871), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_3] = ACTIONS(5740), - [aux_sym_string_token1] = ACTIONS(5738), - [anon_sym_Prop] = ACTIONS(5720), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7510), + [sym_pragma] = ACTIONS(3), }, [3667] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5871), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(6891), + [anon_sym_4] = ACTIONS(6891), + [anon_sym_SEMI] = ACTIONS(6891), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6891), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6891), + [anon_sym_PIPE_RPAREN] = ACTIONS(6891), + [anon_sym_2] = ACTIONS(6891), + [anon_sym_where] = ACTIONS(6891), + [anon_sym_RBRACE] = ACTIONS(7512), }, [3668] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_literal] = STATE(3639), + [sym_record_assignments] = STATE(3639), + [sym_atom] = STATE(4592), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_Prop] = ACTIONS(5793), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_record] = ACTIONS(5803), + [anon_sym_] = ACTIONS(5807), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_LBRACE] = ACTIONS(5811), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3669] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_4] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym_literal] = STATE(3639), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3651), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_record_assignments] = STATE(3639), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5844), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), + [sym_pragma] = ACTIONS(3), }, [3670] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7461), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3671] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7514), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_4] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [3672] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7463), + [sym_import_directive] = STATE(4610), + [aux_sym_module_macro_repeat1] = STATE(4610), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [3673] = { - [sym_comment] = ACTIONS(3), + [sym_import_directive] = STATE(3678), + [aux_sym_module_macro_repeat1] = STATE(3678), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7465), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [3674] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7465), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(1537), + [sym__open_args1] = STATE(4611), + [sym_import_directive] = STATE(4610), + [sym_atom] = STATE(2433), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_record_assignments] = STATE(1537), + [aux_sym__open_args1_repeat1] = STATE(2433), + [aux_sym_module_macro_repeat1] = STATE(4610), + [anon_sym__] = ACTIONS(2540), + [anon_sym_quoteTerm] = ACTIONS(2540), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(4906), + [aux_sym_integer_token1] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2548), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2550), + [sym_qualified_name] = ACTIONS(2540), + [anon_sym_quote] = ACTIONS(2540), + [anon_sym_renaming] = ACTIONS(2552), + [anon_sym_Prop] = ACTIONS(2540), + [sym__const_ellipsis] = ACTIONS(2540), + [anon_sym_record] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_3] = ACTIONS(2558), + [anon_sym_] = ACTIONS(2560), + [anon_sym_unquote] = ACTIONS(2540), + [anon_sym_DOT] = ACTIONS(3768), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_hiding] = ACTIONS(2556), + [aux_sym_string_token1] = ACTIONS(2566), + [anon_sym_Set] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2568), }, [3675] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [anon_sym__] = ACTIONS(1147), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1145), + [anon_sym_quoteTerm] = ACTIONS(1147), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym_integer_token1] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1145), + [sym_qualified_name] = ACTIONS(1147), + [anon_sym_quote] = ACTIONS(1147), + [anon_sym_renaming] = ACTIONS(1147), + [anon_sym_Prop] = ACTIONS(1147), + [sym__const_ellipsis] = ACTIONS(1147), + [anon_sym_record] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(1147), + [anon_sym_3] = ACTIONS(1147), + [anon_sym_] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_unquote] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1147), + [anon_sym_hiding] = ACTIONS(1147), + [aux_sym_string_token1] = ACTIONS(1145), + [anon_sym_Set] = ACTIONS(1147), + [anon_sym_public] = ACTIONS(1147), }, [3676] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4914), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4912), + [anon_sym_quoteTerm] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4912), + [aux_sym_integer_token1] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4912), + [sym_qualified_name] = ACTIONS(4914), + [anon_sym_quote] = ACTIONS(4914), + [anon_sym_renaming] = ACTIONS(4914), + [anon_sym_Prop] = ACTIONS(4914), + [sym__const_ellipsis] = ACTIONS(4914), + [anon_sym_record] = ACTIONS(4914), + [anon_sym_using] = ACTIONS(4914), + [anon_sym_3] = ACTIONS(4914), + [anon_sym_] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4914), + [anon_sym_unquote] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_hiding] = ACTIONS(4914), + [aux_sym_string_token1] = ACTIONS(4912), + [anon_sym_Set] = ACTIONS(4914), + [anon_sym_public] = ACTIONS(4914), }, [3677] = { - [sym_primitive] = STATE(4608), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4608), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4608), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4608), - [sym_abstract] = STATE(4608), - [sym_private] = STATE(4608), - [sym_function_clause] = STATE(4608), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4608), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4608), - [sym_data] = STATE(4608), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4608), - [sym_macro] = STATE(4608), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4608), - [sym_record_signature_only] = STATE(4608), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4608), - [sym_syntax] = STATE(4608), - [sym_record] = STATE(4608), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4608), - [sym_generalize] = STATE(4608), - [sym_mutual] = STATE(4608), - [sym_postulate] = STATE(4608), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atom_curly] = STATE(1551), + [sym__atom_no_curly] = STATE(1551), + [sym_literal] = STATE(1537), + [sym_record_assignments] = STATE(1537), + [sym_atom] = STATE(3677), + [aux_sym__open_args1_repeat1] = STATE(3677), + [anon_sym__] = ACTIONS(6488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6491), + [anon_sym_quoteTerm] = ACTIONS(6488), + [anon_sym_RPAREN] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(6494), + [anon_sym_QMARK] = ACTIONS(6488), + [anon_sym_LPAREN] = ACTIONS(6497), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6500), + [sym_qualified_name] = ACTIONS(6488), + [anon_sym_quote] = ACTIONS(6488), + [anon_sym_renaming] = ACTIONS(1527), + [anon_sym_Prop] = ACTIONS(6488), + [sym__const_ellipsis] = ACTIONS(6488), + [anon_sym_record] = ACTIONS(6503), + [anon_sym_using] = ACTIONS(1527), + [anon_sym_3] = ACTIONS(6509), + [anon_sym_] = ACTIONS(6506), + [anon_sym_DOT] = ACTIONS(7516), + [anon_sym_unquote] = ACTIONS(6488), + [anon_sym_LBRACE] = ACTIONS(6515), + [anon_sym_hiding] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(6518), + [anon_sym_Set] = ACTIONS(6488), + [anon_sym_public] = ACTIONS(1527), }, [3678] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_import_directive] = STATE(3678), + [aux_sym_module_macro_repeat1] = STATE(3678), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(6521), + [anon_sym_using] = ACTIONS(6521), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_public] = ACTIONS(6524), + [anon_sym_renaming] = ACTIONS(6527), + [sym_comment] = ACTIONS(3), }, [3679] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7467), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3680] = { - [anon_sym_COLON] = ACTIONS(7469), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7519), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7471), }, [3681] = { - [anon_sym_COLON] = ACTIONS(7473), - [anon_sym_2] = ACTIONS(7471), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7519), }, [3682] = { - [sym_do] = STATE(4612), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4612), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4612), - [sym_lambda] = STATE(4612), - [sym__application] = STATE(4612), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7519), + [sym_pragma] = ACTIONS(3), }, [3683] = { - [sym_do] = STATE(4613), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4613), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4613), - [sym_lambda] = STATE(4613), - [sym__application] = STATE(4613), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3684] = { - [sym_do] = STATE(4614), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4614), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4614), - [sym_lambda] = STATE(4614), - [sym__application] = STATE(4614), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_PIPE_RPAREN] = ACTIONS(4492), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [3685] = { - [sym_do] = STATE(4615), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4615), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4615), - [sym_lambda] = STATE(4615), - [sym__application] = STATE(4615), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7521), + [sym_pragma] = ACTIONS(3), }, [3686] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(6148), + [anon_sym_4] = ACTIONS(6148), + [anon_sym_SEMI] = ACTIONS(6148), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(6148), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6148), + [anon_sym_PIPE_RPAREN] = ACTIONS(6148), + [anon_sym_2] = ACTIONS(6148), + [anon_sym_where] = ACTIONS(6148), + [anon_sym_RBRACE] = ACTIONS(7523), }, [3687] = { - [anon_sym_RPAREN] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [3688] = { - [anon_sym_COLON] = ACTIONS(7477), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_PIPE_RPAREN] = ACTIONS(6552), }, [3689] = { - [anon_sym_COLON] = ACTIONS(7479), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7471), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4615), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [3690] = { - [sym_do] = STATE(4619), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4619), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4619), - [sym_lambda] = STATE(4619), - [sym__application] = STATE(4619), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_2] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [3691] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4616), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [3692] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [anon_sym_COLON] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7527), + [sym_pragma] = ACTIONS(3), }, [3693] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(7529), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7527), }, [3694] = { + [anon_sym_COLON] = ACTIONS(7531), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7481), [sym_pragma] = ACTIONS(3), }, [3695] = { - [sym__field_assignments1] = STATE(4621), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7481), + [anon_sym_COLON] = ACTIONS(7533), + [anon_sym_2] = ACTIONS(7527), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3696] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4622), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3697] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_2] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [3698] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4623), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7483), }, [3699] = { - [anon_sym_RPAREN] = ACTIONS(7483), + [anon_sym_COLON] = ACTIONS(5874), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(5866), [sym_pragma] = ACTIONS(3), }, [3700] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4624), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7485), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [3701] = { - [anon_sym_LBRACE] = ACTIONS(7487), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [3702] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7483), + [anon_sym_RBRACE] = ACTIONS(7535), [sym_pragma] = ACTIONS(3), }, [3703] = { + [sym__field_assignments1] = STATE(4625), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7535), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7483), }, [3704] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [3705] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7489), + [anon_sym_COLON] = ACTIONS(119), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_2] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), }, [3706] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7483), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_2] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3707] = { - [sym__atom_no_curly] = STATE(2476), - [sym_literal] = STATE(2466), - [sym_record_assignments] = STATE(2466), - [sym__atom_curly] = STATE(2476), - [sym_atom] = STATE(3707), - [aux_sym__open_args1_repeat1] = STATE(3707), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7491), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7494), - [anon_sym_unquote] = ACTIONS(7491), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(7497), - [anon_sym_Set] = ACTIONS(7491), - [anon_sym_LPAREN] = ACTIONS(7500), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(7491), - [anon_sym_quoteTerm] = ACTIONS(7491), - [anon_sym_quote] = ACTIONS(7491), - [sym__const_ellipsis] = ACTIONS(7491), - [anon_sym_record] = ACTIONS(7503), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7491), - [anon_sym_] = ACTIONS(7506), - [anon_sym_DOT] = ACTIONS(7509), - [anon_sym_LPAREN_PIPE] = ACTIONS(7512), - [anon_sym_LBRACE] = ACTIONS(7515), - [anon_sym_3] = ACTIONS(7518), - [aux_sym_string_token1] = ACTIONS(7521), - [anon_sym_Prop] = ACTIONS(7491), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4627), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7537), }, [3708] = { - [sym_literal] = STATE(2482), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2492), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2493), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2494), - [sym__atom_curly] = STATE(2492), - [sym_record_assignments] = STATE(2482), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(3818), - [anon_sym_unquote] = ACTIONS(3818), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(3820), - [anon_sym_Set] = ACTIONS(3818), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3822), - [anon_sym_LPAREN] = ACTIONS(3824), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3818), - [anon_sym_quoteTerm] = ACTIONS(3818), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(3818), - [sym__const_ellipsis] = ACTIONS(3818), - [anon_sym_record] = ACTIONS(3826), - [anon_sym_QMARK] = ACTIONS(3818), - [anon_sym_] = ACTIONS(3828), - [anon_sym_DOT] = ACTIONS(3830), - [anon_sym_LPAREN_PIPE] = ACTIONS(3832), - [anon_sym_LBRACE] = ACTIONS(3834), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(3836), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(3818), - [anon_sym_3] = ACTIONS(3838), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4628), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7537), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3709] = { - [sym__newline] = ACTIONS(811), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4629), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [3710] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7524), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4631), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7539), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3711] = { - [anon_sym_RPAREN] = ACTIONS(7524), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4632), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [3712] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4629), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7526), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4633), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7541), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3713] = { - [anon_sym_LBRACE] = ACTIONS(7528), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3715), + [sym__atom_no_curly] = STATE(3715), + [sym_literal] = STATE(3705), + [sym_record_assignments] = STATE(3705), + [sym_atom] = STATE(4626), + [anon_sym__] = ACTIONS(5917), + [anon_sym_quoteTerm] = ACTIONS(5917), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5921), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5919), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LPAREN] = ACTIONS(5923), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5925), + [sym_qualified_name] = ACTIONS(5917), + [anon_sym_quote] = ACTIONS(5917), + [anon_sym_3] = ACTIONS(5929), + [anon_sym_Prop] = ACTIONS(5917), + [sym__const_ellipsis] = ACTIONS(5917), + [anon_sym_record] = ACTIONS(5927), + [anon_sym_] = ACTIONS(5931), + [anon_sym_unquote] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5935), + [aux_sym_string_token1] = ACTIONS(5937), + [anon_sym_Set] = ACTIONS(5917), }, [3714] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7524), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4635), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7543), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3715] = { - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(411), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7524), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_2] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3716] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_literal] = STATE(3705), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3717), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3715), + [sym__atom_no_curly] = STATE(3715), + [sym_record_assignments] = STATE(3705), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5917), + [anon_sym_quoteTerm] = ACTIONS(5917), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(5919), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5921), + [anon_sym_LPAREN] = ACTIONS(5923), + [anon_sym_LPAREN_PIPE] = ACTIONS(5925), + [sym_qualified_name] = ACTIONS(5917), + [anon_sym_quote] = ACTIONS(5917), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(5917), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(5927), + [sym__const_ellipsis] = ACTIONS(5917), + [anon_sym_3] = ACTIONS(5929), + [anon_sym_] = ACTIONS(5931), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5933), + [anon_sym_LBRACE] = ACTIONS(5935), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(5937), + [anon_sym_Set] = ACTIONS(5917), + [sym_pragma] = ACTIONS(3), }, [3717] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7530), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(475), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_2] = ACTIONS(475), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [3718] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7524), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), [sym_pragma] = ACTIONS(3), }, [3719] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4632), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [3720] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7545), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym_name] = ACTIONS(6710), + }, + [3720] = { + [anon_sym_COLON] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [3721] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4633), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7547), + [sym_pragma] = ACTIONS(3), }, [3722] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4634), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [3723] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4635), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_literal] = STATE(3639), + [sym_record_assignments] = STATE(3639), + [sym_atom] = STATE(4592), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_Prop] = ACTIONS(5793), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_record] = ACTIONS(5803), + [anon_sym_] = ACTIONS(5807), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LBRACE] = ACTIONS(5811), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [3724] = { - [anon_sym_RPAREN] = ACTIONS(7465), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(3639), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3651), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_record_assignments] = STATE(3639), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), [sym_pragma] = ACTIONS(3), }, [3725] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7465), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3726] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7549), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3727] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7532), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [3728] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4637), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_PIPE_RPAREN] = ACTIONS(4492), }, [3729] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(7551), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), }, [3730] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4638), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [3731] = { - [anon_sym_COLON] = ACTIONS(7534), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7536), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), }, [3732] = { - [anon_sym_COLON] = ACTIONS(7538), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7536), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7553), }, [3733] = { - [anon_sym_COLON] = ACTIONS(7540), [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(7555), [sym_pragma] = ACTIONS(3), }, [3734] = { - [anon_sym_COLON] = ACTIONS(7542), - [anon_sym_2] = ACTIONS(7536), + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [3735] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [sym__expr2] = STATE(4642), + [sym_do] = STATE(4642), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4642), + [sym_lambda] = STATE(4642), + [sym__application] = STATE(4642), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [3736] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4644), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4643), + [sym_do] = STATE(4643), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4643), + [sym_lambda] = STATE(4643), + [sym__application] = STATE(4643), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), + [sym_pragma] = ACTIONS(3), }, [3737] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4645), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [3738] = { - [anon_sym_COLON] = ACTIONS(5947), + [sym_anonymous_name] = STATE(3740), + [sym__binding_name] = STATE(4648), + [anon_sym__] = ACTIONS(5962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7557), + [anon_sym_] = ACTIONS(7559), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(5939), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7561), + [anon_sym_LBRACE] = ACTIONS(7563), + [sym_name] = ACTIONS(5976), + }, + [3738] = { + [sym_open] = STATE(4650), + [sym__expr2] = STATE(4649), + [sym_do] = STATE(4649), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4649), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4649), + [sym_lambda] = STATE(4649), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [3739] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(4651), + [sym_do] = STATE(4651), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4651), + [sym_let] = STATE(4651), + [sym_lambda] = STATE(4651), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [3740] = { + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7544), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1293), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [3741] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym_anonymous_name] = STATE(3740), + [sym_typed_binding] = STATE(3741), + [sym_untyped_binding] = STATE(3741), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(3743), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(5962), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5964), + [anon_sym_] = ACTIONS(5966), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5968), + [anon_sym_LPAREN] = ACTIONS(5970), + [anon_sym_LBRACE] = ACTIONS(7565), + [anon_sym_in] = ACTIONS(1299), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5974), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(5976), }, [3742] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [sym__newline] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7567), }, [3743] = { + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7546), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [3744] = { - [sym__field_assignments1] = STATE(4648), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7546), + [anon_sym_RPAREN] = ACTIONS(7553), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3745] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - }, - [3746] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_] = ACTIONS(6077), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_DOT_DOT] = ACTIONS(6079), - [sym_name] = ACTIONS(6077), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + }, + [3746] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4655), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7569), }, [3747] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_renaming] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_hiding] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_public] = ACTIONS(2065), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3748] = { - [anon_sym_using] = ACTIONS(6897), - [anon_sym_SEMI] = ACTIONS(6897), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6897), - [anon_sym_hiding] = ACTIONS(6897), - [anon_sym_RBRACE] = ACTIONS(6897), - [anon_sym_public] = ACTIONS(6897), - [anon_sym_renaming] = ACTIONS(6897), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4656), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7569), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3749] = { - [aux_sym_import_directive_repeat1] = STATE(4650), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(7548), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4657), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [3750] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2258), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_renaming] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_using] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_hiding] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4658), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3751] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7550), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4660), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7571), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3752] = { - [sym__field_assignments1] = STATE(4652), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7550), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4661), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7573), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3753] = { - [anon_sym_RPAREN] = ACTIONS(7548), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3755), + [sym__atom_no_curly] = STATE(3755), + [sym_literal] = STATE(3745), + [sym_record_assignments] = STATE(3745), + [sym_atom] = STATE(4654), + [anon_sym__] = ACTIONS(5978), + [anon_sym_quoteTerm] = ACTIONS(5978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_LPAREN] = ACTIONS(5984), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5986), + [sym_qualified_name] = ACTIONS(5978), + [anon_sym_quote] = ACTIONS(5978), + [anon_sym_3] = ACTIONS(5988), + [anon_sym_Prop] = ACTIONS(5978), + [sym__const_ellipsis] = ACTIONS(5978), + [anon_sym_record] = ACTIONS(5990), + [anon_sym_] = ACTIONS(5992), + [anon_sym_unquote] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(5996), + [aux_sym_string_token1] = ACTIONS(5998), + [anon_sym_Set] = ACTIONS(5978), }, [3754] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3014), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_renaming] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_hiding] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4663), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7575), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3755] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3756] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__atom_curly] = STATE(3755), + [sym__atom_no_curly] = STATE(3755), + [sym_literal] = STATE(3745), + [sym_record_assignments] = STATE(3745), + [sym_atom] = STATE(4664), + [aux_sym__open_args1_repeat1] = STATE(4664), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(5978), + [anon_sym_quoteTerm] = ACTIONS(5978), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5978), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(5984), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5986), + [sym_qualified_name] = ACTIONS(5978), + [anon_sym_quote] = ACTIONS(5978), + [anon_sym_3] = ACTIONS(5988), + [anon_sym_Prop] = ACTIONS(5978), + [sym__const_ellipsis] = ACTIONS(5978), + [anon_sym_record] = ACTIONS(5990), + [anon_sym_] = ACTIONS(5992), + [anon_sym_unquote] = ACTIONS(5978), + [anon_sym_DOT] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(5996), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(5998), + [anon_sym_Set] = ACTIONS(5978), }, [3757] = { + [sym__newline] = ACTIONS(737), + [anon_sym_in] = ACTIONS(737), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7552), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(7577), }, [3758] = { - [sym__field_assignments1] = STATE(4654), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7552), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [3759] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym_primitive] = STATE(4666), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4666), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4666), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4666), + [sym_abstract] = STATE(4666), + [sym_private] = STATE(4666), + [sym_function_clause] = STATE(4666), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4666), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4667), + [sym_infix] = STATE(4666), + [sym_data] = STATE(4666), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4666), + [sym_macro] = STATE(4666), + [sym_test] = STATE(4666), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4666), + [sym_record_signature_only] = STATE(4666), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4666), + [sym_syntax] = STATE(4666), + [sym_record] = STATE(4666), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4666), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4666), + [sym_mutual] = STATE(4666), + [sym_postulate] = STATE(4666), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [3760] = { - [sym__newline] = ACTIONS(7554), + [3759] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7579), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7554), + }, + [3760] = { + [sym_primitive] = STATE(4669), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4669), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4669), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4669), + [sym_abstract] = STATE(4669), + [sym_private] = STATE(4669), + [sym_function_clause] = STATE(4669), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4669), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4669), + [sym_data] = STATE(4669), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4669), + [sym_macro] = STATE(4669), + [sym_test] = STATE(4669), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4669), + [sym_record_signature_only] = STATE(4669), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4669), + [sym_syntax] = STATE(4669), + [sym_record] = STATE(4669), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4669), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4669), + [sym_mutual] = STATE(4669), + [sym_postulate] = STATE(4669), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3761] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4671), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7581), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7556), }, [3762] = { + [anon_sym_LBRACE] = ACTIONS(7583), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7556), [sym_pragma] = ACTIONS(3), }, [3763] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4656), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(7553), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3764] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), + [anon_sym_2] = ACTIONS(7553), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym_name] = ACTIONS(6710), }, [3765] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4657), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7553), }, [3766] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4658), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3732), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5958), }, [3767] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4659), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3744), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(5958), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3768] = { - [anon_sym_RPAREN] = ACTIONS(7556), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3764), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3769] = { - [anon_sym_SEMI] = ACTIONS(7558), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7558), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_literal] = STATE(2514), + [sym_record_assignments] = STATE(2514), + [sym_atom] = STATE(3731), + [anon_sym__] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6020), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3901), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(6022), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_Prop] = ACTIONS(3895), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_record] = ACTIONS(3911), + [anon_sym_] = ACTIONS(6018), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(6024), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), }, [3770] = { - [aux_sym__field_assignments1_repeat1] = STATE(3770), - [anon_sym_SEMI] = ACTIONS(7560), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7558), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3772), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3771] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7556), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), }, [3772] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7585), + [sym_pragma] = ACTIONS(3), + }, + [3773] = { [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(456), - [aux_sym_record_constructor_instance_repeat1] = STATE(4661), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(2530), [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [anon_sym_constructor] = ACTIONS(7563), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), - }, - [3773] = { - [sym__newline] = ACTIONS(7565), - [sym_comment] = ACTIONS(3), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), }, [3774] = { - [sym__newline] = ACTIONS(7567), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7567), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3732), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(5958), }, [3775] = { - [anon_sym_3] = ACTIONS(7569), - [anon_sym_pattern] = ACTIONS(7569), - [anon_sym_inductive] = ACTIONS(7569), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(7569), - [anon_sym_quoteGoal] = ACTIONS(7569), - [anon_sym_no_DASHeta_DASHequality] = ACTIONS(7569), - [anon_sym_abstract] = ACTIONS(7569), - [sym_qualified_name] = ACTIONS(7569), - [anon_sym_quoteTerm] = ACTIONS(7569), - [anon_sym_do] = ACTIONS(7569), - [anon_sym_quote] = ACTIONS(7569), - [sym__const_ellipsis] = ACTIONS(7569), - [anon_sym_record] = ACTIONS(7569), - [anon_sym_QMARK] = ACTIONS(7569), - [anon_sym_] = ACTIONS(7569), - [anon_sym_syntax] = ACTIONS(7569), - [anon_sym_coinductive] = ACTIONS(7569), - [anon_sym_instance] = ACTIONS(7569), - [anon_sym_infix] = ACTIONS(7569), - [anon_sym_macro] = ACTIONS(7569), - [anon_sym_field] = ACTIONS(7569), - [anon_sym_private] = ACTIONS(7569), - [anon_sym_generalize] = ACTIONS(7569), - [anon_sym__] = ACTIONS(7569), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7571), - [sym__const_lambda] = ACTIONS(7569), - [anon_sym_let] = ACTIONS(7569), - [aux_sym_integer_token1] = ACTIONS(7569), - [anon_sym_open] = ACTIONS(7569), - [anon_sym_LPAREN] = ACTIONS(7569), - [anon_sym_Set] = ACTIONS(7569), - [anon_sym_unquote] = ACTIONS(7569), - [sym__dedent] = ACTIONS(7571), - [anon_sym_codata] = ACTIONS(7569), - [anon_sym_infixr] = ACTIONS(7569), - [anon_sym_constructor] = ACTIONS(7569), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(7569), - [anon_sym_postulate] = ACTIONS(7569), - [anon_sym_eta_DASHequality] = ACTIONS(7569), - [anon_sym_mutual] = ACTIONS(7569), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_LPAREN_PIPE] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7569), - [sym__const_forall] = ACTIONS(7569), - [aux_sym_string_token1] = ACTIONS(7571), - [anon_sym_import] = ACTIONS(7569), - [anon_sym_data] = ACTIONS(7569), - [anon_sym_tactic] = ACTIONS(7569), - [anon_sym_Prop] = ACTIONS(7569), - [anon_sym_module] = ACTIONS(7569), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3744), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(5958), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3776] = { - [sym_primitive] = STATE(455), - [sym_literal] = STATE(7), - [sym__declaration] = STATE(455), - [sym__with_expr] = STATE(36), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(455), - [sym__atom_no_curly] = STATE(40), - [aux_sym__open_args1_repeat1] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(455), - [sym_abstract] = STATE(455), - [sym_private] = STATE(455), - [sym_function_clause] = STATE(455), - [sym_lhs_decl] = STATE(42), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(455), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(455), - [sym_data] = STATE(455), - [aux_sym__with_expr_repeat1] = STATE(45), - [sym_instance] = STATE(455), - [sym_macro] = STATE(455), - [sym_lhs_defn] = STATE(46), - [sym_data_signature_only] = STATE(455), - [sym_record_signature_only] = STATE(455), - [sym_atom] = STATE(47), - [sym_do] = STATE(43), - [sym_pattern] = STATE(455), - [sym_syntax] = STATE(455), - [sym_record] = STATE(455), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(40), - [sym_record_assignments] = STATE(7), - [sym_module] = STATE(455), - [sym_generalize] = STATE(455), - [sym_mutual] = STATE(455), - [sym_postulate] = STATE(455), - [anon_sym_module] = ACTIONS(5), - [anon_sym_pattern] = ACTIONS(7), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(11), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(15), - [anon_sym_quoteTerm] = ACTIONS(15), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(15), - [sym__const_ellipsis] = ACTIONS(15), - [anon_sym_record] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(15), - [anon_sym_] = ACTIONS(21), - [anon_sym_syntax] = ACTIONS(23), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(27), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(15), - [anon_sym_unquote] = ACTIONS(15), - [anon_sym_let] = ACTIONS(37), - [sym__const_lambda] = ACTIONS(39), - [aux_sym_integer_token1] = ACTIONS(41), - [anon_sym_open] = ACTIONS(43), - [anon_sym_Set] = ACTIONS(15), - [anon_sym_LBRACE_LBRACE] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [sym__dedent] = ACTIONS(7573), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(27), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(27), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LPAREN_PIPE] = ACTIONS(59), - [anon_sym_3] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [sym__const_forall] = ACTIONS(65), - [anon_sym_tactic] = ACTIONS(67), - [aux_sym_string_token1] = ACTIONS(69), - [anon_sym_import] = ACTIONS(71), - [anon_sym_data] = ACTIONS(73), - [anon_sym_Prop] = ACTIONS(15), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3764), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3777] = { - [sym_record_eta] = STATE(2604), - [sym_record_constructor] = STATE(2604), - [sym_record_induction] = STATE(2604), - [sym_record_constructor_instance] = STATE(2604), - [sym__record_directive] = STATE(2604), - [aux_sym_record_declarations_block_repeat1] = STATE(3777), - [anon_sym_3] = ACTIONS(7569), - [anon_sym_pattern] = ACTIONS(7569), - [anon_sym_inductive] = ACTIONS(7575), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(7569), - [anon_sym_quoteGoal] = ACTIONS(7569), - [anon_sym_no_DASHeta_DASHequality] = ACTIONS(7578), - [anon_sym_abstract] = ACTIONS(7569), - [sym_qualified_name] = ACTIONS(7569), - [anon_sym_quoteTerm] = ACTIONS(7569), - [anon_sym_do] = ACTIONS(7569), - [anon_sym_quote] = ACTIONS(7569), - [sym__const_ellipsis] = ACTIONS(7569), - [anon_sym_record] = ACTIONS(7569), - [anon_sym_QMARK] = ACTIONS(7569), - [anon_sym_] = ACTIONS(7569), - [anon_sym_syntax] = ACTIONS(7569), - [anon_sym_coinductive] = ACTIONS(7575), - [anon_sym_instance] = ACTIONS(7581), - [anon_sym_infix] = ACTIONS(7569), - [anon_sym_macro] = ACTIONS(7569), - [anon_sym_field] = ACTIONS(7569), - [anon_sym_private] = ACTIONS(7569), - [anon_sym_generalize] = ACTIONS(7569), - [anon_sym__] = ACTIONS(7569), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7571), - [sym__const_lambda] = ACTIONS(7569), - [anon_sym_let] = ACTIONS(7569), - [aux_sym_integer_token1] = ACTIONS(7569), - [anon_sym_open] = ACTIONS(7569), - [anon_sym_LPAREN] = ACTIONS(7569), - [anon_sym_Set] = ACTIONS(7569), - [anon_sym_unquote] = ACTIONS(7569), - [sym__dedent] = ACTIONS(7571), - [anon_sym_codata] = ACTIONS(7569), - [anon_sym_infixr] = ACTIONS(7569), - [anon_sym_constructor] = ACTIONS(7584), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(7569), - [anon_sym_postulate] = ACTIONS(7569), - [anon_sym_eta_DASHequality] = ACTIONS(7578), - [anon_sym_mutual] = ACTIONS(7569), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_LPAREN_PIPE] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7569), - [sym__const_forall] = ACTIONS(7569), - [aux_sym_string_token1] = ACTIONS(7571), - [anon_sym_import] = ACTIONS(7569), - [anon_sym_data] = ACTIONS(7569), - [anon_sym_tactic] = ACTIONS(7569), - [anon_sym_Prop] = ACTIONS(7569), - [anon_sym_module] = ACTIONS(7569), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3772), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3778] = { - [sym_record_declarations_block] = STATE(4664), - [sym__newline] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(2330), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7554), }, [3779] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), }, [3780] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7587), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), }, [3781] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7587), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4675), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7587), }, [3782] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4666), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4676), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7587), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3783] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_2] = ACTIONS(6710), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4677), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [3784] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4667), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4679), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7589), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3785] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4668), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4680), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3786] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4669), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4681), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3787] = { - [anon_sym_RPAREN] = ACTIONS(7587), + [sym__atom_curly] = STATE(3789), + [sym__atom_no_curly] = STATE(3789), + [sym_literal] = STATE(3779), + [sym_record_assignments] = STATE(3779), + [sym_atom] = STATE(4674), + [anon_sym__] = ACTIONS(6028), + [anon_sym_quoteTerm] = ACTIONS(6028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6032), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6030), + [anon_sym_QMARK] = ACTIONS(6028), + [anon_sym_LPAREN] = ACTIONS(6034), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6036), + [sym_qualified_name] = ACTIONS(6028), + [anon_sym_quote] = ACTIONS(6028), + [anon_sym_3] = ACTIONS(6040), + [anon_sym_Prop] = ACTIONS(6028), + [sym__const_ellipsis] = ACTIONS(6028), + [anon_sym_record] = ACTIONS(6038), + [anon_sym_] = ACTIONS(6042), + [anon_sym_unquote] = ACTIONS(6028), + [anon_sym_DOT] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(6046), + [aux_sym_string_token1] = ACTIONS(6048), + [anon_sym_Set] = ACTIONS(6028), }, [3788] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7587), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4683), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7593), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3789] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_2] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), }, [3790] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym_literal] = STATE(3779), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(3791), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3789), + [sym__atom_no_curly] = STATE(3789), + [sym_record_assignments] = STATE(3779), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(6028), + [anon_sym_quoteTerm] = ACTIONS(6028), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(6030), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(6028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6034), + [anon_sym_LPAREN_PIPE] = ACTIONS(6036), + [sym_qualified_name] = ACTIONS(6028), + [anon_sym_quote] = ACTIONS(6028), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(6028), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(6038), + [sym__const_ellipsis] = ACTIONS(6028), + [anon_sym_3] = ACTIONS(6040), + [anon_sym_] = ACTIONS(6042), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6028), + [anon_sym_DOT] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(6046), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(6048), + [anon_sym_Set] = ACTIONS(6028), + [sym_pragma] = ACTIONS(3), }, [3791] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7589), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [3792] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_2] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [3793] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7591), + [anon_sym_RBRACE] = ACTIONS(7595), [sym_pragma] = ACTIONS(3), }, [3794] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1397), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1407), + [sym__atom_no_curly] = STATE(1407), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1408), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1409), + [sym_atom] = STATE(1410), + [sym__typed_bindings1] = STATE(1411), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1397), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2323), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2325), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(2327), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_QMARK] = ACTIONS(2323), + [anon_sym_quoteTerm] = ACTIONS(2323), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2323), + [anon_sym_quote] = ACTIONS(2323), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(2331), + [sym__const_ellipsis] = ACTIONS(2323), + [anon_sym_LPAREN_PIPE] = ACTIONS(2333), + [anon_sym_] = ACTIONS(2335), + [anon_sym_3] = ACTIONS(2337), + [anon_sym_DOT] = ACTIONS(2339), + [anon_sym_unquote] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2341), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(2343), + [anon_sym_Set] = ACTIONS(2323), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7593), }, [3795] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7595), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), }, [3796] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7597), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7597), }, [3797] = { [sym_comment] = ACTIONS(3), + [anon_sym_in] = ACTIONS(7599), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7595), }, [3798] = { + [sym__newline] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1185), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1183), + [anon_sym_] = ACTIONS(1185), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7595), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_in] = ACTIONS(1185), + [anon_sym_where] = ACTIONS(1185), + [anon_sym_DOT_DOT] = ACTIONS(1183), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1185), + [sym_name] = ACTIONS(1185), }, [3799] = { - [aux_sym_syntax_repeat2] = STATE(3799), - [sym__newline] = ACTIONS(7599), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7601), + [sym__expr2] = STATE(4687), + [sym_do] = STATE(4687), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4687), + [sym_lambda] = STATE(4687), + [sym__application] = STATE(4687), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1209), }, [3800] = { - [sym__newline] = ACTIONS(7604), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(4688), + [sym_do] = STATE(4688), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4688), + [sym_lambda] = STATE(4688), + [sym__application] = STATE(4688), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_2] = ACTIONS(1219), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), [sym_pragma] = ACTIONS(3), }, [3801] = { - [anon_sym_COLON] = ACTIONS(7606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7608), - [anon_sym_] = ACTIONS(7606), + [sym_anonymous_name] = STATE(3804), + [sym__binding_name] = STATE(4693), + [anon_sym__] = ACTIONS(6058), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7601), + [anon_sym_] = ACTIONS(7603), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7606), [sym_pragma] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(7606), - [anon_sym_DOT_DOT] = ACTIONS(7608), - [sym_name] = ACTIONS(7606), + [anon_sym_LPAREN] = ACTIONS(7605), + [anon_sym_LBRACE] = ACTIONS(7607), + [sym_name] = ACTIONS(6072), }, [3802] = { - [sym__field_name] = STATE(3802), - [aux_sym__arg_name_repeat2] = STATE(3802), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7610), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7612), + [sym_open] = STATE(4695), + [sym__expr2] = STATE(4694), + [sym_do] = STATE(4694), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [sym__application] = STATE(4694), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4694), + [sym_lambda] = STATE(4694), + [anon_sym_RPAREN] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [anon_sym_open] = ACTIONS(567), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(1187), }, [3803] = { - [sym__field_name] = STATE(3803), - [aux_sym__arg_name_repeat2] = STATE(3803), - [sym_name] = ACTIONS(7612), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7610), + [sym_catchall_pragma] = STATE(818), + [sym_lambda_clause] = STATE(821), + [sym_literal] = STATE(801), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(819), + [sym__atom_no_curly] = STATE(819), + [aux_sym__open_args1_repeat1] = STATE(820), + [sym__lambda_clauses_no_single_absurd] = STATE(821), + [sym__expr2] = STATE(4696), + [sym_do] = STATE(4696), + [sym_atom] = STATE(822), + [sym_lambda_clause_absurd] = STATE(823), + [sym_record_assignments] = STATE(801), + [sym__application] = STATE(4696), + [sym_let] = STATE(4696), + [sym_lambda] = STATE(4696), + [sym_pragma] = ACTIONS(3), + [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1255), + [anon_sym_LPAREN_PIPE] = ACTIONS(1257), + [sym_qualified_name] = ACTIONS(1259), + [anon_sym_quote] = ACTIONS(1259), + [sym__const_right_arrow] = ACTIONS(1261), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(1267), + [sym__const_ellipsis] = ACTIONS(1259), + [anon_sym_Prop] = ACTIONS(1259), + [anon_sym_] = ACTIONS(1269), + [anon_sym_3] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym__] = ACTIONS(1259), + [anon_sym_quoteTerm] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(1275), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1285), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(1289), + [anon_sym_Set] = ACTIONS(1259), }, [3804] = { - [sym__field_name] = STATE(3804), - [aux_sym__arg_name_repeat2] = STATE(3804), - [anon_sym_2] = ACTIONS(7615), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1293), + [anon_sym__] = ACTIONS(1295), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1293), + [anon_sym_] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_in] = ACTIONS(1295), + [anon_sym_where] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1293), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7617), + [sym__const_right_arrow] = ACTIONS(1295), + [sym_name] = ACTIONS(1295), }, [3805] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym_anonymous_name] = STATE(3804), + [sym_typed_binding] = STATE(3805), + [sym_untyped_binding] = STATE(3805), + [sym__lambda_binding] = STATE(768), + [sym__binding_name] = STATE(3807), + [sym__newline] = ACTIONS(1297), + [anon_sym__] = ACTIONS(6058), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6060), + [anon_sym_] = ACTIONS(6062), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(6064), + [anon_sym_LPAREN] = ACTIONS(6066), + [anon_sym_LBRACE] = ACTIONS(7609), + [anon_sym_in] = ACTIONS(1299), + [anon_sym_where] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(6070), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1299), + [sym_name] = ACTIONS(6072), }, [3806] = { + [sym__newline] = ACTIONS(1303), + [anon_sym_in] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7620), + [sym__const_right_arrow] = ACTIONS(7611), }, [3807] = { - [sym_primitive] = STATE(4676), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4676), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4676), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4677), - [sym_field] = STATE(4676), - [sym_abstract] = STATE(4676), - [sym_private] = STATE(4676), - [sym_function_clause] = STATE(4676), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4676), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4676), - [sym_data] = STATE(4676), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4676), - [sym_macro] = STATE(4676), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4676), - [sym_record_signature_only] = STATE(4676), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4676), - [sym_syntax] = STATE(4676), - [sym_record] = STATE(4676), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4676), - [sym_generalize] = STATE(4676), - [sym_mutual] = STATE(4676), - [sym_postulate] = STATE(4676), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(1307), + [anon_sym__] = ACTIONS(1309), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1307), + [anon_sym_] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_where] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(1309), + [sym_name] = ACTIONS(1309), }, [3808] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7622), + [anon_sym_RPAREN] = ACTIONS(7597), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3809] = { - [sym_primitive] = STATE(4679), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4679), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4679), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4679), - [sym_abstract] = STATE(4679), - [sym_private] = STATE(4679), - [sym_function_clause] = STATE(4679), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4679), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4679), - [sym_data] = STATE(4679), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4679), - [sym_macro] = STATE(4679), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4679), - [sym_record_signature_only] = STATE(4679), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4679), - [sym_syntax] = STATE(4679), - [sym_record] = STATE(4679), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4679), - [sym_generalize] = STATE(4679), - [sym_mutual] = STATE(4679), - [sym_postulate] = STATE(4679), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), - }, - [3810] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), + [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_Set] = ACTIONS(119), + }, + [3810] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4700), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7613), }, [3811] = { - [sym_do] = STATE(4680), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4680), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4680), - [sym_lambda] = STATE(4680), - [sym__application] = STATE(4680), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym__newline] = ACTIONS(295), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [anon_sym_quoteTerm] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_PIPE] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [anon_sym_in] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_Set] = ACTIONS(293), }, [3812] = { - [sym_do] = STATE(4681), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4681), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4681), - [sym_lambda] = STATE(4681), - [sym__application] = STATE(4681), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4701), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7613), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3813] = { - [sym_anonymous_name] = STATE(3816), - [sym__binding_name] = STATE(4686), - [anon_sym__] = ACTIONS(6167), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7624), - [anon_sym_] = ACTIONS(7626), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4702), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7628), - [anon_sym_LBRACE] = ACTIONS(7630), - [sym_name] = ACTIONS(6181), }, [3814] = { - [sym_do] = STATE(4688), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4688), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4688), - [sym_lambda] = STATE(4688), - [sym_open] = STATE(4687), - [sym__application] = STATE(4688), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4703), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3815] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4689), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4689), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4689), - [sym__expr2] = STATE(4689), - [sym_lambda] = STATE(4689), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4705), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7615), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3816] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [anon_sym_in] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4706), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3817] = { - [sym_typed_binding] = STATE(3817), - [sym_anonymous_name] = STATE(3816), - [sym_untyped_binding] = STATE(3817), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(3819), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(6167), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6169), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(7632), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(6181), + [sym__atom_curly] = STATE(3819), + [sym__atom_no_curly] = STATE(3819), + [sym_literal] = STATE(3809), + [sym_record_assignments] = STATE(3809), + [sym_atom] = STATE(4699), + [anon_sym__] = ACTIONS(6074), + [anon_sym_quoteTerm] = ACTIONS(6074), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_LPAREN] = ACTIONS(6080), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6082), + [sym_qualified_name] = ACTIONS(6074), + [anon_sym_quote] = ACTIONS(6074), + [anon_sym_3] = ACTIONS(6084), + [anon_sym_Prop] = ACTIONS(6074), + [sym__const_ellipsis] = ACTIONS(6074), + [anon_sym_record] = ACTIONS(6086), + [anon_sym_] = ACTIONS(6088), + [anon_sym_unquote] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6092), + [aux_sym_string_token1] = ACTIONS(6094), + [anon_sym_Set] = ACTIONS(6074), }, [3818] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), - [sym_comment] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7634), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4708), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7619), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3819] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym__newline] = ACTIONS(413), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [anon_sym_quoteTerm] = ACTIONS(411), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(411), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(1151), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), + [anon_sym_where] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_in] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_Set] = ACTIONS(411), }, [3820] = { - [anon_sym_RPAREN] = ACTIONS(7620), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3819), + [sym__atom_no_curly] = STATE(3819), + [sym_literal] = STATE(3809), + [sym_record_assignments] = STATE(3809), + [sym_atom] = STATE(4709), + [aux_sym__open_args1_repeat1] = STATE(4709), + [sym__newline] = ACTIONS(735), + [anon_sym__] = ACTIONS(6074), + [anon_sym_quoteTerm] = ACTIONS(6074), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6078), + [anon_sym_QMARK] = ACTIONS(6074), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(6080), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(6082), + [sym_qualified_name] = ACTIONS(6074), + [anon_sym_quote] = ACTIONS(6074), + [anon_sym_3] = ACTIONS(6084), + [anon_sym_Prop] = ACTIONS(6074), + [sym__const_ellipsis] = ACTIONS(6074), + [anon_sym_record] = ACTIONS(6086), + [anon_sym_] = ACTIONS(6088), + [anon_sym_unquote] = ACTIONS(6074), + [anon_sym_DOT] = ACTIONS(6090), + [anon_sym_LBRACE] = ACTIONS(6092), + [anon_sym_in] = ACTIONS(419), + [aux_sym_string_token1] = ACTIONS(6094), + [anon_sym_Set] = ACTIONS(6074), }, [3821] = { - [anon_sym_in] = ACTIONS(7636), + [sym__newline] = ACTIONS(737), + [anon_sym_in] = ACTIONS(737), + [anon_sym_where] = ACTIONS(737), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(7621), }, [3822] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4694), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7638), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4711), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4711), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4711), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4711), + [sym_abstract] = STATE(4711), + [sym_private] = STATE(4711), + [sym_function_clause] = STATE(4711), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4711), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(4712), + [sym_infix] = STATE(4711), + [sym_data] = STATE(4711), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4711), + [sym_macro] = STATE(4711), + [sym_test] = STATE(4711), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4711), + [sym_record_signature_only] = STATE(4711), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4711), + [sym_syntax] = STATE(4711), + [sym_record] = STATE(4711), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4711), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4711), + [sym_mutual] = STATE(4711), + [sym_postulate] = STATE(4711), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3823] = { - [anon_sym_LBRACE] = ACTIONS(7640), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7623), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3824] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7620), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4714), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4714), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4714), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4714), + [sym_abstract] = STATE(4714), + [sym_private] = STATE(4714), + [sym_function_clause] = STATE(4714), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4714), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(540), + [sym_infix] = STATE(4714), + [sym_data] = STATE(4714), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4714), + [sym_macro] = STATE(4714), + [sym_test] = STATE(4714), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4714), + [sym_record_signature_only] = STATE(4714), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4714), + [sym_syntax] = STATE(4714), + [sym_record] = STATE(4714), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4714), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4714), + [sym_mutual] = STATE(4714), + [sym_postulate] = STATE(4714), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [3825] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3806), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6163), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4716), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3826] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3820), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6163), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_LBRACE] = ACTIONS(7627), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3827] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3824), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(6187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_PIPE_RPAREN] = ACTIONS(7597), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3828] = { - [sym__atom_no_curly] = STATE(2668), - [sym_literal] = STATE(2651), - [sym_record_assignments] = STATE(2651), - [sym__atom_curly] = STATE(2668), - [sym_atom] = STATE(3805), - [anon_sym__] = ACTIONS(4249), - [anon_sym_unquote] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6249), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(6251), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_] = ACTIONS(6247), - [anon_sym_DOT] = ACTIONS(6195), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(6253), - [anon_sym_3] = ACTIONS(4279), - [aux_sym_string_token1] = ACTIONS(4275), - [anon_sym_Prop] = ACTIONS(4249), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7597), + [sym_pragma] = ACTIONS(3), }, [3829] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3832), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [3830] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7620), + [anon_sym_4] = ACTIONS(7597), + }, + [3830] = { + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3796), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6054), }, [3831] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3808), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(6054), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3832] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7642), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(3828), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(6100), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3833] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_literal] = STATE(2544), + [sym_record_assignments] = STATE(2544), + [sym_atom] = STATE(3795), + [anon_sym__] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6116), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_LPAREN] = ACTIONS(6118), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_Prop] = ACTIONS(3974), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_record] = ACTIONS(3990), + [anon_sym_] = ACTIONS(6114), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_DOT] = ACTIONS(6108), + [anon_sym_LBRACE] = ACTIONS(6120), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), }, [3834] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4698), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7644), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3836), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3835] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), }, [3836] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4699), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7644), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7629), + [sym_pragma] = ACTIONS(3), }, [3837] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4701), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7646), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(945), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), + [sym_pragma] = ACTIONS(3), }, [3838] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4702), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7648), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3796), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6054), }, [3839] = { - [sym__atom_no_curly] = STATE(3843), - [sym_literal] = STATE(3833), - [sym_record_assignments] = STATE(3833), - [sym__atom_curly] = STATE(3843), - [sym_atom] = STATE(4697), - [anon_sym__] = ACTIONS(6201), - [anon_sym_unquote] = ACTIONS(6201), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6203), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6205), - [anon_sym_Set] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(6207), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6201), - [anon_sym_quoteTerm] = ACTIONS(6201), - [anon_sym_quote] = ACTIONS(6201), - [sym__const_ellipsis] = ACTIONS(6201), - [anon_sym_record] = ACTIONS(6209), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_] = ACTIONS(6211), - [anon_sym_DOT] = ACTIONS(6213), - [anon_sym_LPAREN_PIPE] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6217), - [anon_sym_3] = ACTIONS(6219), - [aux_sym_string_token1] = ACTIONS(6221), - [anon_sym_Prop] = ACTIONS(6201), - }, - [3840] = { + [sym_let] = STATE(80), [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4703), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3808), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(6054), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [3840] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(3828), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(6100), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3841] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4705), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7650), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3836), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3842] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4706), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), - }, - [3843] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), - }, - [3844] = { - [sym__atom_no_curly] = STATE(3843), - [sym_literal] = STATE(3833), - [sym_record_assignments] = STATE(3833), - [sym__atom_curly] = STATE(3843), - [sym_atom] = STATE(4707), - [aux_sym__open_args1_repeat1] = STATE(4707), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(6201), - [anon_sym_unquote] = ACTIONS(6201), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6203), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(6205), - [anon_sym_Set] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(6207), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6201), - [anon_sym_quoteTerm] = ACTIONS(6201), - [anon_sym_quote] = ACTIONS(6201), - [sym__const_ellipsis] = ACTIONS(6201), - [anon_sym_record] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_] = ACTIONS(6211), - [anon_sym_DOT] = ACTIONS(6213), - [anon_sym_LPAREN_PIPE] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6217), - [anon_sym_3] = ACTIONS(6219), - [aux_sym_string_token1] = ACTIONS(6221), - [anon_sym_Prop] = ACTIONS(6201), - }, - [3845] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(7652), - [anon_sym_in] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [3846] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(2560), [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), - }, - [3847] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7620), - [sym_pragma] = ACTIONS(3), - }, - [3848] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), + [sym_pragma] = ACTIONS(3), }, - [3849] = { + [3843] = { [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), [anon_sym_quote] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym_] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + }, + [3844] = { + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + }, + [3845] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4720), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7631), + }, + [3846] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4721), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7631), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + }, + [3847] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4722), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), + }, + [3848] = { + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4724), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7633), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), + }, + [3849] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4725), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), + [sym_pragma] = ACTIONS(3), }, [3850] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4726), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3851] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4710), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7654), + [sym__atom_curly] = STATE(3853), + [sym__atom_no_curly] = STATE(3853), + [sym_literal] = STATE(3843), + [sym_record_assignments] = STATE(3843), + [sym_atom] = STATE(4719), + [anon_sym__] = ACTIONS(6124), + [anon_sym_quoteTerm] = ACTIONS(6124), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6128), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6126), + [anon_sym_QMARK] = ACTIONS(6124), + [anon_sym_LPAREN] = ACTIONS(6130), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6132), + [sym_qualified_name] = ACTIONS(6124), + [anon_sym_quote] = ACTIONS(6124), + [anon_sym_3] = ACTIONS(6136), + [anon_sym_Prop] = ACTIONS(6124), + [sym__const_ellipsis] = ACTIONS(6124), + [anon_sym_record] = ACTIONS(6134), + [anon_sym_] = ACTIONS(6138), + [anon_sym_unquote] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6142), + [aux_sym_string_token1] = ACTIONS(6144), + [anon_sym_Set] = ACTIONS(6124), }, [3852] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4711), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7654), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4728), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7637), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [3853] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4713), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7656), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), }, [3854] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4714), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_literal] = STATE(3843), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(3855), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3853), + [sym__atom_no_curly] = STATE(3853), + [sym_record_assignments] = STATE(3843), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [anon_sym__] = ACTIONS(6124), + [anon_sym_quoteTerm] = ACTIONS(6124), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(6126), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(6124), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6128), + [anon_sym_LPAREN] = ACTIONS(6130), + [anon_sym_LPAREN_PIPE] = ACTIONS(6132), + [sym_qualified_name] = ACTIONS(6124), + [anon_sym_quote] = ACTIONS(6124), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(6124), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(6134), + [sym__const_ellipsis] = ACTIONS(6124), + [anon_sym_3] = ACTIONS(6136), + [anon_sym_] = ACTIONS(6138), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6142), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(6144), + [anon_sym_Set] = ACTIONS(6124), + [sym_pragma] = ACTIONS(3), }, [3855] = { - [sym__atom_no_curly] = STATE(3859), - [sym_literal] = STATE(3849), - [sym_record_assignments] = STATE(3849), - [sym__atom_curly] = STATE(3859), - [sym_atom] = STATE(4709), - [anon_sym__] = ACTIONS(6225), - [anon_sym_unquote] = ACTIONS(6225), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6229), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6227), - [anon_sym_Set] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6231), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6225), - [anon_sym_quoteTerm] = ACTIONS(6225), - [anon_sym_quote] = ACTIONS(6225), - [sym__const_ellipsis] = ACTIONS(6225), - [anon_sym_record] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6225), - [anon_sym_] = ACTIONS(6235), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_LPAREN_PIPE] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6241), - [anon_sym_3] = ACTIONS(6245), - [aux_sym_string_token1] = ACTIONS(6243), - [anon_sym_Prop] = ACTIONS(6225), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym_] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), }, [3856] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4715), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [3857] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4717), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7660), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(7639), + [anon_sym_COLON] = ACTIONS(7639), + [anon_sym_with] = ACTIONS(7639), + [sym_comment] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(7639), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(7639), + [anon_sym_where] = ACTIONS(7639), + [anon_sym_rewrite] = ACTIONS(7639), + [anon_sym_module] = ACTIONS(7639), }, [3858] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4718), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [aux_sym_syntax_repeat2] = STATE(4729), + [sym__newline] = ACTIONS(6618), + [anon_sym_in] = ACTIONS(7641), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(7643), }, [3859] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(6713), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [3860] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3861), - [sym__atom_curly] = STATE(3859), - [sym_literal] = STATE(3849), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(3859), - [sym_record_assignments] = STATE(3849), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(6225), - [anon_sym_unquote] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(6227), - [anon_sym_Set] = ACTIONS(6225), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6231), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6225), - [anon_sym_quoteTerm] = ACTIONS(6225), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6225), - [sym__const_ellipsis] = ACTIONS(6225), - [anon_sym_record] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(6225), - [anon_sym_] = ACTIONS(6235), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_LPAREN_PIPE] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6241), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(6243), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(6225), - [anon_sym_3] = ACTIONS(6245), + [sym_import_directive] = STATE(4730), + [aux_sym_module_macro_repeat1] = STATE(4730), + [sym__newline] = ACTIONS(6713), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6713), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [3861] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_import_directive] = STATE(4731), + [aux_sym_module_macro_repeat1] = STATE(4731), + [sym__newline] = ACTIONS(6715), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6715), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [3862] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3806), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6163), + [sym_module_application] = STATE(4732), + [sym_qualified_name] = ACTIONS(4074), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3863] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3820), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6163), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_renaming] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_hiding] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), }, [3864] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3824), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6187), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_renaming] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_hiding] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), }, [3865] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3832), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7645), + [sym_pragma] = ACTIONS(3), }, [3866] = { - [sym__newline] = ACTIONS(811), + [sym__field_assignments1] = STATE(4734), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7645), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [3867] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7662), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_renaming] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_using] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_hiding] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), }, [3868] = { - [sym_primitive] = STATE(4720), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4720), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4720), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(4721), - [sym_field] = STATE(4720), - [sym_abstract] = STATE(4720), - [sym_private] = STATE(4720), - [sym_function_clause] = STATE(4720), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4720), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4720), - [sym_data] = STATE(4720), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4720), - [sym_macro] = STATE(4720), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4720), - [sym_record_signature_only] = STATE(4720), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4720), - [sym_syntax] = STATE(4720), - [sym_record] = STATE(4720), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4720), - [sym_generalize] = STATE(4720), - [sym_mutual] = STATE(4720), - [sym_postulate] = STATE(4720), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7647), }, [3869] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7664), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7647), [sym_pragma] = ACTIONS(3), }, [3870] = { - [sym_primitive] = STATE(4723), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4723), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4723), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(654), - [sym_field] = STATE(4723), - [sym_abstract] = STATE(4723), - [sym_private] = STATE(4723), - [sym_function_clause] = STATE(4723), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4723), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4723), - [sym_data] = STATE(4723), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4723), - [sym_macro] = STATE(4723), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4723), - [sym_record_signature_only] = STATE(4723), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4723), - [sym_syntax] = STATE(4723), - [sym_record] = STATE(4723), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4723), - [sym_generalize] = STATE(4723), - [sym_mutual] = STATE(4723), - [sym_postulate] = STATE(4723), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym_comment] = ACTIONS(3), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4736), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3871] = { - [sym__newline] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1029), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1027), - [anon_sym_] = ACTIONS(1029), - [anon_sym_in] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1029), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1029), - [sym_name] = ACTIONS(1029), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_rewrite] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [3872] = { - [sym_do] = STATE(4724), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4724), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4724), - [sym_lambda] = STATE(4724), - [sym__application] = STATE(4724), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1053), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4737), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3873] = { - [sym_do] = STATE(4725), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4725), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4725), - [sym_lambda] = STATE(4725), - [sym__application] = STATE(4725), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_2] = ACTIONS(1063), - [sym_comment] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4738), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [3874] = { - [sym_anonymous_name] = STATE(3877), - [sym__binding_name] = STATE(4730), - [anon_sym__] = ACTIONS(6259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7666), - [anon_sym_] = ACTIONS(7668), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4739), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7670), - [anon_sym_LBRACE] = ACTIONS(7672), - [sym_name] = ACTIONS(6273), }, [3875] = { - [sym_do] = STATE(4732), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4732), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4732), - [sym_lambda] = STATE(4732), - [sym_open] = STATE(4731), - [sym__application] = STATE(4732), - [anon_sym_RPAREN] = ACTIONS(1053), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1087), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_open] = ACTIONS(533), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(7647), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3876] = { - [sym_lambda_clause] = STATE(725), - [sym_lambda_clause_absurd] = STATE(720), - [sym_literal] = STATE(703), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4733), - [sym__atom_no_curly] = STATE(721), - [aux_sym__open_args1_repeat1] = STATE(722), - [sym_catchall_pragma] = STATE(723), - [sym_do] = STATE(4733), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(724), - [sym__atom_curly] = STATE(721), - [sym__lambda_clauses_no_single_absurd] = STATE(725), - [sym_record_assignments] = STATE(703), - [sym__application] = STATE(4733), - [sym__expr2] = STATE(4733), - [sym_lambda] = STATE(4733), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1099), - [sym_qualified_name] = ACTIONS(1101), - [anon_sym_quoteTerm] = ACTIONS(1101), - [sym__const_right_arrow] = ACTIONS(1103), - [anon_sym_do] = ACTIONS(91), - [sym__const_ellipsis] = ACTIONS(1101), - [anon_sym_record] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1101), - [anon_sym_quote] = ACTIONS(1101), - [anon_sym_] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_LBRACE_DASH_POUND] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1101), - [anon_sym_unquote] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(1115), - [anon_sym_Set] = ACTIONS(1101), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(1119), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1121), - [anon_sym_LPAREN_PIPE] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1125), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(1129), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(1101), - [anon_sym_3] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(7647), + [sym_pragma] = ACTIONS(3), }, [3877] = { - [sym__newline] = ACTIONS(1137), - [anon_sym__] = ACTIONS(1139), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1137), - [anon_sym_] = ACTIONS(1139), - [anon_sym_in] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1137), - [anon_sym_LBRACE] = ACTIONS(1139), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(1137), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1139), - [sym_name] = ACTIONS(1139), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_rewrite] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3878] = { - [sym_typed_binding] = STATE(3878), - [sym_anonymous_name] = STATE(3877), - [sym_untyped_binding] = STATE(3878), - [sym__lambda_binding] = STATE(670), - [sym__binding_name] = STATE(3880), - [sym__newline] = ACTIONS(1141), - [anon_sym__] = ACTIONS(6259), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6261), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_] = ACTIONS(6263), - [anon_sym_DOT] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(7674), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1143), - [anon_sym_DOT_DOT] = ACTIONS(6271), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1143), - [sym_name] = ACTIONS(6273), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_rewrite] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3879] = { - [sym__newline] = ACTIONS(1147), - [anon_sym_where] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7676), + [anon_sym_RBRACE] = ACTIONS(7649), [sym_pragma] = ACTIONS(3), }, [3880] = { - [sym__newline] = ACTIONS(1151), - [anon_sym__] = ACTIONS(1153), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1151), - [anon_sym_] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1151), - [anon_sym_LBRACE] = ACTIONS(1153), + [sym__field_assignments1] = STATE(4741), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7649), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1153), - [anon_sym_DOT_DOT] = ACTIONS(1151), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(1153), - [sym_name] = ACTIONS(1153), }, [3881] = { - [anon_sym_RPAREN] = ACTIONS(7662), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_rewrite] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3882] = { - [anon_sym_in] = ACTIONS(7678), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2577), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(7018), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4020), }, [3883] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4738), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7680), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(2585), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(7020), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(4026), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [3884] = { - [anon_sym_LBRACE] = ACTIONS(7682), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(6715), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(6715), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [3885] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7662), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [3886] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6255), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7651), + [sym_pragma] = ACTIONS(3), }, [3887] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3888] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(6279), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [3889] = { - [sym__atom_no_curly] = STATE(2691), - [sym_literal] = STATE(2674), - [sym_record_assignments] = STATE(2674), - [sym__atom_curly] = STATE(2691), - [sym_atom] = STATE(3866), - [anon_sym__] = ACTIONS(4285), - [anon_sym_unquote] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6341), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(6343), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [anon_sym_] = ACTIONS(6339), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(6345), - [anon_sym_3] = ACTIONS(4315), - [aux_sym_string_token1] = ACTIONS(4311), - [anon_sym_Prop] = ACTIONS(4285), + [anon_sym_COLON] = ACTIONS(7653), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7655), }, [3890] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - }, - [3891] = { + [anon_sym_COLON] = ACTIONS(7657), + [anon_sym_2] = ACTIONS(7655), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7662), + }, + [3891] = { + [sym__expr2] = STATE(4746), + [sym_do] = STATE(4746), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4746), + [sym_lambda] = STATE(4746), + [sym__application] = STATE(4746), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3892] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym__expr2] = STATE(4747), + [sym_do] = STATE(4747), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4747), + [sym_lambda] = STATE(4747), + [sym__application] = STATE(4747), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3893] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7684), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4748), + [sym_do] = STATE(4748), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4748), + [sym_lambda] = STATE(4748), + [sym__application] = STATE(4748), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3894] = { - [sym__newline] = ACTIONS(121), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_Prop] = ACTIONS(119), + [sym__expr2] = STATE(4749), + [sym_do] = STATE(4749), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4749), + [sym_lambda] = STATE(4749), + [sym__application] = STATE(4749), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3895] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4742), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7686), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3896] = { - [sym__newline] = ACTIONS(255), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_Prop] = ACTIONS(253), + [anon_sym_COLON] = ACTIONS(7659), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3897] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4743), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7686), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(7661), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3898] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4745), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7688), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(7663), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7655), + [sym_pragma] = ACTIONS(3), }, [3899] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4746), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7690), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__expr2] = STATE(4753), + [sym_do] = STATE(4753), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4753), + [sym_lambda] = STATE(4753), + [sym__application] = STATE(4753), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [3900] = { - [sym__atom_no_curly] = STATE(3904), - [sym_literal] = STATE(3894), - [sym_record_assignments] = STATE(3894), - [sym__atom_curly] = STATE(3904), - [sym_atom] = STATE(4741), - [anon_sym__] = ACTIONS(6293), - [anon_sym_unquote] = ACTIONS(6293), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6295), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6297), - [anon_sym_Set] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6299), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6293), - [anon_sym_quoteTerm] = ACTIONS(6293), - [anon_sym_quote] = ACTIONS(6293), - [sym__const_ellipsis] = ACTIONS(6293), - [anon_sym_record] = ACTIONS(6301), - [anon_sym_QMARK] = ACTIONS(6293), - [anon_sym_] = ACTIONS(6303), - [anon_sym_DOT] = ACTIONS(6305), - [anon_sym_LPAREN_PIPE] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6309), - [anon_sym_3] = ACTIONS(6311), - [aux_sym_string_token1] = ACTIONS(6313), - [anon_sym_Prop] = ACTIONS(6293), + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [3901] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4747), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3902] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4749), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7692), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7665), }, [3903] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4750), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3904] = { - [sym__newline] = ACTIONS(441), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_Prop] = ACTIONS(439), + [anon_sym_PIPE_RPAREN] = ACTIONS(7665), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3905] = { - [sym__atom_no_curly] = STATE(3904), - [sym_literal] = STATE(3894), - [sym_record_assignments] = STATE(3894), - [sym__atom_curly] = STATE(3904), - [sym_atom] = STATE(4751), - [aux_sym__open_args1_repeat1] = STATE(4751), - [sym__newline] = ACTIONS(1455), - [anon_sym__] = ACTIONS(6293), - [anon_sym_unquote] = ACTIONS(6293), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6295), - [anon_sym_in] = ACTIONS(425), - [aux_sym_integer_token1] = ACTIONS(6297), - [anon_sym_Set] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6299), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(425), - [sym_qualified_name] = ACTIONS(6293), - [anon_sym_quoteTerm] = ACTIONS(6293), - [anon_sym_quote] = ACTIONS(6293), - [sym__const_ellipsis] = ACTIONS(6293), - [anon_sym_record] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(6293), - [anon_sym_] = ACTIONS(6303), - [anon_sym_DOT] = ACTIONS(6305), - [anon_sym_LPAREN_PIPE] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6309), - [anon_sym_3] = ACTIONS(6311), - [aux_sym_string_token1] = ACTIONS(6313), - [anon_sym_Prop] = ACTIONS(6293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7665), }, [3906] = { - [sym__newline] = ACTIONS(1457), - [anon_sym_where] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(7694), - [anon_sym_in] = ACTIONS(1457), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4756), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7667), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3907] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(929), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(7669), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3908] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7662), + [anon_sym_2] = ACTIONS(7665), [sym_pragma] = ACTIONS(3), }, [3909] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3910] = { - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(7671), + [sym_pragma] = ACTIONS(3), }, [3911] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), + [sym__atom_curly] = STATE(2654), + [sym__atom_no_curly] = STATE(2654), + [sym_literal] = STATE(2644), + [sym_record_assignments] = STATE(2644), + [sym_atom] = STATE(3911), + [aux_sym__open_args1_repeat1] = STATE(3911), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7673), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7676), + [anon_sym_quoteTerm] = ACTIONS(7673), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7679), + [anon_sym_QMARK] = ACTIONS(7673), + [anon_sym_LPAREN] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7685), + [sym_qualified_name] = ACTIONS(7673), + [anon_sym_quote] = ACTIONS(7673), + [anon_sym_3] = ACTIONS(7688), + [anon_sym_Prop] = ACTIONS(7673), + [sym__const_ellipsis] = ACTIONS(7673), + [anon_sym_record] = ACTIONS(7691), + [anon_sym_] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7697), + [anon_sym_unquote] = ACTIONS(7673), + [anon_sym_LBRACE] = ACTIONS(7700), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(7703), + [anon_sym_Set] = ACTIONS(7673), + [anon_sym_module] = ACTIONS(1527), }, [3912] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4754), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7696), + [sym_literal] = STATE(2678), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2688), + [sym__atom_no_curly] = STATE(2688), + [aux_sym__open_args1_repeat1] = STATE(2689), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2690), + [sym_record_assignments] = STATE(2678), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(4158), + [anon_sym_quoteTerm] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(4160), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4164), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4166), + [sym_qualified_name] = ACTIONS(4158), + [anon_sym_quote] = ACTIONS(4158), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(4158), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(4168), + [sym__const_ellipsis] = ACTIONS(4158), + [anon_sym_3] = ACTIONS(4170), + [anon_sym_] = ACTIONS(4172), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4158), + [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_LBRACE] = ACTIONS(4176), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(4178), + [anon_sym_Set] = ACTIONS(4158), }, [3913] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4755), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7696), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3914] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4757), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7698), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), - }, - [3915] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4758), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), + [sym_primitive] = STATE(4760), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4760), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4760), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4760), + [sym_abstract] = STATE(4760), + [sym_private] = STATE(4760), + [sym_function_clause] = STATE(4760), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4760), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4760), + [sym_data] = STATE(4760), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4760), + [sym_macro] = STATE(4760), + [sym_test] = STATE(4760), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4760), + [sym_record_signature_only] = STATE(4760), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4760), + [sym_syntax] = STATE(4760), + [sym_record] = STATE(4760), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4760), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4760), + [sym_mutual] = STATE(4760), + [sym_postulate] = STATE(4760), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), + [anon_sym_3] = ACTIONS(151), [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, + [3915] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), }, [3916] = { - [sym__atom_no_curly] = STATE(3920), - [sym_literal] = STATE(3910), - [sym_record_assignments] = STATE(3910), - [sym__atom_curly] = STATE(3920), - [sym_atom] = STATE(4753), - [anon_sym__] = ACTIONS(6317), - [anon_sym_unquote] = ACTIONS(6317), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6321), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6319), - [anon_sym_Set] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(6323), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6317), - [anon_sym_quoteTerm] = ACTIONS(6317), - [anon_sym_quote] = ACTIONS(6317), - [sym__const_ellipsis] = ACTIONS(6317), - [anon_sym_record] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6317), - [anon_sym_] = ACTIONS(6327), - [anon_sym_DOT] = ACTIONS(6329), - [anon_sym_LPAREN_PIPE] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6333), - [anon_sym_3] = ACTIONS(6337), - [aux_sym_string_token1] = ACTIONS(6335), - [anon_sym_Prop] = ACTIONS(6317), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3917] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4759), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3918] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4761), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7702), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7708), + [sym_pragma] = ACTIONS(3), }, [3919] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4762), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__field_assignments1] = STATE(4762), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3920] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [3921] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3922), - [sym__atom_curly] = STATE(3920), - [sym_literal] = STATE(3910), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(3920), - [sym_record_assignments] = STATE(3910), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [anon_sym__] = ACTIONS(6317), - [anon_sym_unquote] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(6319), - [anon_sym_Set] = ACTIONS(6317), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6323), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6317), - [anon_sym_quoteTerm] = ACTIONS(6317), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6317), - [sym__const_ellipsis] = ACTIONS(6317), - [anon_sym_record] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(6317), - [anon_sym_] = ACTIONS(6327), - [anon_sym_DOT] = ACTIONS(6329), - [anon_sym_LPAREN_PIPE] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6333), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(6335), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(6317), - [anon_sym_3] = ACTIONS(6337), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3922] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7710), }, [3923] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(3867), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6255), + [anon_sym_RPAREN] = ACTIONS(7710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3924] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(3881), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(6255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_PIPE_RPAREN] = ACTIONS(7710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3925] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(3885), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(6279), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4765), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3926] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(3893), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(7714), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3927] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7710), }, [3928] = { - [sym__newline] = ACTIONS(7704), - [anon_sym_COLON] = ACTIONS(7704), - [anon_sym_with] = ACTIONS(7704), [sym_comment] = ACTIONS(3), - [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_2] = ACTIONS(7710), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(7704), - [anon_sym_where] = ACTIONS(7704), - [anon_sym_rewrite] = ACTIONS(7704), - [anon_sym_module] = ACTIONS(7704), }, [3929] = { - [aux_sym_syntax_repeat2] = STATE(4763), - [sym__newline] = ACTIONS(6127), - [anon_sym_in] = ACTIONS(7706), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3930] = { - [sym_literal] = STATE(1550), - [sym__typed_bindings1] = STATE(1560), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym__let_in] = STATE(37), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7716), + [sym_pragma] = ACTIONS(3), + }, + [3931] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1561), - [aux_sym__open_args1_repeat1] = STATE(1562), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1563), - [sym__atom_curly] = STATE(1561), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1550), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1564), - [anon_sym__] = ACTIONS(2486), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2488), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(2490), - [anon_sym_Set] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_unquote] = ACTIONS(2486), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2486), - [anon_sym_quoteTerm] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2486), - [sym__const_ellipsis] = ACTIONS(2486), - [anon_sym_record] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(2486), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2496), - [anon_sym_DOT] = ACTIONS(2498), - [anon_sym_LPAREN_PIPE] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(2504), - [sym__const_forall] = ACTIONS(225), - [anon_sym_Prop] = ACTIONS(2486), - [anon_sym_3] = ACTIONS(2506), - }, - [3931] = { - [sym_comment] = ACTIONS(3), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7710), }, [3932] = { + [anon_sym_COLON] = ACTIONS(7718), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7710), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7720), }, [3933] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4765), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(7722), + [anon_sym_2] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3934] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_rewrite] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym__expr2] = STATE(4771), + [sym_do] = STATE(4771), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4771), + [sym_lambda] = STATE(4771), + [sym__application] = STATE(4771), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3935] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4766), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4772), + [sym_do] = STATE(4772), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4772), + [sym_lambda] = STATE(4772), + [sym__application] = STATE(4772), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3936] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4767), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4773), + [sym_do] = STATE(4773), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4773), + [sym_lambda] = STATE(4773), + [sym__application] = STATE(4773), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3937] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4768), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__expr2] = STATE(4774), + [sym_do] = STATE(4774), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4774), + [sym_lambda] = STATE(4774), + [sym__application] = STATE(4774), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3938] = { - [anon_sym_RPAREN] = ACTIONS(7710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3939] = { + [anon_sym_COLON] = ACTIONS(7724), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7710), [sym_pragma] = ACTIONS(3), }, [3940] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(6867), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(6867), + [anon_sym_RPAREN] = ACTIONS(7726), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [3941] = { - [sym_import_directive] = STATE(4769), - [aux_sym_module_macro_repeat1] = STATE(4769), - [sym__newline] = ACTIONS(6867), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(6867), + [anon_sym_COLON] = ACTIONS(7728), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7720), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [3942] = { - [sym_import_directive] = STATE(4770), - [aux_sym_module_macro_repeat1] = STATE(4770), - [sym__newline] = ACTIONS(6869), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(6869), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(4778), + [sym_do] = STATE(4778), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4778), + [sym_lambda] = STATE(4778), + [sym__application] = STATE(4778), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [3943] = { - [sym_module_application] = STATE(4771), - [sym_qualified_name] = ACTIONS(4428), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), [sym_pragma] = ACTIONS(3), }, [3944] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_renaming] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_using] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_hiding] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_public] = ACTIONS(2065), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3945] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_renaming] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_using] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_hiding] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3946] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7712), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7730), }, [3947] = { - [sym__field_assignments1] = STATE(4773), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7730), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3948] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_renaming] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_using] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_hiding] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), + [anon_sym_PIPE_RPAREN] = ACTIONS(7730), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3949] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_rewrite] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7730), }, [3950] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_rewrite] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4781), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7732), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3951] = { + [anon_sym_LBRACE] = ACTIONS(7734), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7714), [sym_pragma] = ACTIONS(3), }, [3952] = { - [sym__field_assignments1] = STATE(4775), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7714), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7730), [sym_pragma] = ACTIONS(3), }, [3953] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_rewrite] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [3954] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [3955] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7736), [sym_pragma] = ACTIONS(3), }, + [3955] = { + [sym__atom_curly] = STATE(2716), + [sym__atom_no_curly] = STATE(2716), + [sym_literal] = STATE(2706), + [sym_record_assignments] = STATE(2706), + [sym_atom] = STATE(3955), + [aux_sym__open_args1_repeat1] = STATE(3955), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7738), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7741), + [anon_sym_quoteTerm] = ACTIONS(7738), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7744), + [anon_sym_QMARK] = ACTIONS(7738), + [anon_sym_LPAREN] = ACTIONS(7747), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7750), + [sym_qualified_name] = ACTIONS(7738), + [anon_sym_quote] = ACTIONS(7738), + [anon_sym_3] = ACTIONS(7753), + [anon_sym_Prop] = ACTIONS(7738), + [sym__const_ellipsis] = ACTIONS(7738), + [anon_sym_record] = ACTIONS(7756), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(7759), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(7762), + [anon_sym_unquote] = ACTIONS(7738), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(7768), + [anon_sym_Set] = ACTIONS(7738), + [anon_sym_module] = ACTIONS(1527), + }, [3956] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(2720), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(6997), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(4345), + [sym_literal] = STATE(1448), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1463), + [sym__atom_no_curly] = STATE(1463), + [aux_sym__open_args1_repeat1] = STATE(1464), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1465), + [sym_record_assignments] = STATE(1448), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2392), + [anon_sym_quoteTerm] = ACTIONS(2392), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(2396), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2404), + [sym_qualified_name] = ACTIONS(2392), + [anon_sym_quote] = ACTIONS(2392), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(2410), + [sym__const_ellipsis] = ACTIONS(2392), + [anon_sym_3] = ACTIONS(2412), + [anon_sym_] = ACTIONS(2414), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2418), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(2422), + [anon_sym_Set] = ACTIONS(2392), }, [3957] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(2726), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(6999), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(4351), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), - }, - [3958] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(6869), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(6869), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), - }, - [3959] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7718), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7771), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [3960] = { - [sym_primitive] = STATE(4778), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4778), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4778), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4778), - [sym_abstract] = STATE(4778), - [sym_private] = STATE(4778), - [sym_function_clause] = STATE(4778), - [sym_lhs_decl] = STATE(155), + [3958] = { + [sym_primitive] = STATE(4785), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4785), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4785), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4785), + [sym_abstract] = STATE(4785), + [sym_private] = STATE(4785), + [sym_function_clause] = STATE(4785), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4778), + [sym_open] = STATE(4785), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4785), + [sym_data] = STATE(4785), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4778), - [sym_data] = STATE(4778), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4778), - [sym_macro] = STATE(4778), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4778), - [sym_record_signature_only] = STATE(4778), - [sym_atom] = STATE(158), + [sym_instance] = STATE(4785), + [sym_macro] = STATE(4785), + [sym_test] = STATE(4785), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4785), + [sym_record_signature_only] = STATE(4785), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4785), + [sym_syntax] = STATE(4785), + [sym_record] = STATE(4785), [sym_do] = STATE(43), - [sym_pattern] = STATE(4778), - [sym_syntax] = STATE(4778), - [sym_record] = STATE(4778), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4778), - [sym_generalize] = STATE(4778), - [sym_mutual] = STATE(4778), - [sym_postulate] = STATE(4778), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4785), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4785), + [sym_mutual] = STATE(4785), + [sym_postulate] = STATE(4785), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [3961] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), + [3959] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), + [sym_pragma] = ACTIONS(3), + }, + [3960] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + }, + [3961] = { + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [3962] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7718), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7773), [sym_pragma] = ACTIONS(3), }, [3963] = { - [anon_sym_COLON] = ACTIONS(7720), + [sym__field_assignments1] = STATE(4787), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7773), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7722), }, [3964] = { - [anon_sym_COLON] = ACTIONS(7724), - [anon_sym_2] = ACTIONS(7722), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), + }, + [3965] = { + [sym__newline] = ACTIONS(121), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [3965] = { - [sym_do] = STATE(4782), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4782), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4782), - [sym_lambda] = STATE(4782), - [sym__application] = STATE(4782), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [3966] = { - [sym_do] = STATE(4783), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4783), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4783), - [sym_lambda] = STATE(4783), - [sym__application] = STATE(4783), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4789), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7775), }, [3967] = { - [sym_do] = STATE(4784), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4784), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4784), - [sym_lambda] = STATE(4784), - [sym__application] = STATE(4784), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [3968] = { - [sym_do] = STATE(4785), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4785), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4785), - [sym_lambda] = STATE(4785), - [sym__application] = STATE(4785), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4790), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(7775), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [3969] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4792), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7777), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [3970] = { - [anon_sym_RPAREN] = ACTIONS(7726), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4793), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), [sym_pragma] = ACTIONS(3), }, [3971] = { - [anon_sym_COLON] = ACTIONS(7728), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4794), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7779), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [3972] = { - [anon_sym_COLON] = ACTIONS(7730), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7722), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4795), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [3973] = { - [sym_do] = STATE(4789), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4789), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4789), - [sym_lambda] = STATE(4789), - [sym__application] = STATE(4789), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_literal] = STATE(3965), + [sym_record_assignments] = STATE(3965), + [sym_atom] = STATE(4788), + [anon_sym__] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6309), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_LPAREN] = ACTIONS(7783), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_Prop] = ACTIONS(6305), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_record] = ACTIONS(6313), + [anon_sym_] = ACTIONS(7785), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_DOT] = ACTIONS(7787), + [anon_sym_LBRACE] = ACTIONS(7789), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), }, [3974] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4802), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [3975] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [3976] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_literal] = STATE(3965), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(3978), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_record_assignments] = STATE(3965), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_] = ACTIONS(7793), + [anon_sym__] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7795), + [anon_sym_LPAREN] = ACTIONS(7797), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_DOT] = ACTIONS(7787), + [anon_sym_LBRACE] = ACTIONS(7799), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), }, [3977] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [3978] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7732), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7801), + [anon_sym_PIPE] = ACTIONS(479), + }, + [3978] = { + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [3979] = { - [sym__field_assignments1] = STATE(4791), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7732), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7801), }, [3980] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [3981] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [3982] = { + [anon_sym_COLON] = ACTIONS(7803), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7734), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7805), }, [3983] = { - [anon_sym_RPAREN] = ACTIONS(7734), + [anon_sym_COLON] = ACTIONS(7807), + [anon_sym_2] = ACTIONS(7805), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [3984] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4794), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7736), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4811), + [sym_do] = STATE(4811), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4811), + [sym_lambda] = STATE(4811), + [sym__application] = STATE(4811), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3985] = { - [anon_sym_LBRACE] = ACTIONS(7738), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4812), + [sym_do] = STATE(4812), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4812), + [sym_lambda] = STATE(4812), + [sym__application] = STATE(4812), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3986] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7734), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4813), + [sym_do] = STATE(4813), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4813), + [sym_lambda] = STATE(4813), + [sym__application] = STATE(4813), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [3987] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7734), + [sym__expr2] = STATE(4814), + [sym_do] = STATE(4814), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4814), + [sym_lambda] = STATE(4814), + [sym__application] = STATE(4814), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [3988] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [3989] = { + [anon_sym_COLON] = ACTIONS(7809), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7740), [sym_pragma] = ACTIONS(3), }, [3990] = { + [anon_sym_RPAREN] = ACTIONS(7811), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7734), [sym_pragma] = ACTIONS(3), }, [3991] = { - [sym__atom_no_curly] = STATE(2795), - [sym_literal] = STATE(2785), - [sym_record_assignments] = STATE(2785), - [sym__atom_curly] = STATE(2795), - [sym_atom] = STATE(3991), - [aux_sym__open_args1_repeat1] = STATE(3991), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7742), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7745), - [anon_sym_unquote] = ACTIONS(7742), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(7748), - [anon_sym_Set] = ACTIONS(7742), - [anon_sym_LPAREN] = ACTIONS(7751), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7742), - [anon_sym_quoteTerm] = ACTIONS(7742), - [anon_sym_quote] = ACTIONS(7742), - [sym__const_ellipsis] = ACTIONS(7742), - [anon_sym_record] = ACTIONS(7754), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(7760), - [anon_sym_QMARK] = ACTIONS(7742), - [anon_sym_LBRACE] = ACTIONS(7763), - [anon_sym_LPAREN_PIPE] = ACTIONS(7766), - [aux_sym_string_token1] = ACTIONS(7769), - [anon_sym_Prop] = ACTIONS(7742), - [anon_sym_3] = ACTIONS(7772), - [anon_sym_module] = ACTIONS(1683), + [anon_sym_COLON] = ACTIONS(7813), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7805), + [sym_pragma] = ACTIONS(3), }, [3992] = { - [sym_literal] = STATE(1582), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1597), + [sym__expr2] = STATE(4818), + [sym_do] = STATE(4818), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4818), + [sym_lambda] = STATE(4818), + [sym__application] = STATE(4818), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), + }, + [3993] = { [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1598), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1599), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1600), - [sym__atom_curly] = STATE(1598), - [sym_record_assignments] = STATE(1582), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2522), - [anon_sym_unquote] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(2528), - [anon_sym_Set] = ACTIONS(2522), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2522), - [anon_sym_quoteTerm] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2522), - [sym__const_ellipsis] = ACTIONS(2522), - [anon_sym_record] = ACTIONS(2536), - [anon_sym_QMARK] = ACTIONS(2522), - [anon_sym_] = ACTIONS(2538), - [anon_sym_DOT] = ACTIONS(2540), - [anon_sym_LPAREN_PIPE] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(2548), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(2522), - [anon_sym_3] = ACTIONS(2552), - }, - [3993] = { - [sym__newline] = ACTIONS(121), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), }, [3994] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4798), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7775), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [3995] = { - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7815), }, [3996] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4799), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(7775), + [anon_sym_RPAREN] = ACTIONS(7815), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), }, [3997] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4801), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7777), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [anon_sym_PIPE_RPAREN] = ACTIONS(7815), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [3998] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4802), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7779), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7815), }, [3999] = { - [sym__atom_no_curly] = STATE(4004), - [sym_literal] = STATE(3993), - [sym_record_assignments] = STATE(3993), - [sym__atom_curly] = STATE(4004), - [sym_atom] = STATE(4797), - [anon_sym__] = ACTIONS(6466), - [anon_sym_unquote] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7781), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4821), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7817), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(7783), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [anon_sym_] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7787), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(7789), - [anon_sym_3] = ACTIONS(6486), - [aux_sym_string_token1] = ACTIONS(6484), - [anon_sym_Prop] = ACTIONS(6466), }, [4000] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4808), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(7819), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4001] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4810), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7815), + [sym_pragma] = ACTIONS(3), }, [4002] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4811), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4003] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7821), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7793), }, [4004] = { - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym__atom_curly] = STATE(2753), + [sym__atom_no_curly] = STATE(2753), + [sym_literal] = STATE(2743), + [sym_record_assignments] = STATE(2743), + [sym_atom] = STATE(4004), + [aux_sym__open_args1_repeat1] = STATE(4004), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(7823), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7826), + [anon_sym_quoteTerm] = ACTIONS(7823), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(7829), + [anon_sym_QMARK] = ACTIONS(7823), + [anon_sym_LPAREN] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7835), + [sym_qualified_name] = ACTIONS(7823), + [anon_sym_quote] = ACTIONS(7823), + [anon_sym_3] = ACTIONS(7838), + [anon_sym_Prop] = ACTIONS(7823), + [sym__const_ellipsis] = ACTIONS(7823), + [anon_sym_record] = ACTIONS(7841), + [anon_sym_] = ACTIONS(7844), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(7847), + [anon_sym_unquote] = ACTIONS(7823), + [anon_sym_LBRACE] = ACTIONS(7850), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(7853), + [anon_sym_Set] = ACTIONS(7823), + [anon_sym_module] = ACTIONS(1527), }, [4005] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_literal] = STATE(3993), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(4004), - [sym_record_assignments] = STATE(3993), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2530), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [anon_sym_] = ACTIONS(7795), - [anon_sym__] = ACTIONS(6466), - [anon_sym_unquote] = ACTIONS(6466), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7797), - [anon_sym_LPAREN] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(7787), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(7801), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [sym_literal] = STATE(2777), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2787), + [sym__atom_no_curly] = STATE(2787), + [aux_sym__open_args1_repeat1] = STATE(2788), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2789), + [sym_record_assignments] = STATE(2777), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(4300), + [anon_sym_quoteTerm] = ACTIONS(4300), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(4302), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4304), + [anon_sym_LPAREN] = ACTIONS(4306), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4308), + [sym_qualified_name] = ACTIONS(4300), + [anon_sym_quote] = ACTIONS(4300), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(4300), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(4310), + [sym__const_ellipsis] = ACTIONS(4300), + [anon_sym_3] = ACTIONS(4312), + [anon_sym_] = ACTIONS(4314), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4300), + [anon_sym_DOT] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4318), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(4320), + [anon_sym_Set] = ACTIONS(4300), }, [4006] = { - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_EQ] = ACTIONS(467), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), - }, - [4007] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7856), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7793), + }, + [4007] = { + [sym_primitive] = STATE(4825), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4825), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4825), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4825), + [sym_abstract] = STATE(4825), + [sym_private] = STATE(4825), + [sym_function_clause] = STATE(4825), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4825), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4825), + [sym_data] = STATE(4825), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4825), + [sym_macro] = STATE(4825), + [sym_test] = STATE(4825), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4825), + [sym_record_signature_only] = STATE(4825), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4825), + [sym_syntax] = STATE(4825), + [sym_record] = STATE(4825), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4825), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4825), + [sym_mutual] = STATE(4825), + [sym_postulate] = STATE(4825), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4008] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), + [sym_pragma] = ACTIONS(3), }, [4009] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7803), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7856), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4010] = { - [sym_primitive] = STATE(4818), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4818), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4818), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4818), - [sym_abstract] = STATE(4818), - [sym_private] = STATE(4818), - [sym_function_clause] = STATE(4818), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4818), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4818), - [sym_data] = STATE(4818), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4818), - [sym_macro] = STATE(4818), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4818), - [sym_record_signature_only] = STATE(4818), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4818), - [sym_syntax] = STATE(4818), - [sym_record] = STATE(4818), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4818), - [sym_generalize] = STATE(4818), - [sym_mutual] = STATE(4818), - [sym_postulate] = STATE(4818), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4011] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7858), + [sym_pragma] = ACTIONS(3), }, [4012] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7803), + [sym__field_assignments1] = STATE(4827), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7858), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4013] = { - [anon_sym_COLON] = ACTIONS(7805), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7807), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4014] = { - [anon_sym_COLON] = ACTIONS(7809), - [anon_sym_2] = ACTIONS(7807), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4015] = { - [sym_do] = STATE(4822), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4822), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4822), - [sym_lambda] = STATE(4822), - [sym__application] = STATE(4822), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7860), }, [4016] = { - [sym_do] = STATE(4823), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4823), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4823), - [sym_lambda] = STATE(4823), - [sym__application] = STATE(4823), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4017] = { - [sym_do] = STATE(4824), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4824), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4824), - [sym_lambda] = STATE(4824), - [sym__application] = STATE(4824), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_PIPE_RPAREN] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4018] = { - [sym_do] = STATE(4825), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4825), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4825), - [sym_lambda] = STATE(4825), - [sym__application] = STATE(4825), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4830), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4019] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(7864), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_EQ] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), }, [4020] = { - [anon_sym_RPAREN] = ACTIONS(7811), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7860), }, [4021] = { - [anon_sym_COLON] = ACTIONS(7813), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7860), [sym_pragma] = ACTIONS(3), }, [4022] = { - [anon_sym_COLON] = ACTIONS(7815), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7807), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4023] = { - [sym_do] = STATE(4829), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4829), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4829), - [sym_lambda] = STATE(4829), - [sym__application] = STATE(4829), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7866), + [sym_pragma] = ACTIONS(3), }, [4024] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), + [sym_pragma] = ACTIONS(3), }, [4025] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [anon_sym_COLON] = ACTIONS(7868), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7870), }, [4026] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [4027] = { + [anon_sym_COLON] = ACTIONS(7872), + [anon_sym_2] = ACTIONS(7870), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7817), [sym_pragma] = ACTIONS(3), }, + [4027] = { + [sym__expr2] = STATE(4836), + [sym_do] = STATE(4836), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4836), + [sym_lambda] = STATE(4836), + [sym__application] = STATE(4836), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, [4028] = { - [sym__field_assignments1] = STATE(4831), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7817), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4837), + [sym_do] = STATE(4837), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4837), + [sym_lambda] = STATE(4837), + [sym__application] = STATE(4837), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4029] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__expr2] = STATE(4838), + [sym_do] = STATE(4838), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4838), + [sym_lambda] = STATE(4838), + [sym__application] = STATE(4838), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4030] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym__expr2] = STATE(4839), + [sym_do] = STATE(4839), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4839), + [sym_lambda] = STATE(4839), + [sym__application] = STATE(4839), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4031] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7819), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym__newline] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [4032] = { - [anon_sym_RPAREN] = ACTIONS(7819), + [anon_sym_COLON] = ACTIONS(7874), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4033] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4834), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7821), + [anon_sym_RPAREN] = ACTIONS(7876), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4034] = { - [anon_sym_LBRACE] = ACTIONS(7823), + [anon_sym_COLON] = ACTIONS(7878), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7870), [sym_pragma] = ACTIONS(3), }, [4035] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7819), + [sym__expr2] = STATE(4843), + [sym_do] = STATE(4843), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4843), + [sym_lambda] = STATE(4843), + [sym__application] = STATE(4843), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [4036] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7819), }, [4037] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4038] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7825), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4039] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7819), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7880), }, [4040] = { - [sym__atom_no_curly] = STATE(2838), - [sym_literal] = STATE(2828), - [sym_record_assignments] = STATE(2828), - [sym__atom_curly] = STATE(2838), - [sym_atom] = STATE(4040), - [aux_sym__open_args1_repeat1] = STATE(4040), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7827), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7830), - [anon_sym_unquote] = ACTIONS(7827), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(7833), - [anon_sym_Set] = ACTIONS(7827), - [anon_sym_LPAREN] = ACTIONS(7836), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7827), - [anon_sym_quoteTerm] = ACTIONS(7827), - [anon_sym_quote] = ACTIONS(7827), - [sym__const_ellipsis] = ACTIONS(7827), - [anon_sym_record] = ACTIONS(7839), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7827), - [anon_sym_] = ACTIONS(7842), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(7845), - [anon_sym_LPAREN_PIPE] = ACTIONS(7848), - [anon_sym_LBRACE] = ACTIONS(7851), - [anon_sym_3] = ACTIONS(7854), - [aux_sym_string_token1] = ACTIONS(7857), - [anon_sym_Prop] = ACTIONS(7827), - [anon_sym_module] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(7880), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4041] = { - [sym_literal] = STATE(2844), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2854), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2855), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2856), - [sym__atom_curly] = STATE(2854), - [sym_record_assignments] = STATE(2844), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4546), - [anon_sym_unquote] = ACTIONS(4546), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(4548), - [anon_sym_Set] = ACTIONS(4546), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4550), - [anon_sym_LPAREN] = ACTIONS(4552), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4546), - [anon_sym_quoteTerm] = ACTIONS(4546), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4546), - [sym__const_ellipsis] = ACTIONS(4546), - [anon_sym_record] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_LPAREN_PIPE] = ACTIONS(4560), - [anon_sym_LBRACE] = ACTIONS(4562), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(4564), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(4546), - [anon_sym_3] = ACTIONS(4566), + [anon_sym_PIPE_RPAREN] = ACTIONS(7880), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4042] = { - [sym__newline] = ACTIONS(811), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_4] = ACTIONS(7880), }, [4043] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4846), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7882), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7860), }, [4044] = { - [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LBRACE] = ACTIONS(7884), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4045] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4839), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7862), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7880), [sym_pragma] = ACTIONS(3), }, [4046] = { - [anon_sym_LBRACE] = ACTIONS(7864), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4047] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7860), + [anon_sym_RBRACE] = ACTIONS(7886), [sym_pragma] = ACTIONS(3), }, [4048] = { - [sym_comment] = ACTIONS(3), + [sym__atom_curly] = STATE(2815), + [sym__atom_no_curly] = STATE(2815), + [sym_literal] = STATE(2805), + [sym_record_assignments] = STATE(2805), + [sym_atom] = STATE(4048), + [aux_sym__open_args1_repeat1] = STATE(4048), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(7888), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7891), + [anon_sym_quoteTerm] = ACTIONS(7888), + [sym__newline] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(7894), + [anon_sym_QMARK] = ACTIONS(7888), + [anon_sym_LPAREN] = ACTIONS(7897), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7900), + [sym_qualified_name] = ACTIONS(7888), + [anon_sym_quote] = ACTIONS(7888), + [anon_sym_3] = ACTIONS(7903), + [anon_sym_Prop] = ACTIONS(7888), + [sym__const_ellipsis] = ACTIONS(7888), + [anon_sym_record] = ACTIONS(7906), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7860), + [anon_sym_with] = ACTIONS(1527), + [anon_sym_] = ACTIONS(7909), + [anon_sym_DOT] = ACTIONS(7912), + [anon_sym_unquote] = ACTIONS(7888), + [anon_sym_LBRACE] = ACTIONS(7915), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(7918), + [anon_sym_Set] = ACTIONS(7888), + [anon_sym_module] = ACTIONS(1527), }, [4049] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_literal] = STATE(1488), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1503), + [sym__atom_no_curly] = STATE(1503), + [aux_sym__open_args1_repeat1] = STATE(1504), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(1505), + [sym_record_assignments] = STATE(1488), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2456), + [anon_sym_quoteTerm] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(2460), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(2456), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2468), + [sym_qualified_name] = ACTIONS(2456), + [anon_sym_quote] = ACTIONS(2456), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(2474), + [sym__const_ellipsis] = ACTIONS(2456), + [anon_sym_3] = ACTIONS(2476), + [anon_sym_] = ACTIONS(2478), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2482), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(2486), + [anon_sym_Set] = ACTIONS(2456), }, [4050] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(7921), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7866), [sym_pragma] = ACTIONS(3), }, [4051] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7860), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(4850), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4850), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4850), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4850), + [sym_abstract] = STATE(4850), + [sym_private] = STATE(4850), + [sym_function_clause] = STATE(4850), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4850), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4850), + [sym_data] = STATE(4850), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4850), + [sym_macro] = STATE(4850), + [sym_test] = STATE(4850), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4850), + [sym_record_signature_only] = STATE(4850), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4850), + [sym_syntax] = STATE(4850), + [sym_record] = STATE(4850), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4850), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4850), + [sym_mutual] = STATE(4850), + [sym_postulate] = STATE(4850), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4052] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(43), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), + [sym_pragma] = ACTIONS(3), }, [4053] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(7921), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7868), [sym_pragma] = ACTIONS(3), }, [4054] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4055] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7870), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7923), [sym_pragma] = ACTIONS(3), }, [4056] = { - [sym_primitive] = STATE(4844), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4844), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4844), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4844), - [sym_abstract] = STATE(4844), - [sym_private] = STATE(4844), - [sym_function_clause] = STATE(4844), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4844), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4844), - [sym_data] = STATE(4844), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4844), - [sym_macro] = STATE(4844), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4844), - [sym_record_signature_only] = STATE(4844), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4844), - [sym_syntax] = STATE(4844), - [sym_record] = STATE(4844), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4844), - [sym_generalize] = STATE(4844), - [sym_mutual] = STATE(4844), - [sym_postulate] = STATE(4844), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__field_assignments1] = STATE(4852), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(7923), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4057] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4058] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7870), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(119), + [sym__newline] = ACTIONS(121), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [sym_qualified_name] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), + [sym__const_right_arrow] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), + [sym__const_ellipsis] = ACTIONS(119), + [anon_sym_record] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_with] = ACTIONS(119), + [anon_sym_] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), + [anon_sym__] = ACTIONS(119), + [anon_sym_LBRACE_LBRACE] = ACTIONS(121), + [sym__const_lambda] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), + [aux_sym_integer_token1] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_where] = ACTIONS(119), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(119), + [sym__const_forall] = ACTIONS(119), + [aux_sym_string_token1] = ACTIONS(121), + [anon_sym_in] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_module] = ACTIONS(119), }, [4059] = { - [anon_sym_COLON] = ACTIONS(7872), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7874), + [sym_let] = STATE(345), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4854), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(345), + [sym_do] = STATE(345), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(345), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(345), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7925), }, [4060] = { - [anon_sym_COLON] = ACTIONS(7876), - [anon_sym_2] = ACTIONS(7874), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(293), + [sym__newline] = ACTIONS(295), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(293), + [anon_sym_LPAREN_PIPE] = ACTIONS(295), + [sym_qualified_name] = ACTIONS(293), + [anon_sym_quote] = ACTIONS(293), + [sym__const_right_arrow] = ACTIONS(293), + [anon_sym_tactic] = ACTIONS(293), + [sym__const_ellipsis] = ACTIONS(293), + [anon_sym_record] = ACTIONS(293), + [anon_sym_let] = ACTIONS(293), + [anon_sym_with] = ACTIONS(293), + [anon_sym_] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(293), + [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(293), + [anon_sym_LBRACE_LBRACE] = ACTIONS(295), + [sym__const_lambda] = ACTIONS(293), + [anon_sym_quoteGoal] = ACTIONS(293), + [aux_sym_integer_token1] = ACTIONS(293), + [anon_sym_do] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(293), + [anon_sym_QMARK] = ACTIONS(293), + [anon_sym_quoteTerm] = ACTIONS(293), + [anon_sym_where] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(293), + [anon_sym_unquote] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(293), + [sym__const_forall] = ACTIONS(293), + [aux_sym_string_token1] = ACTIONS(295), + [anon_sym_in] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(293), + [anon_sym_module] = ACTIONS(293), }, [4061] = { - [sym_do] = STATE(4848), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4848), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4848), - [sym_lambda] = STATE(4848), - [sym__application] = STATE(4848), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_lambda] = STATE(370), + [sym_literal] = STATE(325), + [sym_let] = STATE(370), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4855), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(370), + [sym_do] = STATE(370), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym_open] = STATE(367), + [sym__application] = STATE(370), + [aux_sym__with_expr_repeat1] = STATE(243), + [anon_sym_RPAREN] = ACTIONS(7925), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(97), + [anon_sym_3] = ACTIONS(517), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_] = ACTIONS(515), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_open] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(527), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_import] = ACTIONS(575), + [anon_sym_Set] = ACTIONS(505), }, [4062] = { - [sym_do] = STATE(4849), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4849), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4849), - [sym_lambda] = STATE(4849), - [sym__application] = STATE(4849), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_literal] = STATE(128), + [sym__atom_no_curly] = STATE(138), + [sym_record_assignments] = STATE(128), + [sym__record_name] = STATE(4857), + [anon_sym__] = ACTIONS(195), + [anon_sym_quoteTerm] = ACTIONS(195), + [anon_sym_LBRACE_LBRACE] = ACTIONS(197), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(201), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(203), + [sym_qualified_name] = ACTIONS(195), + [anon_sym_quote] = ACTIONS(195), + [anon_sym_3] = ACTIONS(205), + [anon_sym_Prop] = ACTIONS(195), + [sym__const_ellipsis] = ACTIONS(195), + [anon_sym_record] = ACTIONS(207), + [anon_sym_] = ACTIONS(209), + [anon_sym_unquote] = ACTIONS(195), + [anon_sym_DOT] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(7927), + [aux_sym_string_token1] = ACTIONS(215), + [anon_sym_Set] = ACTIONS(195), }, [4063] = { - [sym_do] = STATE(4850), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4850), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4850), - [sym_lambda] = STATE(4850), - [sym__application] = STATE(4850), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(54), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(73), + [sym__atom_no_curly] = STATE(73), + [sym_expr] = STATE(4858), + [aux_sym__open_args1_repeat1] = STATE(75), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(76), + [sym_atom] = STATE(77), + [sym__typed_bindings1] = STATE(78), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(54), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(81), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(83), + [anon_sym_LBRACE_LBRACE] = ACTIONS(85), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(89), + [aux_sym_integer_token1] = ACTIONS(91), + [sym__const_lambda] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_QMARK] = ACTIONS(83), + [anon_sym_quoteTerm] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(83), + [anon_sym_quote] = ACTIONS(83), + [anon_sym_tactic] = ACTIONS(99), + [anon_sym_Prop] = ACTIONS(83), + [anon_sym_let] = ACTIONS(101), + [anon_sym_record] = ACTIONS(103), + [sym__const_ellipsis] = ACTIONS(83), + [anon_sym_LPAREN_PIPE] = ACTIONS(105), + [anon_sym_] = ACTIONS(107), + [anon_sym_3] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(111), + [anon_sym_unquote] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(113), + [sym__const_forall] = ACTIONS(115), + [aux_sym_string_token1] = ACTIONS(117), + [anon_sym_Set] = ACTIONS(83), + [sym_pragma] = ACTIONS(3), }, [4064] = { - [sym_do] = STATE(4851), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4851), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4851), - [sym_lambda] = STATE(4851), - [sym__application] = STATE(4851), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_let] = STATE(414), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4859), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(414), + [sym_do] = STATE(414), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(414), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(414), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7929), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [4065] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4860), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), }, [4066] = { - [anon_sym_RPAREN] = ACTIONS(7878), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_literal] = STATE(4058), + [sym_record_assignments] = STATE(4058), + [sym_atom] = STATE(4853), + [anon_sym__] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7931), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6407), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_LPAREN] = ACTIONS(7933), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_Prop] = ACTIONS(6403), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_record] = ACTIONS(6411), + [anon_sym_] = ACTIONS(7935), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_DOT] = ACTIONS(7937), + [anon_sym_LBRACE] = ACTIONS(7939), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), }, [4067] = { - [anon_sym_COLON] = ACTIONS(7880), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(430), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4867), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(430), + [sym_do] = STATE(430), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(430), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(430), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7941), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4068] = { - [anon_sym_COLON] = ACTIONS(7882), - [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_COLON] = ACTIONS(411), + [sym__newline] = ACTIONS(413), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(411), + [anon_sym_LPAREN_PIPE] = ACTIONS(413), + [sym_qualified_name] = ACTIONS(411), + [anon_sym_quote] = ACTIONS(411), + [sym__const_right_arrow] = ACTIONS(411), + [anon_sym_tactic] = ACTIONS(411), + [sym__const_ellipsis] = ACTIONS(411), + [anon_sym_record] = ACTIONS(411), + [anon_sym_let] = ACTIONS(411), + [anon_sym_with] = ACTIONS(411), + [anon_sym_] = ACTIONS(411), + [anon_sym_Prop] = ACTIONS(411), + [anon_sym_3] = ACTIONS(411), + [anon_sym__] = ACTIONS(411), + [anon_sym_LBRACE_LBRACE] = ACTIONS(413), + [sym__const_lambda] = ACTIONS(411), + [anon_sym_quoteGoal] = ACTIONS(411), + [aux_sym_integer_token1] = ACTIONS(411), + [anon_sym_do] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_quoteTerm] = ACTIONS(411), + [anon_sym_where] = ACTIONS(411), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7874), - [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(411), + [anon_sym_unquote] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [sym__const_forall] = ACTIONS(411), + [aux_sym_string_token1] = ACTIONS(413), + [anon_sym_in] = ACTIONS(411), + [anon_sym_Set] = ACTIONS(411), + [anon_sym_module] = ACTIONS(411), }, [4069] = { - [sym_do] = STATE(4855), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4855), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4855), - [sym_lambda] = STATE(4855), - [sym__application] = STATE(4855), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_literal] = STATE(4058), + [sym_do] = STATE(286), + [sym__expr2] = STATE(286), + [sym_atom] = STATE(4071), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_record_assignments] = STATE(4058), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(286), + [sym_lambda] = STATE(286), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_] = ACTIONS(7943), + [anon_sym__] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7945), + [anon_sym_LPAREN] = ACTIONS(7947), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_DOT] = ACTIONS(7937), + [anon_sym_LBRACE] = ACTIONS(7949), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), }, [4070] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7951), + [anon_sym_PIPE] = ACTIONS(479), }, [4071] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [anon_sym_COLON] = ACTIONS(475), + [sym__newline] = ACTIONS(697), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(469), + [anon_sym_LPAREN_PIPE] = ACTIONS(471), + [sym_qualified_name] = ACTIONS(469), + [anon_sym_quote] = ACTIONS(469), + [sym__const_right_arrow] = ACTIONS(469), + [anon_sym_tactic] = ACTIONS(469), + [sym__const_ellipsis] = ACTIONS(469), + [anon_sym_record] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_with] = ACTIONS(475), + [anon_sym_] = ACTIONS(469), + [anon_sym_Prop] = ACTIONS(469), + [anon_sym_3] = ACTIONS(469), + [anon_sym__] = ACTIONS(469), + [anon_sym_LBRACE_LBRACE] = ACTIONS(471), + [sym__const_lambda] = ACTIONS(469), + [anon_sym_quoteGoal] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(469), + [anon_sym_do] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(469), + [anon_sym_quoteTerm] = ACTIONS(469), + [anon_sym_where] = ACTIONS(475), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(469), + [anon_sym_unquote] = ACTIONS(469), + [anon_sym_LBRACE] = ACTIONS(469), + [anon_sym_in] = ACTIONS(475), + [sym__const_forall] = ACTIONS(469), + [aux_sym_string_token1] = ACTIONS(471), + [anon_sym_Set] = ACTIONS(469), + [anon_sym_module] = ACTIONS(475), }, [4072] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [4073] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7884), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7951), }, - [4074] = { - [sym__field_assignments1] = STATE(4857), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7884), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [4075] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [4073] = { + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, - [4076] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), + [4074] = { + [sym_let] = STATE(43), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, - [4077] = { + [4075] = { + [anon_sym_COLON] = ACTIONS(7953), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7886), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7955), }, - [4078] = { - [anon_sym_RPAREN] = ACTIONS(7886), + [4076] = { + [anon_sym_COLON] = ACTIONS(7957), + [anon_sym_2] = ACTIONS(7955), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, + [4077] = { + [sym__expr2] = STATE(4876), + [sym_do] = STATE(4876), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4876), + [sym_lambda] = STATE(4876), + [sym__application] = STATE(4876), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, + [4078] = { + [sym__expr2] = STATE(4877), + [sym_do] = STATE(4877), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4877), + [sym_lambda] = STATE(4877), + [sym__application] = STATE(4877), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, [4079] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4860), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7888), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4878), + [sym_do] = STATE(4878), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4878), + [sym_lambda] = STATE(4878), + [sym__application] = STATE(4878), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4080] = { - [anon_sym_LBRACE] = ACTIONS(7890), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4879), + [sym_do] = STATE(4879), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4879), + [sym_lambda] = STATE(4879), + [sym__application] = STATE(4879), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4081] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7886), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2862), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [sym__newline] = ACTIONS(2860), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), }, [4082] = { + [anon_sym_COLON] = ACTIONS(7959), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7886), }, [4083] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_RPAREN] = ACTIONS(7961), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4084] = { + [anon_sym_COLON] = ACTIONS(7963), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7892), + [anon_sym_RBRACE] = ACTIONS(7955), [sym_pragma] = ACTIONS(3), }, [4085] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7886), + [sym__expr2] = STATE(4883), + [sym_do] = STATE(4883), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4883), + [sym_lambda] = STATE(4883), + [sym__application] = STATE(4883), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [4086] = { - [sym__atom_no_curly] = STATE(2904), - [sym_literal] = STATE(2894), - [sym_record_assignments] = STATE(2894), - [sym__atom_curly] = STATE(2904), - [sym_atom] = STATE(4086), - [aux_sym__open_args1_repeat1] = STATE(4086), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(7894), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7897), - [anon_sym_unquote] = ACTIONS(7894), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(7900), - [anon_sym_Set] = ACTIONS(7894), - [anon_sym_LPAREN] = ACTIONS(7903), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(7894), - [anon_sym_quoteTerm] = ACTIONS(7894), - [anon_sym_quote] = ACTIONS(7894), - [sym__const_ellipsis] = ACTIONS(7894), - [anon_sym_record] = ACTIONS(7906), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(7894), - [anon_sym_] = ACTIONS(7909), - [anon_sym_DOT] = ACTIONS(7912), - [anon_sym_LPAREN_PIPE] = ACTIONS(7915), - [anon_sym_LBRACE] = ACTIONS(7918), - [anon_sym_3] = ACTIONS(7921), - [aux_sym_string_token1] = ACTIONS(7924), - [anon_sym_Prop] = ACTIONS(7894), - [anon_sym_module] = ACTIONS(1683), - }, - [4087] = { - [sym_literal] = STATE(2910), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1648), [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(2920), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(2921), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2922), - [sym__atom_curly] = STATE(2920), - [sym_record_assignments] = STATE(2910), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4646), - [anon_sym_unquote] = ACTIONS(4646), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(4648), - [anon_sym_Set] = ACTIONS(4646), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4650), - [anon_sym_LPAREN] = ACTIONS(4652), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4646), - [anon_sym_quoteTerm] = ACTIONS(4646), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4646), - [sym__const_ellipsis] = ACTIONS(4646), - [anon_sym_record] = ACTIONS(4654), - [anon_sym_QMARK] = ACTIONS(4646), - [anon_sym_] = ACTIONS(4656), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_LPAREN_PIPE] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(4664), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(4646), - [anon_sym_3] = ACTIONS(4666), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), + [sym_pragma] = ACTIONS(3), + }, + [4087] = { + [anon_sym_COLON] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4088] = { - [sym__newline] = ACTIONS(811), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7965), }, [4089] = { + [anon_sym_RPAREN] = ACTIONS(7965), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7927), }, [4090] = { - [anon_sym_RPAREN] = ACTIONS(7927), + [anon_sym_PIPE_RPAREN] = ACTIONS(7965), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4091] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4865), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7929), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(7965), }, [4092] = { - [anon_sym_LBRACE] = ACTIONS(7931), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4886), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(7967), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4093] = { + [anon_sym_LBRACE] = ACTIONS(7969), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7927), [sym_pragma] = ACTIONS(3), }, [4094] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(7965), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7927), }, [4095] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4096] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7933), + [anon_sym_RBRACE] = ACTIONS(7971), [sym_pragma] = ACTIONS(3), }, [4097] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7927), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(2852), + [sym__atom_no_curly] = STATE(2852), + [sym_literal] = STATE(2842), + [sym_record_assignments] = STATE(2842), + [sym_atom] = STATE(4097), + [aux_sym__open_args1_repeat1] = STATE(4097), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym__] = ACTIONS(7973), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7976), + [anon_sym_quoteTerm] = ACTIONS(7973), + [sym__newline] = ACTIONS(2214), + [aux_sym_integer_token1] = ACTIONS(7979), + [anon_sym_QMARK] = ACTIONS(7973), + [anon_sym_LPAREN] = ACTIONS(7982), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(7985), + [sym_qualified_name] = ACTIONS(7973), + [anon_sym_quote] = ACTIONS(7973), + [anon_sym_3] = ACTIONS(7988), + [anon_sym_Prop] = ACTIONS(7973), + [sym__const_ellipsis] = ACTIONS(7973), + [anon_sym_record] = ACTIONS(7991), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(7994), + [anon_sym_DOT] = ACTIONS(7997), + [anon_sym_unquote] = ACTIONS(7973), + [anon_sym_LBRACE] = ACTIONS(8000), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(8003), + [anon_sym_Set] = ACTIONS(7973), + [anon_sym_module] = ACTIONS(1527), }, [4098] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(7935), + [sym_literal] = STATE(2876), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2886), + [sym__atom_no_curly] = STATE(2886), + [aux_sym__open_args1_repeat1] = STATE(2887), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(2888), + [sym_record_assignments] = STATE(2876), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(4442), + [anon_sym_quoteTerm] = ACTIONS(4442), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(4444), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4448), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4450), + [sym_qualified_name] = ACTIONS(4442), + [anon_sym_quote] = ACTIONS(4442), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(4442), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(4452), + [sym__const_ellipsis] = ACTIONS(4442), + [anon_sym_3] = ACTIONS(4454), + [anon_sym_] = ACTIONS(4456), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(4442), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4460), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(4462), + [anon_sym_Set] = ACTIONS(4442), + }, + [4099] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8006), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, - [4099] = { - [sym_primitive] = STATE(4869), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4869), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4869), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4869), - [sym_abstract] = STATE(4869), - [sym_private] = STATE(4869), - [sym_function_clause] = STATE(4869), - [sym_lhs_decl] = STATE(155), + [4100] = { + [sym_primitive] = STATE(4890), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4890), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4890), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4890), + [sym_abstract] = STATE(4890), + [sym_private] = STATE(4890), + [sym_function_clause] = STATE(4890), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4869), + [sym_open] = STATE(4890), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4890), + [sym_data] = STATE(4890), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4869), - [sym_data] = STATE(4869), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4869), - [sym_macro] = STATE(4869), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4869), - [sym_record_signature_only] = STATE(4869), - [sym_atom] = STATE(158), + [sym_instance] = STATE(4890), + [sym_macro] = STATE(4890), + [sym_test] = STATE(4890), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4890), + [sym_record_signature_only] = STATE(4890), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4890), + [sym_syntax] = STATE(4890), + [sym_record] = STATE(4890), [sym_do] = STATE(43), - [sym_pattern] = STATE(4869), - [sym_syntax] = STATE(4869), - [sym_record] = STATE(4869), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4869), - [sym_generalize] = STATE(4869), - [sym_mutual] = STATE(4869), - [sym_postulate] = STATE(4869), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4890), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4890), + [sym_mutual] = STATE(4890), + [sym_postulate] = STATE(4890), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, - [4100] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), + [4101] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), - }, - [4101] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(7935), - [sym_comment] = ACTIONS(3), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), [sym_pragma] = ACTIONS(3), }, [4102] = { - [anon_sym_COLON] = ACTIONS(7937), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8006), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7939), }, [4103] = { - [anon_sym_COLON] = ACTIONS(7941), - [anon_sym_2] = ACTIONS(7939), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4104] = { - [sym_do] = STATE(4873), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4873), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4873), - [sym_lambda] = STATE(4873), - [sym__application] = STATE(4873), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8008), + [sym_pragma] = ACTIONS(3), }, [4105] = { - [sym_do] = STATE(4874), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4874), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4874), - [sym_lambda] = STATE(4874), - [sym__application] = STATE(4874), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__field_assignments1] = STATE(4892), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8008), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4106] = { - [sym_do] = STATE(4875), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4875), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4875), - [sym_lambda] = STATE(4875), - [sym__application] = STATE(4875), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4107] = { - [sym_do] = STATE(4876), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4876), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4876), - [sym_lambda] = STATE(4876), - [sym__application] = STATE(4876), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4108] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8010), }, [4109] = { - [anon_sym_RPAREN] = ACTIONS(7943), + [anon_sym_RPAREN] = ACTIONS(8010), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4110] = { - [anon_sym_COLON] = ACTIONS(7945), + [anon_sym_PIPE_RPAREN] = ACTIONS(8010), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4111] = { - [anon_sym_COLON] = ACTIONS(7947), - [anon_sym_SEMI] = ACTIONS(2814), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4895), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8012), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7939), [sym_pragma] = ACTIONS(3), }, [4112] = { - [sym_do] = STATE(4880), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4880), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4880), - [sym_lambda] = STATE(4880), - [sym__application] = STATE(4880), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(8014), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4113] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8010), }, [4114] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8010), + [sym_pragma] = ACTIONS(3), }, [4115] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4116] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8016), + [sym_pragma] = ACTIONS(3), }, [4117] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_] = ACTIONS(6550), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7949), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_DOT_DOT] = ACTIONS(6552), + [sym_name] = ACTIONS(6550), }, [4118] = { - [sym__field_assignments1] = STATE(4882), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(7949), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2159), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_renaming] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_using] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_hiding] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), }, [4119] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(6743), + [anon_sym_SEMI] = ACTIONS(6743), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6743), + [anon_sym_hiding] = ACTIONS(6743), + [anon_sym_RBRACE] = ACTIONS(6743), + [anon_sym_public] = ACTIONS(6743), + [anon_sym_renaming] = ACTIONS(6743), }, [4120] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [aux_sym_import_directive_repeat1] = STATE(4899), + [anon_sym_SEMI] = ACTIONS(6747), + [anon_sym_RPAREN] = ACTIONS(8018), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [4121] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7951), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_renaming] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_hiding] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), }, [4122] = { - [anon_sym_RPAREN] = ACTIONS(7951), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8020), [sym_pragma] = ACTIONS(3), }, [4123] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4885), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(7953), + [sym__field_assignments1] = STATE(4901), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8020), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4124] = { - [anon_sym_LBRACE] = ACTIONS(7955), + [anon_sym_RPAREN] = ACTIONS(8018), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4125] = { + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(7951), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_renaming] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_using] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_hiding] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), }, [4126] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(7951), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4127] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4128] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7957), + [anon_sym_RBRACE] = ACTIONS(8022), [sym_pragma] = ACTIONS(3), }, [4129] = { + [sym__field_assignments1] = STATE(4903), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8022), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(7951), [sym_pragma] = ACTIONS(3), }, [4130] = { - [sym__atom_no_curly] = STATE(2960), - [sym_literal] = STATE(2950), - [sym_record_assignments] = STATE(2950), - [sym__atom_curly] = STATE(2960), - [sym_atom] = STATE(4130), - [aux_sym__open_args1_repeat1] = STATE(4130), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(7959), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7962), - [anon_sym_unquote] = ACTIONS(7959), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(7965), - [anon_sym_Set] = ACTIONS(7959), - [anon_sym_LPAREN] = ACTIONS(7968), - [sym__newline] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(7959), - [anon_sym_quoteTerm] = ACTIONS(7959), - [anon_sym_quote] = ACTIONS(7959), - [sym__const_ellipsis] = ACTIONS(7959), - [anon_sym_record] = ACTIONS(7971), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_] = ACTIONS(7974), - [anon_sym_QMARK] = ACTIONS(7959), - [anon_sym_DOT] = ACTIONS(7977), - [anon_sym_LPAREN_PIPE] = ACTIONS(7980), - [anon_sym_LBRACE] = ACTIONS(7983), - [anon_sym_3] = ACTIONS(7986), - [aux_sym_string_token1] = ACTIONS(7989), - [anon_sym_Prop] = ACTIONS(7959), - [anon_sym_module] = ACTIONS(1683), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4131] = { - [sym_literal] = STATE(1653), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(1669), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(1670), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1671), - [sym__atom_curly] = STATE(1669), - [sym_record_assignments] = STATE(1653), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(2626), - [anon_sym_unquote] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(2632), - [anon_sym_Set] = ACTIONS(2626), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2626), - [anon_sym_quoteTerm] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2626), - [sym__const_ellipsis] = ACTIONS(2626), - [anon_sym_record] = ACTIONS(2640), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_] = ACTIONS(2642), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_LPAREN_PIPE] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(2652), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(2626), - [anon_sym_3] = ACTIONS(2656), + [sym__newline] = ACTIONS(8024), + [anon_sym_in] = ACTIONS(8024), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4132] = { - [anon_sym_COLON] = ACTIONS(119), - [sym__newline] = ACTIONS(121), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), - [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), - [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), - [sym__const_ellipsis] = ACTIONS(119), - [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_with] = ACTIONS(119), - [anon_sym_] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), - [anon_sym__] = ACTIONS(119), - [anon_sym_LBRACE_LBRACE] = ACTIONS(121), - [sym__const_lambda] = ACTIONS(119), - [anon_sym_in] = ACTIONS(119), - [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), - [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_where] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(119), - [sym__const_forall] = ACTIONS(119), - [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - [anon_sym_module] = ACTIONS(119), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8026), }, [4133] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4889), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(326), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(326), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(326), - [sym__expr2] = STATE(326), - [sym_lambda] = STATE(326), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7992), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8026), + [sym_pragma] = ACTIONS(3), }, [4134] = { - [anon_sym_COLON] = ACTIONS(253), - [sym__newline] = ACTIONS(255), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(253), - [sym_qualified_name] = ACTIONS(253), - [anon_sym_quoteTerm] = ACTIONS(253), - [sym__const_right_arrow] = ACTIONS(253), - [anon_sym_do] = ACTIONS(253), - [sym__const_ellipsis] = ACTIONS(253), - [anon_sym_record] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(253), - [anon_sym_with] = ACTIONS(253), - [anon_sym_] = ACTIONS(253), - [anon_sym_quote] = ACTIONS(253), - [anon_sym__] = ACTIONS(253), - [anon_sym_LBRACE_LBRACE] = ACTIONS(255), - [sym__const_lambda] = ACTIONS(253), - [anon_sym_in] = ACTIONS(253), - [aux_sym_integer_token1] = ACTIONS(253), - [anon_sym_let] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_Set] = ACTIONS(253), - [anon_sym_unquote] = ACTIONS(253), - [anon_sym_where] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(253), - [anon_sym_DOT] = ACTIONS(253), - [anon_sym_LPAREN_PIPE] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [sym__const_forall] = ACTIONS(253), - [aux_sym_string_token1] = ACTIONS(255), - [anon_sym_tactic] = ACTIONS(253), - [anon_sym_Prop] = ACTIONS(253), - [anon_sym_3] = ACTIONS(253), - [anon_sym_module] = ACTIONS(253), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4905), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4135] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4890), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(351), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(351), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(351), - [sym__expr2] = STATE(351), - [sym_lambda] = STATE(351), - [sym__atoms1] = STATE(206), - [sym_open] = STATE(352), - [anon_sym_RPAREN] = ACTIONS(7992), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_open] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_import] = ACTIONS(539), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym_name] = ACTIONS(6797), }, [4136] = { - [sym__atom_no_curly] = STATE(93), - [sym_literal] = STATE(83), - [sym_record_assignments] = STATE(83), - [sym__record_name] = STATE(4892), - [anon_sym__] = ACTIONS(125), - [anon_sym_unquote] = ACTIONS(125), - [anon_sym_LBRACE_LBRACE] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(129), - [anon_sym_Set] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(131), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(125), - [anon_sym_quoteTerm] = ACTIONS(125), - [anon_sym_quote] = ACTIONS(125), - [sym__const_ellipsis] = ACTIONS(125), - [anon_sym_record] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_] = ACTIONS(135), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LPAREN_PIPE] = ACTIONS(139), - [anon_sym_3] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(7994), - [aux_sym_string_token1] = ACTIONS(145), - [anon_sym_Prop] = ACTIONS(125), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4906), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4137] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4893), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(381), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(381), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(381), - [sym__expr2] = STATE(381), - [sym_lambda] = STATE(381), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7996), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4907), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4138] = { - [sym__atom_no_curly] = STATE(4143), - [sym_literal] = STATE(4132), - [sym_record_assignments] = STATE(4132), - [sym__atom_curly] = STATE(4143), - [sym_atom] = STATE(4888), - [anon_sym__] = ACTIONS(6608), - [anon_sym_unquote] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7998), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(8000), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [anon_sym_] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8004), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(8006), - [anon_sym_3] = ACTIONS(6628), - [aux_sym_string_token1] = ACTIONS(6626), - [anon_sym_Prop] = ACTIONS(6608), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4908), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4139] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4899), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(8026), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4140] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4901), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(397), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(397), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(397), - [sym__expr2] = STATE(397), - [sym_lambda] = STATE(397), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(8008), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_SEMI] = ACTIONS(8028), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8028), + [sym_pragma] = ACTIONS(3), }, [4141] = { - [sym_literal] = STATE(48), - [sym__typed_bindings1] = STATE(65), - [sym_expr] = STATE(4902), - [aux_sym__with_expr_repeat1] = STATE(67), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(70), - [aux_sym__open_args1_repeat1] = STATE(71), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(73), - [sym__atom_curly] = STATE(70), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(48), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(75), - [anon_sym__] = ACTIONS(75), - [anon_sym_LBRACE_LBRACE] = ACTIONS(77), - [anon_sym_let] = ACTIONS(79), - [sym__const_lambda] = ACTIONS(81), - [aux_sym_integer_token1] = ACTIONS(83), - [anon_sym_Set] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_quoteGoal] = ACTIONS(87), - [anon_sym_unquote] = ACTIONS(75), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(75), - [anon_sym_quoteTerm] = ACTIONS(75), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(75), - [sym__const_ellipsis] = ACTIONS(75), - [anon_sym_record] = ACTIONS(93), - [anon_sym_QMARK] = ACTIONS(75), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LPAREN_PIPE] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_tactic] = ACTIONS(103), - [aux_sym_string_token1] = ACTIONS(105), - [sym__const_forall] = ACTIONS(107), - [anon_sym_Prop] = ACTIONS(75), - [anon_sym_3] = ACTIONS(109), + [aux_sym__field_assignments1_repeat1] = STATE(4141), + [anon_sym_SEMI] = ACTIONS(8030), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8028), + [sym_pragma] = ACTIONS(3), }, [4142] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8026), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(8010), }, [4143] = { - [anon_sym_COLON] = ACTIONS(439), - [sym__newline] = ACTIONS(441), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(439), - [sym_qualified_name] = ACTIONS(439), - [anon_sym_quoteTerm] = ACTIONS(439), - [sym__const_right_arrow] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [sym__const_ellipsis] = ACTIONS(439), - [anon_sym_record] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_] = ACTIONS(439), - [anon_sym_quote] = ACTIONS(439), - [anon_sym__] = ACTIONS(439), - [anon_sym_LBRACE_LBRACE] = ACTIONS(441), - [sym__const_lambda] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [aux_sym_integer_token1] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(439), - [anon_sym_Set] = ACTIONS(439), - [anon_sym_unquote] = ACTIONS(439), - [anon_sym_where] = ACTIONS(439), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_LPAREN_PIPE] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(439), - [sym__const_forall] = ACTIONS(439), - [aux_sym_string_token1] = ACTIONS(441), - [anon_sym_tactic] = ACTIONS(439), - [anon_sym_Prop] = ACTIONS(439), - [anon_sym_3] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), + [sym__application] = STATE(43), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(324), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), + [sym_lambda] = STATE(43), + [aux_sym_record_constructor_instance_repeat1] = STATE(4910), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [anon_sym_constructor] = ACTIONS(8033), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), }, [4144] = { - [sym_do] = STATE(292), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_literal] = STATE(4132), - [sym__let_in] = STATE(37), - [sym_let] = STATE(292), - [sym__atom_no_curly] = STATE(4143), - [sym_record_assignments] = STATE(4132), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(292), - [sym_lambda] = STATE(292), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2634), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [anon_sym_] = ACTIONS(8012), - [anon_sym__] = ACTIONS(6608), - [anon_sym_unquote] = ACTIONS(6608), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8014), - [anon_sym_LPAREN] = ACTIONS(8016), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(8004), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(8018), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym__newline] = ACTIONS(8035), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4145] = { - [anon_sym_COLON] = ACTIONS(467), - [sym__newline] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(463), - [sym_qualified_name] = ACTIONS(463), - [anon_sym_quoteTerm] = ACTIONS(463), - [sym__const_right_arrow] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [sym__const_ellipsis] = ACTIONS(463), - [anon_sym_record] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(463), - [anon_sym_with] = ACTIONS(467), - [anon_sym_] = ACTIONS(463), - [anon_sym_quote] = ACTIONS(463), - [anon_sym__] = ACTIONS(463), - [anon_sym_LBRACE_LBRACE] = ACTIONS(469), - [sym__const_lambda] = ACTIONS(463), - [anon_sym_in] = ACTIONS(467), - [aux_sym_integer_token1] = ACTIONS(463), - [anon_sym_let] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_Set] = ACTIONS(463), - [anon_sym_unquote] = ACTIONS(463), - [anon_sym_where] = ACTIONS(467), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(463), - [anon_sym_LPAREN_PIPE] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(463), - [sym__const_forall] = ACTIONS(463), - [aux_sym_string_token1] = ACTIONS(469), - [anon_sym_tactic] = ACTIONS(463), - [anon_sym_Prop] = ACTIONS(463), - [anon_sym_3] = ACTIONS(463), - [anon_sym_module] = ACTIONS(467), + [anon_sym_pattern] = ACTIONS(8037), + [anon_sym_inductive] = ACTIONS(8037), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(8037), + [anon_sym_no_DASHeta_DASHequality] = ACTIONS(8037), + [anon_sym_abstract] = ACTIONS(8037), + [anon_sym_LPAREN_PIPE] = ACTIONS(8039), + [sym_qualified_name] = ACTIONS(8037), + [anon_sym_quote] = ACTIONS(8037), + [anon_sym_tactic] = ACTIONS(8037), + [anon_sym_Prop] = ACTIONS(8037), + [sym__const_ellipsis] = ACTIONS(8037), + [anon_sym_record] = ACTIONS(8037), + [anon_sym_let] = ACTIONS(8037), + [anon_sym_3] = ACTIONS(8037), + [anon_sym_] = ACTIONS(8037), + [anon_sym_syntax] = ACTIONS(8037), + [anon_sym_coinductive] = ACTIONS(8037), + [anon_sym_instance] = ACTIONS(8037), + [anon_sym_infix] = ACTIONS(8037), + [sym_test2] = ACTIONS(8037), + [anon_sym_macro] = ACTIONS(8037), + [anon_sym_field] = ACTIONS(8037), + [anon_sym_private] = ACTIONS(8037), + [anon_sym_generalize] = ACTIONS(8037), + [anon_sym__] = ACTIONS(8037), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8039), + [sym__const_lambda] = ACTIONS(8037), + [anon_sym_quoteGoal] = ACTIONS(8037), + [aux_sym_integer_token1] = ACTIONS(8037), + [anon_sym_open] = ACTIONS(8037), + [anon_sym_LPAREN] = ACTIONS(8037), + [anon_sym_do] = ACTIONS(8037), + [anon_sym_QMARK] = ACTIONS(8037), + [anon_sym_quoteTerm] = ACTIONS(8037), + [anon_sym_codata] = ACTIONS(8037), + [anon_sym_infixr] = ACTIONS(8037), + [anon_sym_constructor] = ACTIONS(8037), + [sym__dedent] = ACTIONS(8039), + [anon_sym_infixl] = ACTIONS(8037), + [sym_comment] = ACTIONS(3), + [anon_sym_postulate] = ACTIONS(8037), + [anon_sym_eta_DASHequality] = ACTIONS(8037), + [anon_sym_mutual] = ACTIONS(8037), + [anon_sym_DOT] = ACTIONS(8037), + [anon_sym_unquote] = ACTIONS(8037), + [anon_sym_LBRACE] = ACTIONS(8037), + [sym__const_forall] = ACTIONS(8037), + [aux_sym_string_token1] = ACTIONS(8039), + [anon_sym_import] = ACTIONS(8037), + [anon_sym_data] = ACTIONS(8037), + [anon_sym_Set] = ACTIONS(8037), + [anon_sym_module] = ACTIONS(8037), }, [4146] = { - [anon_sym_PIPE] = ACTIONS(455), + [sym__newline] = ACTIONS(8041), + [anon_sym_in] = ACTIONS(8041), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(8010), }, [4147] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_record_eta] = STATE(2949), + [sym_record_constructor] = STATE(2949), + [sym_record_induction] = STATE(2949), + [sym_record_constructor_instance] = STATE(2949), + [sym__record_directive] = STATE(2949), + [aux_sym_record_declarations_block_repeat1] = STATE(4147), + [anon_sym_pattern] = ACTIONS(8037), + [anon_sym_inductive] = ACTIONS(8043), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(8037), + [anon_sym_no_DASHeta_DASHequality] = ACTIONS(8046), + [anon_sym_abstract] = ACTIONS(8037), + [anon_sym_LPAREN_PIPE] = ACTIONS(8039), + [sym_qualified_name] = ACTIONS(8037), + [anon_sym_quote] = ACTIONS(8037), + [anon_sym_tactic] = ACTIONS(8037), + [anon_sym_Prop] = ACTIONS(8037), + [sym__const_ellipsis] = ACTIONS(8037), + [anon_sym_record] = ACTIONS(8037), + [anon_sym_let] = ACTIONS(8037), + [anon_sym_3] = ACTIONS(8037), + [anon_sym_] = ACTIONS(8037), + [anon_sym_syntax] = ACTIONS(8037), + [anon_sym_coinductive] = ACTIONS(8043), + [anon_sym_instance] = ACTIONS(8049), + [anon_sym_infix] = ACTIONS(8037), + [sym_test2] = ACTIONS(8037), + [anon_sym_macro] = ACTIONS(8037), + [anon_sym_field] = ACTIONS(8037), + [anon_sym_private] = ACTIONS(8037), + [anon_sym_generalize] = ACTIONS(8037), + [anon_sym__] = ACTIONS(8037), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8039), + [sym__const_lambda] = ACTIONS(8037), + [anon_sym_quoteGoal] = ACTIONS(8037), + [aux_sym_integer_token1] = ACTIONS(8037), + [anon_sym_open] = ACTIONS(8037), + [anon_sym_LPAREN] = ACTIONS(8037), + [anon_sym_do] = ACTIONS(8037), + [anon_sym_QMARK] = ACTIONS(8037), + [anon_sym_quoteTerm] = ACTIONS(8037), + [anon_sym_codata] = ACTIONS(8037), + [anon_sym_infixr] = ACTIONS(8037), + [anon_sym_constructor] = ACTIONS(8052), + [sym__dedent] = ACTIONS(8039), + [anon_sym_infixl] = ACTIONS(8037), + [sym_comment] = ACTIONS(3), + [anon_sym_postulate] = ACTIONS(8037), + [anon_sym_eta_DASHequality] = ACTIONS(8046), + [anon_sym_mutual] = ACTIONS(8037), + [anon_sym_DOT] = ACTIONS(8037), + [anon_sym_unquote] = ACTIONS(8037), + [anon_sym_LBRACE] = ACTIONS(8037), + [sym__const_forall] = ACTIONS(8037), + [aux_sym_string_token1] = ACTIONS(8039), + [anon_sym_import] = ACTIONS(8037), + [anon_sym_data] = ACTIONS(8037), + [anon_sym_Set] = ACTIONS(8037), + [anon_sym_module] = ACTIONS(8037), }, [4148] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8020), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - }, - [4149] = { - [sym_primitive] = STATE(4909), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4909), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4909), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4909), - [sym_abstract] = STATE(4909), - [sym_private] = STATE(4909), - [sym_function_clause] = STATE(4909), - [sym_lhs_decl] = STATE(155), + [sym_primitive] = STATE(323), + [sym_literal] = STATE(6), + [sym__declaration] = STATE(323), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(37), + [sym_module_macro] = STATE(323), + [sym__atom_no_curly] = STATE(37), + [aux_sym__open_args1_repeat1] = STATE(38), + [aux_sym_test_repeat1] = STATE(39), + [sym_field] = STATE(323), + [sym_abstract] = STATE(323), + [sym_private] = STATE(323), + [sym_function_clause] = STATE(323), + [sym_lhs_decl] = STATE(41), + [sym__with_expr] = STATE(42), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4909), + [sym_open] = STATE(323), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(323), + [sym_data] = STATE(323), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4909), - [sym_data] = STATE(4909), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4909), - [sym_macro] = STATE(4909), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4909), - [sym_record_signature_only] = STATE(4909), - [sym_atom] = STATE(158), + [sym_instance] = STATE(323), + [sym_macro] = STATE(323), + [sym_test] = STATE(323), + [sym_lhs_defn] = STATE(45), + [sym_data_signature_only] = STATE(323), + [sym_record_signature_only] = STATE(323), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(46), + [sym_pattern] = STATE(323), + [sym_syntax] = STATE(323), + [sym_record] = STATE(323), [sym_do] = STATE(43), - [sym_pattern] = STATE(4909), - [sym_syntax] = STATE(4909), - [sym_record] = STATE(4909), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4909), - [sym_generalize] = STATE(4909), - [sym_mutual] = STATE(4909), - [sym_postulate] = STATE(4909), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(6), + [sym_module] = STATE(323), + [aux_sym__with_expr_repeat1] = STATE(48), + [sym_generalize] = STATE(323), + [sym_mutual] = STATE(323), + [sym_postulate] = STATE(323), + [anon_sym_pattern] = ACTIONS(5), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(11), + [sym_qualified_name] = ACTIONS(13), + [anon_sym_3] = ACTIONS(15), + [anon_sym_quote] = ACTIONS(13), + [anon_sym_tactic] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_record] = ACTIONS(21), + [sym__const_ellipsis] = ACTIONS(13), + [anon_sym_Prop] = ACTIONS(13), + [anon_sym_] = ACTIONS(23), + [anon_sym_syntax] = ACTIONS(25), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(29), + [sym_test2] = ACTIONS(31), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(13), + [anon_sym_quoteTerm] = ACTIONS(13), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(43), + [aux_sym_integer_token1] = ACTIONS(45), + [anon_sym_open] = ACTIONS(47), + [sym__const_lambda] = ACTIONS(49), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_LBRACE_LBRACE] = ACTIONS(51), + [anon_sym_LPAREN] = ACTIONS(53), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(29), + [sym__dedent] = ACTIONS(8055), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(29), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [sym__const_forall] = ACTIONS(67), + [aux_sym_string_token1] = ACTIONS(69), + [anon_sym_import] = ACTIONS(71), + [anon_sym_data] = ACTIONS(73), + [anon_sym_Set] = ACTIONS(13), + [anon_sym_module] = ACTIONS(75), + }, + [4149] = { + [sym_record_declarations_block] = STATE(4913), + [sym__newline] = ACTIONS(8024), + [anon_sym_in] = ACTIONS(8024), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(2606), + [sym_pragma] = ACTIONS(3), }, [4150] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8057), }, [4151] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8020), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8057), [sym_pragma] = ACTIONS(3), }, [4152] = { - [anon_sym_COLON] = ACTIONS(8022), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4915), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8024), }, [4153] = { - [anon_sym_COLON] = ACTIONS(8026), - [anon_sym_2] = ACTIONS(8024), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_4] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [4154] = { - [sym_do] = STATE(4913), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4913), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4913), - [sym_lambda] = STATE(4913), - [sym__application] = STATE(4913), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4916), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4155] = { - [sym_do] = STATE(4914), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4914), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4914), - [sym_lambda] = STATE(4914), - [sym__application] = STATE(4914), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4917), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4156] = { - [sym_do] = STATE(4915), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4915), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4915), - [sym_lambda] = STATE(4915), - [sym__application] = STATE(4915), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4918), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4157] = { - [sym_do] = STATE(4916), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4916), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4916), - [sym_lambda] = STATE(4916), - [sym__application] = STATE(4916), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [anon_sym_RPAREN] = ACTIONS(8057), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4158] = { - [anon_sym_COLON] = ACTIONS(2718), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_in] = ACTIONS(2718), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8057), [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), }, [4159] = { - [anon_sym_RPAREN] = ACTIONS(8028), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_4] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4160] = { - [anon_sym_COLON] = ACTIONS(8030), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8059), [sym_pragma] = ACTIONS(3), }, [4161] = { - [anon_sym_COLON] = ACTIONS(8032), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8024), + [sym_let] = STATE(80), + [sym_literal] = STATE(140), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(155), + [sym__atom_no_curly] = STATE(155), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(157), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(158), + [sym_atom] = STATE(159), + [sym__typed_bindings1] = STATE(160), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(140), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(161), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(219), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(221), + [aux_sym_integer_token1] = ACTIONS(223), + [sym__const_lambda] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(227), + [anon_sym_QMARK] = ACTIONS(217), + [anon_sym_quoteTerm] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(217), + [anon_sym_quote] = ACTIONS(217), + [anon_sym_tactic] = ACTIONS(229), + [anon_sym_Prop] = ACTIONS(217), + [anon_sym_let] = ACTIONS(231), + [anon_sym_record] = ACTIONS(233), + [sym__const_ellipsis] = ACTIONS(217), + [anon_sym_LPAREN_PIPE] = ACTIONS(235), + [anon_sym_] = ACTIONS(237), + [anon_sym_3] = ACTIONS(239), + [anon_sym_DOT] = ACTIONS(241), + [anon_sym_unquote] = ACTIONS(217), + [anon_sym_LBRACE] = ACTIONS(243), + [sym__const_forall] = ACTIONS(245), + [aux_sym_string_token1] = ACTIONS(247), + [anon_sym_Set] = ACTIONS(217), [sym_pragma] = ACTIONS(3), }, [4162] = { - [sym_do] = STATE(4920), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4920), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4920), - [sym_lambda] = STATE(4920), - [sym__application] = STATE(4920), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_4] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4163] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_4] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4164] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8061), + [sym_pragma] = ACTIONS(3), }, [4165] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8063), }, [4166] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8034), + [anon_sym_2] = ACTIONS(8063), [sym_pragma] = ACTIONS(3), }, [4167] = { - [sym__field_assignments1] = STATE(4922), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8034), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4922), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4168] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_2] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [4169] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4923), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [4170] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4924), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8036), }, [4171] = { - [anon_sym_RPAREN] = ACTIONS(8036), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4925), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4172] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4925), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8038), + [anon_sym_RPAREN] = ACTIONS(8063), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4173] = { - [anon_sym_LBRACE] = ACTIONS(8040), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8063), [sym_pragma] = ACTIONS(3), }, [4174] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8036), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4175] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8065), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8036), }, [4176] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4177] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8042), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4178] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8036), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4179] = { - [sym__atom_no_curly] = STATE(3003), - [sym_literal] = STATE(2993), - [sym_record_assignments] = STATE(2993), - [sym__atom_curly] = STATE(3003), - [sym_atom] = STATE(4179), - [aux_sym__open_args1_repeat1] = STATE(4179), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym__] = ACTIONS(8044), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8047), - [anon_sym_unquote] = ACTIONS(8044), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(8050), - [anon_sym_Set] = ACTIONS(8044), - [anon_sym_LPAREN] = ACTIONS(8053), - [sym__newline] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(8044), - [anon_sym_quoteTerm] = ACTIONS(8044), - [anon_sym_quote] = ACTIONS(8044), - [sym__const_ellipsis] = ACTIONS(8044), - [anon_sym_record] = ACTIONS(8056), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(8044), - [anon_sym_] = ACTIONS(8059), - [anon_sym_DOT] = ACTIONS(8062), - [anon_sym_LPAREN_PIPE] = ACTIONS(8065), - [anon_sym_LBRACE] = ACTIONS(8068), - [anon_sym_3] = ACTIONS(8071), - [aux_sym_string_token1] = ACTIONS(8074), - [anon_sym_Prop] = ACTIONS(8044), - [anon_sym_module] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8067), + [sym_pragma] = ACTIONS(3), }, [4180] = { - [sym_literal] = STATE(3009), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(3019), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(3020), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3021), - [sym__atom_curly] = STATE(3019), - [sym_record_assignments] = STATE(3009), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(4788), - [anon_sym_unquote] = ACTIONS(4788), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(4790), - [anon_sym_Set] = ACTIONS(4788), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4792), - [anon_sym_LPAREN] = ACTIONS(4794), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(4788), - [anon_sym_quoteTerm] = ACTIONS(4788), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4788), - [sym__const_ellipsis] = ACTIONS(4788), - [anon_sym_record] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_] = ACTIONS(4798), - [anon_sym_DOT] = ACTIONS(4800), - [anon_sym_LPAREN_PIPE] = ACTIONS(4802), - [anon_sym_LBRACE] = ACTIONS(4804), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(4806), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(4788), - [anon_sym_3] = ACTIONS(4808), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8069), }, [4181] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8071), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [4182] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8077), + [sym_name] = ACTIONS(8073), }, [4183] = { - [anon_sym_RPAREN] = ACTIONS(8077), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8071), }, [4184] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4930), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8079), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8071), [sym_pragma] = ACTIONS(3), }, [4185] = { - [anon_sym_LBRACE] = ACTIONS(8081), + [aux_sym_syntax_repeat2] = STATE(4185), + [sym__newline] = ACTIONS(8075), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8077), }, [4186] = { + [sym__newline] = ACTIONS(8080), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8077), [sym_pragma] = ACTIONS(3), }, [4187] = { + [anon_sym_COLON] = ACTIONS(8082), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8084), + [anon_sym_] = ACTIONS(8082), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8082), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8077), + [anon_sym_LBRACE] = ACTIONS(8082), + [anon_sym_DOT_DOT] = ACTIONS(8084), + [sym_name] = ACTIONS(8082), }, [4188] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__field_name] = STATE(4188), + [aux_sym__arg_name_repeat2] = STATE(4188), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8086), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8088), }, [4189] = { + [sym__field_name] = STATE(4189), + [aux_sym__arg_name_repeat2] = STATE(4189), + [sym_name] = ACTIONS(8088), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8083), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8086), }, [4190] = { + [sym__field_name] = STATE(4190), + [aux_sym__arg_name_repeat2] = STATE(4190), + [anon_sym_2] = ACTIONS(8091), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8077), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8093), }, [4191] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4931), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4192] = { + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8085), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [4193] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_quoteGoal] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4932), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [4194] = { + [anon_sym_COLON] = ACTIONS(8096), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8098), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8087), }, [4195] = { - [anon_sym_RPAREN] = ACTIONS(8087), + [anon_sym_COLON] = ACTIONS(8100), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8098), }, [4196] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(4936), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8089), + [anon_sym_COLON] = ACTIONS(8102), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4197] = { - [anon_sym_LBRACE] = ACTIONS(8091), + [anon_sym_COLON] = ACTIONS(8104), + [anon_sym_2] = ACTIONS(8098), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4198] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8087), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4938), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4199] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8087), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [4200] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_quoteGoal] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4939), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4201] = { + [anon_sym_COLON] = ACTIONS(6664), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8093), + [anon_sym_RBRACE] = ACTIONS(6656), [sym_pragma] = ACTIONS(3), }, [4202] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8087), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4203] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_rewrite] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4204] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_2] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8106), + [sym_pragma] = ACTIONS(3), }, [4205] = { + [sym__field_assignments1] = STATE(4941), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8106), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8095), [sym_pragma] = ACTIONS(3), }, [4206] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8097), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4207] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8097), }, [4208] = { - [anon_sym_RPAREN] = ACTIONS(8097), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8108), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4209] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8097), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4210] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8110), + [sym_pragma] = ACTIONS(3), }, [4211] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8099), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(8112), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), }, [4212] = { - [sym__atom_no_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym_record_assignments] = STATE(3586), - [sym__atom_curly] = STATE(3596), - [sym_atom] = STATE(4560), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6717), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_3] = ACTIONS(5740), - [aux_sym_string_token1] = ACTIONS(5738), - [anon_sym_Prop] = ACTIONS(5720), + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(8114), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [4213] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6717), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_import_directive] = STATE(4944), + [aux_sym_module_macro_repeat1] = STATE(4944), + [sym__newline] = ACTIONS(8114), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [sym_comment] = ACTIONS(3), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + [sym_pragma] = ACTIONS(3), }, [4214] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(6719), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [anon_sym_to] = ACTIONS(8116), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4215] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8118), }, [4216] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(8120), + [anon_sym_using] = ACTIONS(8120), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(8120), + [anon_sym_in] = ACTIONS(8120), + [anon_sym_public] = ACTIONS(8120), + [anon_sym_renaming] = ACTIONS(8120), }, [4217] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8101), + [sym_renaming] = STATE(4947), + [anon_sym_module] = ACTIONS(4916), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(4920), }, [4218] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4943), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [4219] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), + [aux_sym_import_directive_repeat1] = STATE(4949), + [anon_sym_SEMI] = ACTIONS(6747), + [anon_sym_RPAREN] = ACTIONS(8122), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + }, + [4219] = { + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_renaming] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_using] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_hiding] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_public] = ACTIONS(4490), }, [4220] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4944), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(8124), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4221] = { - [anon_sym_COLON] = ACTIONS(8103), + [anon_sym_SEMI] = ACTIONS(8126), + [anon_sym_RPAREN] = ACTIONS(8126), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8105), [sym_pragma] = ACTIONS(3), }, [4222] = { - [anon_sym_COLON] = ACTIONS(8107), + [sym__import_name] = STATE(4951), + [anon_sym_module] = ACTIONS(4926), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8105), + [sym_name] = ACTIONS(8128), }, [4223] = { - [anon_sym_COLON] = ACTIONS(8109), + [aux_sym__comma_import_names1_repeat1] = STATE(4952), + [anon_sym_SEMI] = ACTIONS(6755), + [anon_sym_RPAREN] = ACTIONS(8130), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4224] = { - [anon_sym_COLON] = ACTIONS(8111), - [anon_sym_2] = ACTIONS(8105), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), }, [4225] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_RBRACE] = ACTIONS(8132), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [4226] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4950), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4227] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4951), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8134), }, [4228] = { - [anon_sym_COLON] = ACTIONS(6735), + [anon_sym_RPAREN] = ACTIONS(8134), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(6727), [sym_pragma] = ACTIONS(3), }, [4229] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8113), + [anon_sym_PIPE_RPAREN] = ACTIONS(8134), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4230] = { - [sym_primitive] = STATE(4953), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4953), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4953), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4953), - [sym_abstract] = STATE(4953), - [sym_private] = STATE(4953), - [sym_function_clause] = STATE(4953), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4953), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4953), - [sym_data] = STATE(4953), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4953), - [sym_macro] = STATE(4953), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4953), - [sym_record_signature_only] = STATE(4953), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4953), - [sym_syntax] = STATE(4953), - [sym_record] = STATE(4953), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4953), - [sym_generalize] = STATE(4953), - [sym_mutual] = STATE(4953), - [sym_postulate] = STATE(4953), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8134), }, [4231] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(4956), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8136), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4232] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8113), + [anon_sym_LBRACE] = ACTIONS(8138), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4233] = { - [anon_sym_COLON] = ACTIONS(8115), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8134), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8117), }, [4234] = { - [anon_sym_COLON] = ACTIONS(8119), - [anon_sym_2] = ACTIONS(8117), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4235] = { - [sym_do] = STATE(4957), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4957), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4957), - [sym_lambda] = STATE(4957), - [sym__application] = STATE(4957), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8140), + [sym_pragma] = ACTIONS(3), }, [4236] = { - [sym_do] = STATE(4958), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4958), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4958), - [sym_lambda] = STATE(4958), - [sym__application] = STATE(4958), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_rewrite] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [4237] = { - [sym_do] = STATE(4959), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4959), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4959), - [sym_lambda] = STATE(4959), - [sym__application] = STATE(4959), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4238] = { - [sym_do] = STATE(4960), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4960), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4960), - [sym_lambda] = STATE(4960), - [sym__application] = STATE(4960), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8142), + [sym_pragma] = ACTIONS(3), }, [4239] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_] = ACTIONS(2718), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(8144), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [4240] = { - [anon_sym_RPAREN] = ACTIONS(8121), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8144), }, [4241] = { - [anon_sym_COLON] = ACTIONS(8123), + [anon_sym_RPAREN] = ACTIONS(8144), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4242] = { - [anon_sym_COLON] = ACTIONS(8125), - [anon_sym_SEMI] = ACTIONS(2814), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8117), + [anon_sym_2] = ACTIONS(8144), [sym_pragma] = ACTIONS(3), }, [4243] = { - [sym_do] = STATE(4964), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4964), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4964), - [sym_lambda] = STATE(4964), - [sym__application] = STATE(4964), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_literal] = STATE(3639), + [sym_record_assignments] = STATE(3639), + [sym_atom] = STATE(4592), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_Prop] = ACTIONS(5793), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_record] = ACTIONS(5803), + [anon_sym_] = ACTIONS(5807), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(5811), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), }, [4244] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_literal] = STATE(3639), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3651), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_record_assignments] = STATE(3639), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6802), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), + [sym_pragma] = ACTIONS(3), }, [4245] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [4246] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(4246), - [aux_sym__open_args1_repeat1] = STATE(4246), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_unquote] = ACTIONS(5102), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(8127), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_3] = ACTIONS(5132), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8146), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4247] = { - [sym_literal] = STATE(792), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(802), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3107), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(4937), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(2001), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1997), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6806), + [anon_sym_LBRACE] = ACTIONS(2003), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4248] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym_SEMI] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3991), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [4249] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8130), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4962), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4250] = { - [sym__atom_no_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym_record_assignments] = STATE(3586), - [sym__atom_curly] = STATE(3596), - [sym_atom] = STATE(4560), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6760), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_3] = ACTIONS(5740), - [aux_sym_string_token1] = ACTIONS(5738), - [anon_sym_Prop] = ACTIONS(5720), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [4251] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3598), - [sym__atom_curly] = STATE(3596), - [sym_literal] = STATE(3586), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(3596), - [sym_record_assignments] = STATE(3586), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(5720), - [anon_sym_unquote] = ACTIONS(5720), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(5722), - [anon_sym_Set] = ACTIONS(5720), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5724), - [anon_sym_LPAREN] = ACTIONS(5726), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5720), - [anon_sym_quoteTerm] = ACTIONS(5720), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5720), - [sym__const_ellipsis] = ACTIONS(5720), - [anon_sym_record] = ACTIONS(5728), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(5720), - [anon_sym_] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(6760), - [anon_sym_LPAREN_PIPE] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(5736), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(5738), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(5720), - [anon_sym_3] = ACTIONS(5740), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4963), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4252] = { - [sym__atom_no_curly] = STATE(323), - [sym_literal] = STATE(306), - [sym_record_assignments] = STATE(306), - [sym__atom_curly] = STATE(323), - [sym_atom] = STATE(1094), - [anon_sym__] = ACTIONS(475), - [anon_sym_unquote] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(1925), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(1921), - [anon_sym_DOT] = ACTIONS(6766), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_3] = ACTIONS(503), - [aux_sym_string_token1] = ACTIONS(499), - [anon_sym_Prop] = ACTIONS(475), + [anon_sym_COLON] = ACTIONS(8148), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8150), + [sym_pragma] = ACTIONS(3), }, [4253] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(8152), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8150), }, [4254] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1791), - [sym__atom_curly] = STATE(1792), - [sym_literal] = STATE(1776), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(1792), - [sym_record_assignments] = STATE(1776), - [aux_sym__open_args1_repeat1] = STATE(1775), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(2778), - [anon_sym_unquote] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(2784), - [anon_sym_Set] = ACTIONS(2778), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2778), - [anon_sym_quoteTerm] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2778), - [sym__const_ellipsis] = ACTIONS(2778), - [anon_sym_record] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2778), - [sym__const_right_arrow] = ACTIONS(5000), - [anon_sym_] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(4951), - [anon_sym_LPAREN_PIPE] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(2804), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(2778), - [anon_sym_3] = ACTIONS(2808), + [anon_sym_COLON] = ACTIONS(8154), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4255] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8132), + [anon_sym_COLON] = ACTIONS(8156), + [anon_sym_2] = ACTIONS(8150), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4256] = { - [sym_primitive] = STATE(4967), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4967), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4967), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4967), - [sym_abstract] = STATE(4967), - [sym_private] = STATE(4967), - [sym_function_clause] = STATE(4967), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4967), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4967), - [sym_data] = STATE(4967), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4967), - [sym_macro] = STATE(4967), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4967), - [sym_record_signature_only] = STATE(4967), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4967), - [sym_syntax] = STATE(4967), - [sym_record] = STATE(4967), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4967), - [sym_generalize] = STATE(4967), - [sym_mutual] = STATE(4967), - [sym_postulate] = STATE(4967), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4969), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4257] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_SEMI] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [4258] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8132), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4970), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4259] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6820), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(6812), + [sym_pragma] = ACTIONS(3), }, [4260] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4261] = { - [anon_sym_SEMI] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(8158), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8160), }, [4262] = { - [anon_sym_SEMI] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - }, - [4263] = { + [anon_sym_COLON] = ACTIONS(8162), + [anon_sym_2] = ACTIONS(8160), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8134), [sym_pragma] = ACTIONS(3), }, + [4263] = { + [sym__expr2] = STATE(4974), + [sym_do] = STATE(4974), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4974), + [sym_lambda] = STATE(4974), + [sym__application] = STATE(4974), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + }, [4264] = { - [sym__field_assignments1] = STATE(4969), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8134), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(4975), + [sym_do] = STATE(4975), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(4975), + [sym_lambda] = STATE(4975), + [sym__application] = STATE(4975), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4265] = { - [anon_sym_SEMI] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__expr2] = STATE(4976), + [sym_do] = STATE(4976), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(4976), + [sym_lambda] = STATE(4976), + [sym__application] = STATE(4976), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4266] = { - [sym__atom_no_curly] = STATE(786), - [sym_literal] = STATE(776), - [sym_record_assignments] = STATE(776), - [sym__atom_curly] = STATE(786), - [sym_atom] = STATE(4266), - [aux_sym__open_args1_repeat1] = STATE(4266), - [anon_sym__] = ACTIONS(5102), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_unquote] = ACTIONS(5102), - [aux_sym_integer_token1] = ACTIONS(5108), - [anon_sym_Set] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5111), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5102), - [anon_sym_quoteTerm] = ACTIONS(5102), - [anon_sym_quote] = ACTIONS(5102), - [sym__const_ellipsis] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_] = ACTIONS(5117), - [anon_sym_DOT] = ACTIONS(8136), - [anon_sym_LPAREN_PIPE] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_3] = ACTIONS(5132), - [aux_sym_string_token1] = ACTIONS(5129), - [anon_sym_Prop] = ACTIONS(5102), + [sym__expr2] = STATE(4977), + [sym_do] = STATE(4977), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(4977), + [sym_lambda] = STATE(4977), + [sym__application] = STATE(4977), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4267] = { - [sym_literal] = STATE(792), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(802), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(4971), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(8139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [4268] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1211), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(8141), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(8164), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4269] = { + [anon_sym_RPAREN] = ACTIONS(8166), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(8143), }, [4270] = { - [sym_literal] = STATE(792), - [aux_sym__with_expr_repeat1] = STATE(299), - [sym__let_in] = STATE(69), - [sym_let] = STATE(428), - [sym__atom_no_curly] = STATE(802), - [aux_sym__open_args1_repeat1] = STATE(4971), - [sym_do] = STATE(428), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [sym__application] = STATE(428), - [sym__expr2] = STATE(428), - [sym_lambda] = STATE(428), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(8139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(8168), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8160), + [sym_pragma] = ACTIONS(3), }, [4271] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(192), - [sym_record_assignments] = STATE(174), - [aux_sym__open_args1_repeat1] = STATE(433), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2786), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [sym__const_right_arrow] = ACTIONS(425), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(8141), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__expr2] = STATE(4981), + [sym_do] = STATE(4981), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(4981), + [sym_lambda] = STATE(4981), + [sym__application] = STATE(4981), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [4272] = { - [anon_sym_PIPE] = ACTIONS(455), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(8143), }, [4273] = { - [anon_sym_SEMI] = ACTIONS(8145), + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(4273), + [aux_sym__open_args1_repeat1] = STATE(4273), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_quoteTerm] = ACTIONS(5186), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8145), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(8170), + [anon_sym_unquote] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5213), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [4274] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(3152), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [4275] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - }, - [4276] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8173), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8147), [sym_pragma] = ACTIONS(3), }, + [4276] = { + [sym_primitive] = STATE(4983), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4983), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4983), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4983), + [sym_abstract] = STATE(4983), + [sym_private] = STATE(4983), + [sym_function_clause] = STATE(4983), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4983), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4983), + [sym_data] = STATE(4983), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4983), + [sym_macro] = STATE(4983), + [sym_test] = STATE(4983), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4983), + [sym_record_signature_only] = STATE(4983), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4983), + [sym_syntax] = STATE(4983), + [sym_record] = STATE(4983), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4983), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4983), + [sym_mutual] = STATE(4983), + [sym_postulate] = STATE(4983), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), + }, [4277] = { - [sym__field_assignments1] = STATE(4975), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8147), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4278] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - }, - [4279] = { - [sym__newline] = ACTIONS(6772), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8173), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, + [4279] = { + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_literal] = STATE(3639), + [sym_record_assignments] = STATE(3639), + [sym_atom] = STATE(4592), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LPAREN] = ACTIONS(5799), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_Prop] = ACTIONS(5793), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_record] = ACTIONS(5803), + [anon_sym_] = ACTIONS(5807), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6847), + [anon_sym_LBRACE] = ACTIONS(5811), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), + }, [4280] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(4976), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [sym_literal] = STATE(3639), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(3651), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3649), + [sym__atom_no_curly] = STATE(3649), + [sym_record_assignments] = STATE(3639), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(5793), + [anon_sym_quoteTerm] = ACTIONS(5793), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(5795), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(5793), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5797), + [anon_sym_LPAREN] = ACTIONS(5799), + [anon_sym_LPAREN_PIPE] = ACTIONS(5801), + [sym_qualified_name] = ACTIONS(5793), + [anon_sym_quote] = ACTIONS(5793), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(5793), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(5803), + [sym__const_ellipsis] = ACTIONS(5793), + [anon_sym_3] = ACTIONS(5805), + [anon_sym_] = ACTIONS(5807), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5793), + [anon_sym_DOT] = ACTIONS(6847), + [anon_sym_LBRACE] = ACTIONS(5811), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(5813), + [anon_sym_Set] = ACTIONS(5793), + [sym_pragma] = ACTIONS(3), }, [4281] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(8149), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [4282] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(8151), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8175), [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), [sym_pragma] = ACTIONS(3), }, [4283] = { - [sym_import_directive] = STATE(4977), - [aux_sym_module_macro_repeat1] = STATE(4977), - [sym__newline] = ACTIONS(8151), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4492), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4284] = { - [anon_sym_to] = ACTIONS(8153), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8177), [sym_pragma] = ACTIONS(3), }, [4285] = { + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_literal] = STATE(325), + [sym_record_assignments] = STATE(325), + [sym_atom] = STATE(1140), + [anon_sym__] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1999), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(523), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(2001), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8155), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_3] = ACTIONS(517), + [anon_sym_Prop] = ACTIONS(505), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_record] = ACTIONS(511), + [anon_sym_] = ACTIONS(1997), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_DOT] = ACTIONS(6853), + [anon_sym_LBRACE] = ACTIONS(2003), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4286] = { - [sym__newline] = ACTIONS(8157), - [anon_sym_using] = ACTIONS(8157), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8157), - [anon_sym_hiding] = ACTIONS(8157), - [anon_sym_public] = ACTIONS(8157), - [anon_sym_renaming] = ACTIONS(8157), }, [4287] = { - [sym_renaming] = STATE(4980), - [anon_sym_module] = ACTIONS(5030), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(5034), }, [4288] = { - [aux_sym_import_directive_repeat1] = STATE(4982), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(8159), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4289] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_renaming] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_using] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_hiding] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_public] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4290] = { + [sym__atom_curly] = STATE(849), + [sym__atom_no_curly] = STATE(849), + [sym_literal] = STATE(839), + [sym_record_assignments] = STATE(839), + [sym_atom] = STATE(4290), + [aux_sym__open_args1_repeat1] = STATE(4290), + [anon_sym__] = ACTIONS(5186), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5189), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_quoteTerm] = ACTIONS(5186), + [aux_sym_integer_token1] = ACTIONS(5192), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_PIPE] = ACTIONS(1527), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8161), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5198), + [sym_qualified_name] = ACTIONS(5186), + [anon_sym_quote] = ACTIONS(5186), + [anon_sym_3] = ACTIONS(5201), + [anon_sym_Prop] = ACTIONS(5186), + [sym__const_ellipsis] = ACTIONS(5186), + [anon_sym_record] = ACTIONS(5204), + [anon_sym_] = ACTIONS(5207), + [anon_sym_DOT] = ACTIONS(8179), + [anon_sym_unquote] = ACTIONS(5186), + [anon_sym_LBRACE] = ACTIONS(5213), + [aux_sym_string_token1] = ACTIONS(5216), + [anon_sym_Set] = ACTIONS(5186), }, [4291] = { - [anon_sym_SEMI] = ACTIONS(8163), - [anon_sym_RPAREN] = ACTIONS(8163), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(4987), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(8182), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [4292] = { - [sym__import_name] = STATE(4984), - [anon_sym_module] = ACTIONS(5040), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8184), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8165), }, [4293] = { - [aux_sym__comma_import_names1_repeat1] = STATE(4985), - [anon_sym_SEMI] = ACTIONS(6909), - [anon_sym_RPAREN] = ACTIONS(8167), - [sym_comment] = ACTIONS(3), + [sym_primitive] = STATE(4989), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(4989), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(4989), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(4989), + [sym_abstract] = STATE(4989), + [sym_private] = STATE(4989), + [sym_function_clause] = STATE(4989), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(4989), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(4989), + [sym_data] = STATE(4989), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(4989), + [sym_macro] = STATE(4989), + [sym_test] = STATE(4989), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(4989), + [sym_record_signature_only] = STATE(4989), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(4989), + [sym_syntax] = STATE(4989), + [sym_record] = STATE(4989), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(4989), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(4989), + [sym_mutual] = STATE(4989), + [sym_postulate] = STATE(4989), + [anon_sym_pattern] = ACTIONS(145), [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4294] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4295] = { - [anon_sym_SEMI] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_3] = ACTIONS(6077), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8184), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4296] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3991), - [anon_sym_SEMI] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4297] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8169), + [anon_sym_RBRACE] = ACTIONS(8186), [sym_pragma] = ACTIONS(3), }, [4298] = { - [anon_sym_SEMI] = ACTIONS(3991), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_3] = ACTIONS(3989), + [sym__field_assignments1] = STATE(4991), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8186), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4299] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8171), + [anon_sym_SEMI] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4300] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1351), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1355), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(1359), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4301] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_literal] = STATE(211), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(230), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_record_assignments] = STATE(211), + [aux_sym__open_args1_repeat1] = STATE(443), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [sym__const_right_arrow] = ACTIONS(419), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_] = ACTIONS(1363), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(1369), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4302] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8173), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(8190), + [anon_sym_PIPE] = ACTIONS(479), }, [4303] = { - [sym_primitive] = STATE(4989), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(4989), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(4989), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(4989), - [sym_abstract] = STATE(4989), - [sym_private] = STATE(4989), - [sym_function_clause] = STATE(4989), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(4989), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(4989), - [sym_data] = STATE(4989), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(4989), - [sym_macro] = STATE(4989), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(4989), - [sym_record_signature_only] = STATE(4989), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(4989), - [sym_syntax] = STATE(4989), - [sym_record] = STATE(4989), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(4989), - [sym_generalize] = STATE(4989), - [sym_mutual] = STATE(4989), - [sym_postulate] = STATE(4989), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(3599), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(8190), }, [4304] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(2333), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_literal] = STATE(873), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [aux_sym__open_args1_repeat1] = STATE(4987), + [sym__expr2] = STATE(458), + [sym_do] = STATE(458), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(885), + [sym_record_assignments] = STATE(873), + [aux_sym__with_expr_repeat1] = STATE(307), + [sym_let] = STATE(458), + [sym_lambda] = STATE(458), + [sym__application] = STATE(458), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(8182), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [4305] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8173), + [anon_sym_SEMI] = ACTIONS(8192), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8192), [sym_pragma] = ACTIONS(3), }, [4306] = { - [anon_sym_COLON] = ACTIONS(8175), - [sym_comment] = ACTIONS(3), + [sym_literal] = STATE(1852), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(1868), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1869), + [sym__atom_no_curly] = STATE(1869), + [sym_record_assignments] = STATE(1852), + [aux_sym__open_args1_repeat1] = STATE(1872), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(2918), + [anon_sym_quoteTerm] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(2922), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2930), + [sym_qualified_name] = ACTIONS(2918), + [anon_sym_quote] = ACTIONS(2918), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(2936), + [sym__const_ellipsis] = ACTIONS(2918), + [anon_sym_3] = ACTIONS(2938), + [anon_sym_] = ACTIONS(2940), + [sym__const_right_arrow] = ACTIONS(5123), + [anon_sym_unquote] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(2946), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(2950), + [anon_sym_Set] = ACTIONS(2918), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8177), }, [4307] = { - [anon_sym_COLON] = ACTIONS(8179), - [anon_sym_2] = ACTIONS(8177), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4308] = { - [sym_do] = STATE(4993), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4993), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(4993), - [sym_lambda] = STATE(4993), - [sym__application] = STATE(4993), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4309] = { - [sym_do] = STATE(4994), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4994), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(4994), - [sym_lambda] = STATE(4994), - [sym__application] = STATE(4994), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8194), + [sym_pragma] = ACTIONS(3), }, [4310] = { - [sym_do] = STATE(4995), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4995), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(4995), - [sym_lambda] = STATE(4995), - [sym__application] = STATE(4995), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__field_assignments1] = STATE(4995), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8194), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4311] = { - [sym_do] = STATE(4996), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(4996), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(4996), - [sym_lambda] = STATE(4996), - [sym__application] = STATE(4996), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4312] = { - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), + [sym__newline] = ACTIONS(6871), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [4313] = { - [anon_sym_RPAREN] = ACTIONS(8181), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(4996), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), }, [4314] = { - [anon_sym_COLON] = ACTIONS(8183), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4315] = { - [anon_sym_COLON] = ACTIONS(8185), - [anon_sym_SEMI] = ACTIONS(2814), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8177), + [anon_sym_RBRACE] = ACTIONS(8196), [sym_pragma] = ACTIONS(3), }, [4316] = { - [sym_do] = STATE(5000), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5000), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(5000), - [sym_lambda] = STATE(5000), - [sym__application] = STATE(5000), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4317] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(2343), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_RPAREN] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), }, [4318] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), }, [4319] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8198), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), }, [4320] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8187), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4321] = { - [sym__field_assignments1] = STATE(5002), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8187), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4322] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(2408), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), }, [4323] = { - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(8200), [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8202), }, [4324] = { + [anon_sym_COLON] = ACTIONS(8204), + [anon_sym_2] = ACTIONS(8202), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8189), }, [4325] = { - [anon_sym_RPAREN] = ACTIONS(8189), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5002), + [sym_do] = STATE(5002), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5002), + [sym_lambda] = STATE(5002), + [sym__application] = STATE(5002), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4326] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5005), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8191), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5003), + [sym_do] = STATE(5003), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(5003), + [sym_lambda] = STATE(5003), + [sym__application] = STATE(5003), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4327] = { - [anon_sym_LBRACE] = ACTIONS(8193), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5004), + [sym_do] = STATE(5004), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(5004), + [sym_lambda] = STATE(5004), + [sym__application] = STATE(5004), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4328] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8189), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5005), + [sym_do] = STATE(5005), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(5005), + [sym_lambda] = STATE(5005), + [sym__application] = STATE(5005), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4329] = { + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8189), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [4330] = { - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(8206), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4331] = { + [anon_sym_RPAREN] = ACTIONS(8208), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8195), [sym_pragma] = ACTIONS(3), }, [4332] = { + [anon_sym_COLON] = ACTIONS(8210), + [anon_sym_SEMI] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8189), + [anon_sym_RBRACE] = ACTIONS(8202), [sym_pragma] = ACTIONS(3), }, [4333] = { - [sym__atom_no_curly] = STATE(3237), - [sym_literal] = STATE(3227), - [sym_record_assignments] = STATE(3227), - [sym__atom_curly] = STATE(3237), - [sym_atom] = STATE(4333), - [aux_sym__open_args1_repeat1] = STATE(4333), - [anon_sym__] = ACTIONS(8197), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8200), - [anon_sym_unquote] = ACTIONS(8197), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(8203), - [anon_sym_Set] = ACTIONS(8197), - [anon_sym_LPAREN] = ACTIONS(8206), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(8197), - [anon_sym_quoteTerm] = ACTIONS(8197), - [anon_sym_quote] = ACTIONS(8197), - [sym__const_ellipsis] = ACTIONS(8197), - [anon_sym_record] = ACTIONS(8209), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(8197), - [anon_sym_] = ACTIONS(8212), - [anon_sym_DOT] = ACTIONS(8215), - [anon_sym_LPAREN_PIPE] = ACTIONS(8218), - [anon_sym_LBRACE] = ACTIONS(8221), - [anon_sym_3] = ACTIONS(8224), - [aux_sym_string_token1] = ACTIONS(8227), - [anon_sym_Prop] = ACTIONS(8197), + [sym__expr2] = STATE(5009), + [sym_do] = STATE(5009), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5009), + [sym_lambda] = STATE(5009), + [sym__application] = STATE(5009), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), + [sym_pragma] = ACTIONS(3), }, [4334] = { - [sym_literal] = STATE(3244), - [sym__with_expr] = STATE(2366), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym_let] = STATE(74), - [sym__atom_no_curly] = STATE(3254), - [sym__let_in] = STATE(69), - [aux_sym__open_args1_repeat1] = STATE(3255), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(3256), - [sym__atom_curly] = STATE(3254), - [sym_record_assignments] = STATE(3244), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(5212), - [anon_sym_unquote] = ACTIONS(5212), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(5214), - [anon_sym_Set] = ACTIONS(5212), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5216), - [anon_sym_LPAREN] = ACTIONS(5218), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5212), - [anon_sym_quoteTerm] = ACTIONS(5212), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(5212), - [sym__const_ellipsis] = ACTIONS(5212), - [anon_sym_record] = ACTIONS(5220), - [anon_sym_QMARK] = ACTIONS(5212), - [anon_sym_] = ACTIONS(5222), - [anon_sym_DOT] = ACTIONS(5224), - [anon_sym_LPAREN_PIPE] = ACTIONS(5226), - [anon_sym_LBRACE] = ACTIONS(5228), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(5230), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(5212), - [anon_sym_3] = ACTIONS(5232), - }, - [4335] = { - [sym__newline] = ACTIONS(8230), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(2418), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8230), + }, + [4335] = { + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4336] = { - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8212), }, [4337] = { + [anon_sym_RPAREN] = ACTIONS(8212), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8232), }, [4338] = { - [anon_sym_RPAREN] = ACTIONS(8232), + [anon_sym_PIPE_RPAREN] = ACTIONS(8212), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4339] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5010), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8234), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8212), }, [4340] = { - [anon_sym_LBRACE] = ACTIONS(8236), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5012), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8214), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4341] = { + [anon_sym_LBRACE] = ACTIONS(8216), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8232), [sym_pragma] = ACTIONS(3), }, [4342] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8212), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8232), }, [4343] = { + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4344] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8238), + [anon_sym_RBRACE] = ACTIONS(8218), [sym_pragma] = ACTIONS(3), }, [4345] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8232), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3254), + [sym__atom_no_curly] = STATE(3254), + [sym_literal] = STATE(3244), + [sym_record_assignments] = STATE(3244), + [sym_atom] = STATE(4345), + [aux_sym__open_args1_repeat1] = STATE(4345), + [anon_sym__] = ACTIONS(8220), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8223), + [anon_sym_quoteTerm] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(8226), + [anon_sym_QMARK] = ACTIONS(8220), + [anon_sym_LPAREN] = ACTIONS(8229), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(8232), + [sym_qualified_name] = ACTIONS(8220), + [anon_sym_quote] = ACTIONS(8220), + [anon_sym_3] = ACTIONS(8235), + [anon_sym_Prop] = ACTIONS(8220), + [sym__const_ellipsis] = ACTIONS(8220), + [anon_sym_record] = ACTIONS(8238), + [anon_sym_] = ACTIONS(8241), + [anon_sym_DOT] = ACTIONS(8244), + [anon_sym_unquote] = ACTIONS(8220), + [anon_sym_LBRACE] = ACTIONS(8247), + [aux_sym_string_token1] = ACTIONS(8250), + [anon_sym_Set] = ACTIONS(8220), }, [4346] = { - [sym__declaration_block] = STATE(5013), - [sym__newline] = ACTIONS(8230), - [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8230), + [sym_literal] = STATE(3279), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(3289), + [sym__atom_no_curly] = STATE(3289), + [aux_sym__open_args1_repeat1] = STATE(3290), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3291), + [sym_record_assignments] = STATE(3279), + [sym__with_expr] = STATE(2408), + [sym__application] = STATE(80), + [sym_let] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(5308), + [anon_sym_quoteTerm] = ACTIONS(5308), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(5310), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(5308), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5312), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5316), + [sym_qualified_name] = ACTIONS(5308), + [anon_sym_quote] = ACTIONS(5308), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(5308), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(5318), + [sym__const_ellipsis] = ACTIONS(5308), + [anon_sym_3] = ACTIONS(5320), + [anon_sym_] = ACTIONS(5322), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(5308), + [anon_sym_DOT] = ACTIONS(5324), + [anon_sym_LBRACE] = ACTIONS(5326), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(5328), + [anon_sym_Set] = ACTIONS(5308), }, [4347] = { - [sym_literal] = STATE(211), - [sym__typed_bindings1] = STATE(226), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(228), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(229), - [aux_sym__open_args1_repeat1] = STATE(230), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(231), - [sym__atom_curly] = STATE(229), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(211), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(232), - [anon_sym__] = ACTIONS(313), - [anon_sym_LBRACE_LBRACE] = ACTIONS(315), - [anon_sym_let] = ACTIONS(317), - [sym__const_lambda] = ACTIONS(319), - [aux_sym_integer_token1] = ACTIONS(321), - [anon_sym_Set] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_quoteGoal] = ACTIONS(325), - [anon_sym_unquote] = ACTIONS(313), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(313), - [anon_sym_quoteTerm] = ACTIONS(313), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(313), - [sym__const_ellipsis] = ACTIONS(313), - [anon_sym_record] = ACTIONS(327), - [anon_sym_QMARK] = ACTIONS(313), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(329), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_LPAREN_PIPE] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_tactic] = ACTIONS(337), - [aux_sym_string_token1] = ACTIONS(339), - [sym__const_forall] = ACTIONS(341), - [anon_sym_Prop] = ACTIONS(313), - [anon_sym_3] = ACTIONS(343), - }, - [4348] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8253), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8240), + }, + [4348] = { + [sym_primitive] = STATE(5016), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(5016), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(5016), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(5016), + [sym_abstract] = STATE(5016), + [sym_private] = STATE(5016), + [sym_function_clause] = STATE(5016), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(5016), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(5016), + [sym_data] = STATE(5016), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(5016), + [sym_macro] = STATE(5016), + [sym_test] = STATE(5016), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(5016), + [sym_record_signature_only] = STATE(5016), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(5016), + [sym_syntax] = STATE(5016), + [sym_record] = STATE(5016), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(5016), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(5016), + [sym_mutual] = STATE(5016), + [sym_postulate] = STATE(5016), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(3827), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4349] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(2453), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8240), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), }, [4350] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5015), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8253), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4351] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_PIPE_RPAREN] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4352] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5016), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8255), + [sym_pragma] = ACTIONS(3), }, [4353] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5017), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(5018), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8255), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4354] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5018), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4355] = { - [anon_sym_RPAREN] = ACTIONS(8240), + [sym__newline] = ACTIONS(8257), + [anon_sym_in] = ACTIONS(8257), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4356] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8240), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4357] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [anon_sym_PIPE_RPAREN] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8259), }, [4358] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8259), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4359] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(8259), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8242), [sym_pragma] = ACTIONS(3), }, [4360] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5021), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8261), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [anon_sym_PIPE_RPAREN] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [4361] = { + [anon_sym_LBRACE] = ACTIONS(8263), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8244), [sym_pragma] = ACTIONS(3), }, [4362] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8259), }, [4363] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_2] = ACTIONS(8259), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7418), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_RPAREN] = ACTIONS(7418), - [anon_sym_RBRACE] = ACTIONS(7420), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [4364] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8246), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4365] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8265), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8246), }, [4366] = { - [anon_sym_RPAREN] = ACTIONS(8246), + [sym__declaration_block] = STATE(5024), + [sym__newline] = ACTIONS(8257), + [anon_sym_in] = ACTIONS(8257), [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(81), [sym_pragma] = ACTIONS(3), }, [4367] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8246), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4368] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7506), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [anon_sym_RPAREN] = ACTIONS(7506), + [anon_sym_RBRACE] = ACTIONS(7508), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [4369] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8248), + [anon_sym_RBRACE] = ACTIONS(8267), [sym_pragma] = ACTIONS(3), }, [4370] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8267), }, [4371] = { + [anon_sym_RPAREN] = ACTIONS(8267), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8250), }, [4372] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8250), + [anon_sym_2] = ACTIONS(8267), [sym_pragma] = ACTIONS(3), }, [4373] = { + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, + [4374] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8269), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + }, + [4375] = { + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8271), + }, + [4376] = { + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8271), + [sym_pragma] = ACTIONS(3), + }, + [4377] = { + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8252), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8273), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), - [anon_sym_3] = ACTIONS(119), + [anon_sym_Set] = ACTIONS(119), + [anon_sym_unquote] = ACTIONS(119), }, - [4374] = { + [4378] = { [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(119), + [anon_sym_PIPE] = ACTIONS(119), + [anon_sym_LPAREN_PIPE] = ACTIONS(121), [sym_qualified_name] = ACTIONS(119), - [anon_sym_quoteTerm] = ACTIONS(119), + [anon_sym_quote] = ACTIONS(119), [sym__const_right_arrow] = ACTIONS(119), - [anon_sym_do] = ACTIONS(119), + [anon_sym_tactic] = ACTIONS(119), [sym__const_ellipsis] = ACTIONS(119), [anon_sym_record] = ACTIONS(119), - [anon_sym_QMARK] = ACTIONS(119), - [anon_sym_quote] = ACTIONS(119), + [anon_sym_let] = ACTIONS(119), + [anon_sym_Prop] = ACTIONS(119), [anon_sym_] = ACTIONS(119), + [anon_sym_3] = ACTIONS(119), [anon_sym__] = ACTIONS(119), [anon_sym_LBRACE_LBRACE] = ACTIONS(121), [sym__const_lambda] = ACTIONS(119), - [anon_sym_let] = ACTIONS(119), + [anon_sym_quoteGoal] = ACTIONS(119), [aux_sym_integer_token1] = ACTIONS(119), - [anon_sym_Set] = ACTIONS(119), + [anon_sym_do] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(119), - [anon_sym_unquote] = ACTIONS(119), - [anon_sym_2] = ACTIONS(8254), + [anon_sym_QMARK] = ACTIONS(119), + [anon_sym_2] = ACTIONS(8275), + [anon_sym_quoteTerm] = ACTIONS(119), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(119), [anon_sym_DOT] = ACTIONS(119), - [anon_sym_LPAREN_PIPE] = ACTIONS(121), + [anon_sym_unquote] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(119), [sym__const_forall] = ACTIONS(119), [aux_sym_string_token1] = ACTIONS(121), - [anon_sym_tactic] = ACTIONS(119), - [anon_sym_Prop] = ACTIONS(119), - [anon_sym_3] = ACTIONS(119), - }, - [4375] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5025), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [4376] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(6710), - }, - [4377] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5026), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [4378] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5027), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Set] = ACTIONS(119), }, [4379] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5028), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5029), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4380] = { - [anon_sym_RPAREN] = ACTIONS(8250), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(6797), }, [4381] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8250), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5030), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4382] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5031), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8256), }, [4383] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8256), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5032), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4384] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5030), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(8271), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4385] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), + [anon_sym_RBRACE] = ACTIONS(8271), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym_name] = ACTIONS(6710), }, [4386] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5031), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8277), }, [4387] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5032), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8277), + [sym_pragma] = ACTIONS(3), }, [4388] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5033), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5034), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4389] = { - [anon_sym_RPAREN] = ACTIONS(8256), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym_name] = ACTIONS(6797), }, [4390] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5035), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4391] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5036), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4392] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8258), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5037), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4393] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5035), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(8277), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4394] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), - }, - [4395] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5036), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(8277), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + }, + [4395] = { + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [4396] = { - [anon_sym_COLON] = ACTIONS(8260), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8262), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5038), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4397] = { - [anon_sym_COLON] = ACTIONS(8264), + [anon_sym_module] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym__newline] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8262), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [4398] = { - [anon_sym_COLON] = ACTIONS(8266), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5039), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4399] = { - [anon_sym_COLON] = ACTIONS(8268), - [anon_sym_2] = ACTIONS(8262), + [anon_sym_COLON] = ACTIONS(8279), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8281), [sym_pragma] = ACTIONS(3), }, [4400] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(8283), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8281), }, [4401] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5042), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8285), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4402] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5043), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8287), + [anon_sym_2] = ACTIONS(8281), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4403] = { - [anon_sym_COLON] = ACTIONS(7037), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7029), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5045), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4404] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [4405] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8270), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5046), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4406] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(7058), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7050), + [sym_pragma] = ACTIONS(3), }, [4407] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4408] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8272), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4409] = { - [sym__field_assignments1] = STATE(5046), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8272), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8289), [sym_pragma] = ACTIONS(3), }, [4410] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__field_assignments1] = STATE(5048), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4411] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4412] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8274), }, [4413] = { - [anon_sym_RPAREN] = ACTIONS(8274), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8291), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4414] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5049), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8276), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4415] = { - [anon_sym_LBRACE] = ACTIONS(8278), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8293), [sym_pragma] = ACTIONS(3), }, [4416] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8274), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4417] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4412), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7082), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4418] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4413), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7082), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8295), + [sym_pragma] = ACTIONS(3), }, [4419] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4416), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7086), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__field_assignments1] = STATE(5052), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8295), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4420] = { - [sym__atom_no_curly] = STATE(3378), - [sym_literal] = STATE(3367), - [sym_record_assignments] = STATE(3367), - [sym__atom_curly] = STATE(3378), - [sym_atom] = STATE(4411), - [anon_sym__] = ACTIONS(5454), - [anon_sym_unquote] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7104), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(7106), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_] = ACTIONS(7102), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(7108), - [anon_sym_3] = ACTIONS(5474), - [aux_sym_string_token1] = ACTIONS(5472), - [anon_sym_Prop] = ACTIONS(5454), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4421] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4424), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7098), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5053), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4422] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8274), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4423] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5054), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4424] = { + [anon_sym_COLON] = ACTIONS(8297), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8280), + [anon_sym_RBRACE] = ACTIONS(8299), [sym_pragma] = ACTIONS(3), }, [4425] = { + [anon_sym_COLON] = ACTIONS(8301), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8274), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8299), }, [4426] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [anon_sym_COLON] = ACTIONS(8303), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4427] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4412), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7082), + [anon_sym_COLON] = ACTIONS(8305), + [anon_sym_2] = ACTIONS(8299), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4428] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4413), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7082), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5060), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4429] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4416), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7086), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4430] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4424), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7098), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5061), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4431] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), - }, - [4432] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8282), + [anon_sym_COLON] = ACTIONS(7125), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7117), [sym_pragma] = ACTIONS(3), }, + [4432] = { + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + }, [4433] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5053), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4434] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8307), + [sym_pragma] = ACTIONS(3), }, [4435] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5054), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__field_assignments1] = STATE(5063), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8307), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4436] = { - [anon_sym_COLON] = ACTIONS(8284), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8286), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4437] = { - [anon_sym_COLON] = ACTIONS(8288), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(3429), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8286), }, [4438] = { - [anon_sym_COLON] = ACTIONS(8290), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8309), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4439] = { - [anon_sym_COLON] = ACTIONS(8292), - [anon_sym_2] = ACTIONS(8286), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4440] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8311), + [sym_pragma] = ACTIONS(3), }, [4441] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5060), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4442] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5061), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8313), }, [4443] = { - [anon_sym_COLON] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(8313), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7114), [sym_pragma] = ACTIONS(3), }, [4444] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5068), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8315), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4445] = { + [anon_sym_LBRACE] = ACTIONS(8317), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8294), [sym_pragma] = ACTIONS(3), }, [4446] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_PIPE_RPAREN] = ACTIONS(8313), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4447] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8313), + [sym_pragma] = ACTIONS(3), }, [4448] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8296), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8313), }, [4449] = { - [sym__field_assignments1] = STATE(5064), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8296), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4442), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7172), }, [4450] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4443), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(7172), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4451] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4447), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7176), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [4452] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_literal] = STATE(3418), + [sym_record_assignments] = STATE(3418), + [sym_atom] = STATE(4441), + [anon_sym__] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7192), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5523), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_LPAREN] = ACTIONS(7194), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_Prop] = ACTIONS(5519), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_record] = ACTIONS(5527), + [anon_sym_] = ACTIONS(7190), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_DOT] = ACTIONS(7184), + [anon_sym_LBRACE] = ACTIONS(7196), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), }, [4453] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8298), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4455), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4454] = { - [sym__field_assignments1] = STATE(5066), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8298), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4455] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8319), + [sym_pragma] = ACTIONS(3), }, [4456] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4442), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7172), }, [4457] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4443), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7172), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4458] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8300), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4447), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7176), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [4459] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5068), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4455), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4460] = { - [anon_sym_module] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym__newline] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym_let] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(3429), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), }, [4461] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5069), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5071), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4462] = { - [anon_sym_COLON] = ACTIONS(8302), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8304), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4463] = { - [anon_sym_COLON] = ACTIONS(8306), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5072), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8304), }, [4464] = { - [anon_sym_COLON] = ACTIONS(8308), + [anon_sym_COLON] = ACTIONS(8321), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8323), [sym_pragma] = ACTIONS(3), }, [4465] = { - [anon_sym_COLON] = ACTIONS(8310), - [anon_sym_2] = ACTIONS(8304), + [anon_sym_COLON] = ACTIONS(8325), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8323), }, [4466] = { - [anon_sym_module] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym__newline] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(8327), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [4467] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5075), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8329), + [anon_sym_2] = ACTIONS(8323), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4468] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5076), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5078), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4469] = { - [anon_sym_COLON] = ACTIONS(7189), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7181), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4470] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5079), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4471] = { + [anon_sym_COLON] = ACTIONS(7210), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8312), + [anon_sym_RBRACE] = ACTIONS(7202), [sym_pragma] = ACTIONS(3), }, [4472] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4473] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4474] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8314), + [anon_sym_RBRACE] = ACTIONS(8331), [sym_pragma] = ACTIONS(3), }, [4475] = { - [sym__field_assignments1] = STATE(5079), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8314), + [sym__field_assignments1] = STATE(5081), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8331), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4476] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4477] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(43), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + [sym_pragma] = ACTIONS(3), }, [4478] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [4479] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8333), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8316), [sym_pragma] = ACTIONS(3), }, + [4479] = { + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, [4480] = { - [sym__field_assignments1] = STATE(5081), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8316), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8335), [sym_pragma] = ACTIONS(3), }, [4481] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4482] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4483] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8318), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8337), [sym_pragma] = ACTIONS(3), }, [4484] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5083), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(5085), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8337), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4485] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym__newline] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4486] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5084), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5086), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4487] = { - [anon_sym_COLON] = ACTIONS(8320), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8322), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym__newline] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4488] = { - [anon_sym_COLON] = ACTIONS(8324), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5087), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8322), }, [4489] = { - [anon_sym_COLON] = ACTIONS(8326), + [anon_sym_COLON] = ACTIONS(8339), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8341), [sym_pragma] = ACTIONS(3), }, [4490] = { - [anon_sym_COLON] = ACTIONS(8328), - [anon_sym_2] = ACTIONS(8322), + [anon_sym_COLON] = ACTIONS(8343), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8341), }, [4491] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym__newline] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(8345), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4492] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5090), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8347), + [anon_sym_2] = ACTIONS(8341), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4493] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5091), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5093), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4494] = { - [anon_sym_COLON] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7248), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4495] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5094), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4496] = { + [anon_sym_COLON] = ACTIONS(7275), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8330), + [anon_sym_RBRACE] = ACTIONS(7267), [sym_pragma] = ACTIONS(3), }, [4497] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4498] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4499] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8332), + [anon_sym_RBRACE] = ACTIONS(8349), [sym_pragma] = ACTIONS(3), }, [4500] = { - [sym__field_assignments1] = STATE(5094), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8332), + [sym__field_assignments1] = STATE(5096), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8349), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4501] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4502] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), + [sym_let] = STATE(43), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), }, [4503] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8351), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8334), }, [4504] = { - [anon_sym_RPAREN] = ACTIONS(8334), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4505] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5097), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8336), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8353), [sym_pragma] = ACTIONS(3), }, [4506] = { - [anon_sym_LBRACE] = ACTIONS(8338), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4507] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8334), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8355), }, [4508] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4503), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7301), + [anon_sym_RPAREN] = ACTIONS(8355), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4509] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4504), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5101), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8357), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4510] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4507), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(8359), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4511] = { - [sym__atom_no_curly] = STATE(3518), - [sym_literal] = STATE(3507), - [sym_record_assignments] = STATE(3507), - [sym__atom_curly] = STATE(3518), - [sym_atom] = STATE(4502), - [anon_sym__] = ACTIONS(5599), - [anon_sym_unquote] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7323), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(7325), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [anon_sym_] = ACTIONS(7321), - [anon_sym_DOT] = ACTIONS(7313), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(7327), - [anon_sym_3] = ACTIONS(5619), - [aux_sym_string_token1] = ACTIONS(5617), - [anon_sym_Prop] = ACTIONS(5599), + [anon_sym_PIPE_RPAREN] = ACTIONS(8355), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4512] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4515), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7317), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8355), + [sym_pragma] = ACTIONS(3), }, [4513] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8334), + [anon_sym_4] = ACTIONS(8355), }, [4514] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4507), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7322), }, [4515] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8340), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4508), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(7322), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4516] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8334), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4512), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7326), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [4517] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_literal] = STATE(3511), + [sym_record_assignments] = STATE(3511), + [sym_atom] = STATE(4506), + [anon_sym__] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7342), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(5621), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LPAREN] = ACTIONS(7344), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_Prop] = ACTIONS(5617), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_record] = ACTIONS(5625), + [anon_sym_] = ACTIONS(7340), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(7334), + [anon_sym_LBRACE] = ACTIONS(7346), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), }, [4518] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4503), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7301), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4520), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7338), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4519] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4504), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7301), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4520] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4507), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8361), + [sym_pragma] = ACTIONS(3), }, [4521] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4515), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7317), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4507), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7322), }, [4522] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1089), - [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4508), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7322), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4523] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8342), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4512), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7326), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [4524] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5101), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4520), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7338), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4525] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym__newline] = ACTIONS(4859), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym_let] = STATE(43), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), + [sym_pragma] = ACTIONS(3), }, [4526] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5102), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5104), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4527] = { - [anon_sym_COLON] = ACTIONS(8344), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8346), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym__newline] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4528] = { - [anon_sym_COLON] = ACTIONS(8348), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5105), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8346), }, [4529] = { - [anon_sym_COLON] = ACTIONS(8350), + [anon_sym_COLON] = ACTIONS(8363), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8365), [sym_pragma] = ACTIONS(3), }, [4530] = { - [anon_sym_COLON] = ACTIONS(8352), - [anon_sym_2] = ACTIONS(8346), + [anon_sym_COLON] = ACTIONS(8367), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8365), }, [4531] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym__newline] = ACTIONS(3631), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(8369), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4532] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5108), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8371), + [anon_sym_2] = ACTIONS(8365), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4533] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5109), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5111), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4534] = { - [anon_sym_COLON] = ACTIONS(7341), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7333), [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4535] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5112), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4536] = { + [anon_sym_COLON] = ACTIONS(7360), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8354), + [anon_sym_RBRACE] = ACTIONS(7352), [sym_pragma] = ACTIONS(3), }, [4537] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4538] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4539] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8356), + [anon_sym_RBRACE] = ACTIONS(8373), [sym_pragma] = ACTIONS(3), }, [4540] = { - [sym__field_assignments1] = STATE(5112), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8356), + [sym__field_assignments1] = STATE(5114), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8373), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4541] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4542] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(43), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), + [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1090), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + [sym_pragma] = ACTIONS(3), }, [4543] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [4544] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8375), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8358), [sym_pragma] = ACTIONS(3), }, + [4544] = { + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, [4545] = { - [sym__field_assignments1] = STATE(5114), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8358), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8377), [sym_pragma] = ACTIONS(3), }, [4546] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4547] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2326), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(2327), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2328), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4548] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8379), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8360), }, [4549] = { + [sym__field_assignments1] = STATE(5118), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8379), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8360), [sym_pragma] = ACTIONS(3), }, [4550] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5116), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4551] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6708), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_RBRACE] = ACTIONS(6710), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym_name] = ACTIONS(7508), }, [4552] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5117), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5119), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4553] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5118), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [4554] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5119), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5120), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4555] = { - [anon_sym_RPAREN] = ACTIONS(8360), + [anon_sym_COLON] = ACTIONS(8381), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8383), [sym_pragma] = ACTIONS(3), }, [4556] = { + [anon_sym_COLON] = ACTIONS(8385), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8360), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8383), }, [4557] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(8387), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4558] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3991), - [anon_sym_SEMI] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(8389), + [anon_sym_2] = ACTIONS(8383), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4559] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8362), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5126), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4560] = { - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_RBRACE_RBRACE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_3] = ACTIONS(809), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [4561] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5127), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8364), }, [4562] = { - [anon_sym_RPAREN] = ACTIONS(8364), + [anon_sym_COLON] = ACTIONS(7427), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7419), [sym_pragma] = ACTIONS(3), }, [4563] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5123), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8366), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4564] = { - [anon_sym_LBRACE] = ACTIONS(8368), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4565] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8364), + [anon_sym_RBRACE] = ACTIONS(8391), [sym_pragma] = ACTIONS(3), }, [4566] = { + [sym__field_assignments1] = STATE(5129), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8391), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8364), }, [4567] = { - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_RBRACE_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_3] = ACTIONS(1397), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4568] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8370), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), }, [4569] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8393), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8364), [sym_pragma] = ACTIONS(3), }, [4570] = { - [anon_sym_COLON] = ACTIONS(7704), - [anon_sym_SEMI] = ACTIONS(7704), - [anon_sym_RPAREN] = ACTIONS(7704), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7704), - [anon_sym_2] = ACTIONS(7704), - [anon_sym_where] = ACTIONS(7704), - [anon_sym_PIPE_RPAREN] = ACTIONS(7704), - [anon_sym_4] = ACTIONS(7704), - [anon_sym_RBRACE] = ACTIONS(8372), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4571] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_RBRACE] = ACTIONS(8395), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_4] = ACTIONS(7420), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [4572] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8374), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4573] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8374), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4574] = { - [anon_sym_RPAREN] = ACTIONS(8374), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8397), [sym_pragma] = ACTIONS(3), }, [4575] = { + [sym__field_assignments1] = STATE(5133), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8397), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8374), [sym_pragma] = ACTIONS(3), }, [4576] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2362), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(2363), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2364), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4577] = { - [sym_import_directive] = STATE(3620), - [aux_sym_module_macro_repeat1] = STATE(3620), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(6867), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8399), + [sym_pragma] = ACTIONS(3), }, [4578] = { - [sym_import_directive] = STATE(5127), - [aux_sym_module_macro_repeat1] = STATE(5127), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(6867), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8399), }, [4579] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8376), + [anon_sym_RPAREN] = ACTIONS(8399), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8376), }, [4580] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(2409), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(2410), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2411), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_unquote] = ACTIONS(561), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8399), + [sym_pragma] = ACTIONS(3), }, [4581] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8380), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8401), }, [4582] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8380), + [anon_sym_2] = ACTIONS(8401), [sym_pragma] = ACTIONS(3), }, [4583] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5129), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5136), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4584] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_2] = ACTIONS(6710), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6795), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [anon_sym_RBRACE] = ACTIONS(6797), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), }, [4585] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5130), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5137), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4586] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5131), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5138), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4587] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5132), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5139), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4588] = { - [anon_sym_RPAREN] = ACTIONS(8380), + [anon_sym_RPAREN] = ACTIONS(8401), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4589] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8380), + [anon_sym_RBRACE] = ACTIONS(8401), [sym_pragma] = ACTIONS(3), }, [4590] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_2] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4591] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - }, - [4592] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8382), + [anon_sym_RBRACE] = ACTIONS(8403), [sym_pragma] = ACTIONS(3), }, + [4592] = { + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_RBRACE_RBRACE] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + }, [4593] = { - [anon_sym_COLON] = ACTIONS(809), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_2] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8405), }, [4594] = { + [anon_sym_RPAREN] = ACTIONS(8405), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8384), }, [4595] = { - [anon_sym_RPAREN] = ACTIONS(8384), + [anon_sym_PIPE_RPAREN] = ACTIONS(8405), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4596] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5136), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8386), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5143), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8407), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4597] = { - [anon_sym_LBRACE] = ACTIONS(8388), + [anon_sym_LBRACE] = ACTIONS(8409), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4598] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8384), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8405), }, [4599] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8405), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8384), }, [4600] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_2] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_RBRACE_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), }, [4601] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8390), + [anon_sym_RBRACE] = ACTIONS(8411), [sym_pragma] = ACTIONS(3), }, [4602] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8384), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2403), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2404), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2405), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [4603] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(2421), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(2422), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(2423), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_RPAREN] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), }, [4604] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_4] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_PIPE_RPAREN] = ACTIONS(7506), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [4605] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8413), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_4] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), }, [4606] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym_name] = ACTIONS(7420), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8413), }, [4607] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(8413), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4608] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8392), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8413), [sym_pragma] = ACTIONS(3), }, [4609] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5140), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2437), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2438), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2439), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [sym_pragma] = ACTIONS(3), }, [4610] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym_import_directive] = STATE(3678), + [aux_sym_module_macro_repeat1] = STATE(3678), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(6713), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [4611] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5141), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_import_directive] = STATE(5147), + [aux_sym_module_macro_repeat1] = STATE(5147), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(6713), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [4612] = { - [anon_sym_COLON] = ACTIONS(8394), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8415), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8396), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8415), }, [4613] = { - [anon_sym_COLON] = ACTIONS(8398), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8396), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_PIPE_RPAREN] = ACTIONS(6552), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4614] = { - [anon_sym_COLON] = ACTIONS(8400), + [anon_sym_COLON] = ACTIONS(7639), + [anon_sym_4] = ACTIONS(7639), + [anon_sym_SEMI] = ACTIONS(7639), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(7639), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7639), + [anon_sym_PIPE_RPAREN] = ACTIONS(7639), + [anon_sym_2] = ACTIONS(7639), + [anon_sym_where] = ACTIONS(7639), + [anon_sym_RBRACE] = ACTIONS(8419), }, [4615] = { - [anon_sym_COLON] = ACTIONS(8402), - [anon_sym_2] = ACTIONS(8396), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8421), }, [4616] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_2] = ACTIONS(8421), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [4617] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5147), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5149), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4618] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5148), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_2] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [4619] = { - [anon_sym_COLON] = ACTIONS(7479), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7471), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5150), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4620] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5151), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4621] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8404), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5152), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4622] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(8421), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4623] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - }, - [4624] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8406), + [anon_sym_RBRACE] = ACTIONS(8421), [sym_pragma] = ACTIONS(3), }, + [4624] = { + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + }, [4625] = { - [sym__field_assignments1] = STATE(5151), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8406), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8423), [sym_pragma] = ACTIONS(3), }, [4626] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_2] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4627] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8425), }, [4628] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(8425), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4629] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(8425), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8408), [sym_pragma] = ACTIONS(3), }, [4630] = { - [sym__field_assignments1] = STATE(5153), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8408), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5156), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8427), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4631] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(8429), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4632] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8410), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8425), }, [4633] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8425), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8410), }, [4634] = { - [anon_sym_RPAREN] = ACTIONS(8410), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_2] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4635] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8410), + [anon_sym_RBRACE] = ACTIONS(8431), [sym_pragma] = ACTIONS(3), }, [4636] = { - [sym_literal] = STATE(1393), - [sym__typed_bindings1] = STATE(1403), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(472), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1405), - [aux_sym__open_args1_repeat1] = STATE(1406), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1407), - [sym__atom_curly] = STATE(1405), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1393), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1408), - [anon_sym__] = ACTIONS(2296), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(721), - [sym__const_lambda] = ACTIONS(723), - [aux_sym_integer_token1] = ACTIONS(2300), - [anon_sym_Set] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_quoteGoal] = ACTIONS(727), - [anon_sym_unquote] = ACTIONS(2296), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2296), - [anon_sym_quoteTerm] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2296), - [sym__const_ellipsis] = ACTIONS(2296), - [anon_sym_record] = ACTIONS(2304), - [anon_sym_QMARK] = ACTIONS(2296), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2306), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LPAREN_PIPE] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_tactic] = ACTIONS(743), - [aux_sym_string_token1] = ACTIONS(2314), - [sym__const_forall] = ACTIONS(747), - [anon_sym_Prop] = ACTIONS(2296), - [anon_sym_3] = ACTIONS(2316), + [sym_let] = STATE(80), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2491), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(2492), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2493), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), + [sym_pragma] = ACTIONS(3), }, [4637] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8412), + [anon_sym_COLON] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4638] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8412), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(2503), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(2504), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(2505), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [4639] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5156), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_PIPE_RPAREN] = ACTIONS(6552), }, [4640] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), }, [4641] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5157), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), + [sym_pragma] = ACTIONS(3), }, [4642] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5158), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8433), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8435), }, [4643] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5159), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(8437), + [anon_sym_2] = ACTIONS(8435), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4644] = { - [anon_sym_RPAREN] = ACTIONS(8412), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5162), + [sym_do] = STATE(5162), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5162), + [sym_lambda] = STATE(5162), + [sym__application] = STATE(5162), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4645] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8412), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5163), + [sym_do] = STATE(5163), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(5163), + [sym_lambda] = STATE(5163), + [sym__application] = STATE(5163), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4646] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym__expr2] = STATE(5164), + [sym_do] = STATE(5164), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(5164), + [sym_lambda] = STATE(5164), + [sym__application] = STATE(5164), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4647] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym__expr2] = STATE(5165), + [sym_do] = STATE(5165), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(5165), + [sym_lambda] = STATE(5165), + [sym__application] = STATE(5165), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4648] = { + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8414), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [4649] = { - [anon_sym_using] = ACTIONS(8157), - [anon_sym_SEMI] = ACTIONS(8157), + [anon_sym_COLON] = ACTIONS(8439), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8157), - [anon_sym_hiding] = ACTIONS(8157), - [anon_sym_RBRACE] = ACTIONS(8157), - [anon_sym_public] = ACTIONS(8157), - [anon_sym_renaming] = ACTIONS(8157), }, [4650] = { - [aux_sym_import_directive_repeat1] = STATE(4982), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(8416), + [anon_sym_RPAREN] = ACTIONS(8441), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4651] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_SEMI] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym_renaming] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_using] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_hiding] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_public] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(8443), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8435), + [sym_pragma] = ACTIONS(3), }, [4652] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8418), + [sym__expr2] = STATE(5169), + [sym_do] = STATE(5169), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5169), + [sym_lambda] = STATE(5169), + [sym__application] = STATE(5169), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), }, [4653] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), + [sym_pragma] = ACTIONS(3), }, [4654] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8420), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4655] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym_name] = ACTIONS(7420), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8445), }, [4656] = { + [anon_sym_RPAREN] = ACTIONS(8445), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8422), [sym_pragma] = ACTIONS(3), }, [4657] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(8445), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8422), }, [4658] = { - [anon_sym_RPAREN] = ACTIONS(8422), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8445), }, [4659] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5172), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8447), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8422), [sym_pragma] = ACTIONS(3), }, [4660] = { + [anon_sym_LBRACE] = ACTIONS(8449), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8424), }, [4661] = { - [aux_sym_record_constructor_instance_repeat1] = STATE(5167), - [sym__dedent] = ACTIONS(8426), [sym_comment] = ACTIONS(3), - [anon_sym_constructor] = ACTIONS(8428), + [anon_sym_2] = ACTIONS(8445), [sym_pragma] = ACTIONS(3), }, [4662] = { - [sym__newline] = ACTIONS(8430), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8430), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4663] = { [sym_comment] = ACTIONS(3), - [sym__indent] = ACTIONS(8432), + [anon_sym_RBRACE] = ACTIONS(8451), [sym_pragma] = ACTIONS(3), }, [4664] = { - [sym__newline] = ACTIONS(8434), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8434), + [sym__atom_curly] = STATE(3755), + [sym__atom_no_curly] = STATE(3755), + [sym_literal] = STATE(3745), + [sym_record_assignments] = STATE(3745), + [sym_atom] = STATE(4664), + [aux_sym__open_args1_repeat1] = STATE(4664), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(8453), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8456), + [anon_sym_quoteTerm] = ACTIONS(8453), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(8459), + [anon_sym_QMARK] = ACTIONS(8453), + [anon_sym_LPAREN] = ACTIONS(8462), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(8465), + [sym_qualified_name] = ACTIONS(8453), + [anon_sym_quote] = ACTIONS(8453), + [anon_sym_3] = ACTIONS(8468), + [anon_sym_Prop] = ACTIONS(8453), + [sym__const_ellipsis] = ACTIONS(8453), + [anon_sym_record] = ACTIONS(8471), + [anon_sym_] = ACTIONS(8474), + [anon_sym_DOT] = ACTIONS(8477), + [anon_sym_unquote] = ACTIONS(8453), + [anon_sym_LBRACE] = ACTIONS(8480), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(8483), + [anon_sym_Set] = ACTIONS(8453), }, [4665] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_2] = ACTIONS(7420), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [sym_literal] = STATE(3779), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3789), + [sym__atom_no_curly] = STATE(3789), + [aux_sym__open_args1_repeat1] = STATE(3790), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3791), + [sym_record_assignments] = STATE(3779), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6028), + [anon_sym_quoteTerm] = ACTIONS(6028), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(6030), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(6028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6034), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6036), + [sym_qualified_name] = ACTIONS(6028), + [anon_sym_quote] = ACTIONS(6028), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(6028), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(6038), + [sym__const_ellipsis] = ACTIONS(6028), + [anon_sym_3] = ACTIONS(6040), + [anon_sym_] = ACTIONS(6042), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6028), + [anon_sym_DOT] = ACTIONS(6044), + [anon_sym_LBRACE] = ACTIONS(6046), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(6048), + [anon_sym_Set] = ACTIONS(6028), }, [4666] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8486), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8436), [sym_pragma] = ACTIONS(3), }, [4667] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8436), + [sym_primitive] = STATE(5176), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(5176), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(5176), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(5176), + [sym_abstract] = STATE(5176), + [sym_private] = STATE(5176), + [sym_function_clause] = STATE(5176), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(5176), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(5176), + [sym_data] = STATE(5176), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(5176), + [sym_macro] = STATE(5176), + [sym_test] = STATE(5176), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(5176), + [sym_record_signature_only] = STATE(5176), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(5176), + [sym_syntax] = STATE(5176), + [sym_record] = STATE(5176), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(5176), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(5176), + [sym_mutual] = STATE(5176), + [sym_postulate] = STATE(5176), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4668] = { - [anon_sym_RPAREN] = ACTIONS(8436), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), }, [4669] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8486), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8436), [sym_pragma] = ACTIONS(3), }, [4670] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), }, [4671] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8488), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_2] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), }, [4672] = { - [anon_sym_RBRACE_RBRACE] = ACTIONS(8438), - [anon_sym_2] = ACTIONS(8438), + [sym__field_assignments1] = STATE(5178), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8488), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8440), - [anon_sym_EQ] = ACTIONS(8438), [sym_pragma] = ACTIONS(3), }, [4673] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(8442), - [anon_sym_] = ACTIONS(8444), - [anon_sym_EQ] = ACTIONS(8444), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8442), - [anon_sym_LBRACE] = ACTIONS(8444), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8444), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), }, [4674] = { - [anon_sym_RPAREN] = ACTIONS(8446), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), }, [4675] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8490), }, [4676] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8448), + [anon_sym_RPAREN] = ACTIONS(8490), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4677] = { - [sym_primitive] = STATE(5172), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(5172), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(5172), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(5172), - [sym_abstract] = STATE(5172), - [sym_private] = STATE(5172), - [sym_function_clause] = STATE(5172), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(5172), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(5172), - [sym_data] = STATE(5172), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(5172), - [sym_macro] = STATE(5172), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(5172), - [sym_record_signature_only] = STATE(5172), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(5172), - [sym_syntax] = STATE(5172), - [sym_record] = STATE(5172), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(5172), - [sym_generalize] = STATE(5172), - [sym_mutual] = STATE(5172), - [sym_postulate] = STATE(5172), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_PIPE_RPAREN] = ACTIONS(8490), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4678] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5181), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8492), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4679] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8448), + [anon_sym_LBRACE] = ACTIONS(8494), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4680] = { - [anon_sym_COLON] = ACTIONS(8450), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8452), + [anon_sym_4] = ACTIONS(8490), }, [4681] = { - [anon_sym_COLON] = ACTIONS(8454), - [anon_sym_2] = ACTIONS(8452), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8490), [sym_pragma] = ACTIONS(3), }, [4682] = { - [sym_do] = STATE(5176), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5176), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(5176), - [sym_lambda] = STATE(5176), - [sym__application] = STATE(5176), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), }, [4683] = { - [sym_do] = STATE(5177), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5177), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(5177), - [sym_lambda] = STATE(5177), - [sym__application] = STATE(5177), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8496), + [sym_pragma] = ACTIONS(3), }, [4684] = { - [sym_do] = STATE(5178), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5178), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(5178), - [sym_lambda] = STATE(5178), - [sym__application] = STATE(5178), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [4685] = { - [sym_do] = STATE(5179), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5179), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(5179), - [sym_lambda] = STATE(5179), - [sym__application] = STATE(5179), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), }, [4686] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(1332), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(2716), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), }, [4687] = { - [anon_sym_RPAREN] = ACTIONS(8456), + [anon_sym_COLON] = ACTIONS(8498), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8500), }, [4688] = { - [anon_sym_COLON] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8502), + [anon_sym_2] = ACTIONS(8500), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4689] = { - [anon_sym_COLON] = ACTIONS(8460), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8452), - [sym_pragma] = ACTIONS(3), + [sym__expr2] = STATE(5187), + [sym_do] = STATE(5187), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5187), + [sym_lambda] = STATE(5187), + [sym__application] = STATE(5187), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4690] = { - [sym_do] = STATE(5183), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5183), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(5183), - [sym_lambda] = STATE(5183), - [sym__application] = STATE(5183), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__expr2] = STATE(5188), + [sym_do] = STATE(5188), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(771), + [sym_let] = STATE(5188), + [sym_lambda] = STATE(5188), + [sym__application] = STATE(5188), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4691] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym__expr2] = STATE(5189), + [sym_do] = STATE(5189), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(799), + [sym_let] = STATE(5189), + [sym_lambda] = STATE(5189), + [sym__application] = STATE(5189), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), }, [4692] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym__expr2] = STATE(5190), + [sym_do] = STATE(5190), + [sym_literal] = STATE(773), + [sym_atom] = STATE(783), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(784), + [sym__atom_no_curly] = STATE(784), + [sym_record_assignments] = STATE(773), + [aux_sym__open_args1_repeat1] = STATE(785), + [sym_let] = STATE(5190), + [sym_lambda] = STATE(5190), + [sym__application] = STATE(5190), + [anon_sym__] = ACTIONS(1211), + [anon_sym_quoteTerm] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(1213), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1221), + [sym_qualified_name] = ACTIONS(1211), + [anon_sym_quote] = ACTIONS(1211), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(1223), + [sym__const_ellipsis] = ACTIONS(1211), + [anon_sym_3] = ACTIONS(1225), + [anon_sym_] = ACTIONS(1227), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1231), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(1233), + [anon_sym_Set] = ACTIONS(1211), }, [4693] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(2860), + [anon_sym__] = ACTIONS(2862), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2860), + [anon_sym_] = ACTIONS(2862), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_where] = ACTIONS(2862), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(2862), + [sym_name] = ACTIONS(2862), }, [4694] = { + [anon_sym_COLON] = ACTIONS(8504), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8462), [sym_pragma] = ACTIONS(3), }, [4695] = { - [sym__field_assignments1] = STATE(5185), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8462), + [anon_sym_RPAREN] = ACTIONS(8506), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4696] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(8508), + [anon_sym_SEMI] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8500), + [sym_pragma] = ACTIONS(3), }, [4697] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [sym_comment] = ACTIONS(3), + [sym__expr2] = STATE(5194), + [sym_do] = STATE(5194), + [sym_literal] = STATE(758), + [sym_atom] = STATE(769), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(770), + [sym__atom_no_curly] = STATE(770), + [sym_record_assignments] = STATE(758), + [aux_sym__open_args1_repeat1] = STATE(930), + [sym_let] = STATE(5194), + [sym_lambda] = STATE(5194), + [sym__application] = STATE(5194), + [anon_sym__] = ACTIONS(1187), + [anon_sym_quoteTerm] = ACTIONS(1187), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(1189), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_QMARK] = ACTIONS(1187), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1195), + [sym_qualified_name] = ACTIONS(1187), + [anon_sym_quote] = ACTIONS(1187), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(1197), + [sym__const_ellipsis] = ACTIONS(1187), + [anon_sym_3] = ACTIONS(1199), + [anon_sym_] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_unquote] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1205), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(1207), + [anon_sym_Set] = ACTIONS(1187), [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), }, [4698] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(1873), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8464), }, [4699] = { - [anon_sym_RPAREN] = ACTIONS(8464), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [anon_sym_quoteTerm] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_in] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_Set] = ACTIONS(993), }, [4700] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5188), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8466), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8510), }, [4701] = { - [anon_sym_LBRACE] = ACTIONS(8468), + [anon_sym_RPAREN] = ACTIONS(8510), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4702] = { + [anon_sym_PIPE_RPAREN] = ACTIONS(8510), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8464), [sym_pragma] = ACTIONS(3), }, [4703] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8464), + [anon_sym_4] = ACTIONS(8510), }, [4704] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5197), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8512), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4705] = { + [anon_sym_LBRACE] = ACTIONS(8514), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8470), [sym_pragma] = ACTIONS(3), }, [4706] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8464), + [anon_sym_2] = ACTIONS(8510), [sym_pragma] = ACTIONS(3), }, [4707] = { - [sym__atom_no_curly] = STATE(3843), - [sym_literal] = STATE(3833), - [sym_record_assignments] = STATE(3833), - [sym__atom_curly] = STATE(3843), - [sym_atom] = STATE(4707), - [aux_sym__open_args1_repeat1] = STATE(4707), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(8472), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8475), - [anon_sym_unquote] = ACTIONS(8472), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(8478), - [anon_sym_Set] = ACTIONS(8472), - [anon_sym_LPAREN] = ACTIONS(8481), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(8472), - [anon_sym_quoteTerm] = ACTIONS(8472), - [anon_sym_quote] = ACTIONS(8472), - [sym__const_ellipsis] = ACTIONS(8472), - [anon_sym_record] = ACTIONS(8484), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(8472), - [anon_sym_] = ACTIONS(8487), - [anon_sym_DOT] = ACTIONS(8490), - [anon_sym_LPAREN_PIPE] = ACTIONS(8493), - [anon_sym_LBRACE] = ACTIONS(8496), - [anon_sym_3] = ACTIONS(8499), - [aux_sym_string_token1] = ACTIONS(8502), - [anon_sym_Prop] = ACTIONS(8472), + [sym__newline] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [anon_sym_quoteTerm] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_Set] = ACTIONS(1425), }, [4708] = { - [sym_literal] = STATE(3849), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(3859), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(3860), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3861), - [sym__atom_curly] = STATE(3859), - [sym_record_assignments] = STATE(3849), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(6225), - [anon_sym_unquote] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(6227), - [anon_sym_Set] = ACTIONS(6225), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6231), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6225), - [anon_sym_quoteTerm] = ACTIONS(6225), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6225), - [sym__const_ellipsis] = ACTIONS(6225), - [anon_sym_record] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6225), - [anon_sym_] = ACTIONS(6235), - [anon_sym_DOT] = ACTIONS(6237), - [anon_sym_LPAREN_PIPE] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6241), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(6243), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(6225), - [anon_sym_3] = ACTIONS(6245), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8516), + [sym_pragma] = ACTIONS(3), }, [4709] = { - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), + [sym__atom_curly] = STATE(3819), + [sym__atom_no_curly] = STATE(3819), + [sym_literal] = STATE(3809), + [sym_record_assignments] = STATE(3809), + [sym_atom] = STATE(4709), + [aux_sym__open_args1_repeat1] = STATE(4709), + [sym__newline] = ACTIONS(2214), + [anon_sym__] = ACTIONS(8518), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8521), + [anon_sym_quoteTerm] = ACTIONS(8518), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(8524), + [anon_sym_QMARK] = ACTIONS(8518), + [anon_sym_LPAREN] = ACTIONS(8527), + [anon_sym_PIPE] = ACTIONS(1527), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(1527), + [anon_sym_LPAREN_PIPE] = ACTIONS(8530), + [sym_qualified_name] = ACTIONS(8518), + [anon_sym_quote] = ACTIONS(8518), + [anon_sym_3] = ACTIONS(8533), + [anon_sym_Prop] = ACTIONS(8518), + [sym__const_ellipsis] = ACTIONS(8518), + [anon_sym_record] = ACTIONS(8536), + [anon_sym_] = ACTIONS(8539), + [anon_sym_DOT] = ACTIONS(8542), + [anon_sym_unquote] = ACTIONS(8518), + [anon_sym_LBRACE] = ACTIONS(8545), + [anon_sym_in] = ACTIONS(1527), + [aux_sym_string_token1] = ACTIONS(8548), + [anon_sym_Set] = ACTIONS(8518), }, [4710] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8505), + [sym_literal] = STATE(3843), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3853), + [sym__atom_no_curly] = STATE(3853), + [aux_sym__open_args1_repeat1] = STATE(3854), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_atom] = STATE(3855), + [sym_record_assignments] = STATE(3843), + [sym__with_expr] = STATE(1332), + [sym__application] = STATE(43), + [sym_let] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6124), + [anon_sym_quoteTerm] = ACTIONS(6124), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(6126), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_QMARK] = ACTIONS(6124), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6128), + [anon_sym_LPAREN] = ACTIONS(6130), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6132), + [sym_qualified_name] = ACTIONS(6124), + [anon_sym_quote] = ACTIONS(6124), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(6124), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(6134), + [sym__const_ellipsis] = ACTIONS(6124), + [anon_sym_3] = ACTIONS(6136), + [anon_sym_] = ACTIONS(6138), + [sym_pragma] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(6124), + [anon_sym_DOT] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(6142), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(6144), + [anon_sym_Set] = ACTIONS(6124), }, [4711] = { - [anon_sym_RPAREN] = ACTIONS(8505), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8551), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4712] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5193), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8507), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_primitive] = STATE(5201), + [sym_literal] = STATE(97), + [sym__declaration] = STATE(5201), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(119), + [sym_module_macro] = STATE(5201), + [sym__atom_no_curly] = STATE(119), + [aux_sym__open_args1_repeat1] = STATE(120), + [aux_sym_test_repeat1] = STATE(121), + [sym_field] = STATE(5201), + [sym_abstract] = STATE(5201), + [sym_private] = STATE(5201), + [sym_function_clause] = STATE(5201), + [sym_lhs_decl] = STATE(122), + [sym__with_expr] = STATE(123), + [sym__application] = STATE(43), + [sym_open] = STATE(5201), + [sym_let] = STATE(43), + [aux_sym_source_file_repeat1] = STATE(1139), + [sym_infix] = STATE(5201), + [sym_data] = STATE(5201), + [sym_lambda] = STATE(43), + [sym_instance] = STATE(5201), + [sym_macro] = STATE(5201), + [sym_test] = STATE(5201), + [sym_lhs_defn] = STATE(125), + [sym_data_signature_only] = STATE(5201), + [sym_record_signature_only] = STATE(5201), + [sym__expr2] = STATE(43), + [sym_atom] = STATE(126), + [sym_pattern] = STATE(5201), + [sym_syntax] = STATE(5201), + [sym_record] = STATE(5201), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(47), + [sym_record_assignments] = STATE(97), + [sym_module] = STATE(5201), + [aux_sym__with_expr_repeat1] = STATE(127), + [sym_generalize] = STATE(5201), + [sym_mutual] = STATE(5201), + [sym_postulate] = STATE(5201), + [anon_sym_pattern] = ACTIONS(145), + [sym_pragma] = ACTIONS(3), + [anon_sym_primitive] = ACTIONS(7), + [anon_sym_abstract] = ACTIONS(9), + [anon_sym_LPAREN_PIPE] = ACTIONS(147), + [sym_qualified_name] = ACTIONS(149), + [anon_sym_3] = ACTIONS(151), + [anon_sym_quote] = ACTIONS(149), + [anon_sym_tactic] = ACTIONS(153), + [anon_sym_let] = ACTIONS(155), + [anon_sym_record] = ACTIONS(157), + [sym__const_ellipsis] = ACTIONS(149), + [anon_sym_Prop] = ACTIONS(149), + [anon_sym_] = ACTIONS(159), + [anon_sym_syntax] = ACTIONS(163), + [anon_sym_instance] = ACTIONS(27), + [anon_sym_infix] = ACTIONS(165), + [sym_test2] = ACTIONS(167), + [anon_sym_macro] = ACTIONS(33), + [anon_sym_field] = ACTIONS(35), + [anon_sym_private] = ACTIONS(37), + [anon_sym_generalize] = ACTIONS(39), + [anon_sym__] = ACTIONS(149), + [anon_sym_quoteTerm] = ACTIONS(149), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(169), + [aux_sym_integer_token1] = ACTIONS(171), + [anon_sym_open] = ACTIONS(173), + [sym__const_lambda] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_LBRACE_LBRACE] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_codata] = ACTIONS(55), + [anon_sym_infixr] = ACTIONS(165), + [sym__dedent] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [anon_sym_infixl] = ACTIONS(165), + [anon_sym_postulate] = ACTIONS(57), + [anon_sym_mutual] = ACTIONS(61), + [anon_sym_unquote] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(181), + [anon_sym_LBRACE] = ACTIONS(183), + [sym__const_forall] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(187), + [anon_sym_import] = ACTIONS(189), + [anon_sym_data] = ACTIONS(191), + [anon_sym_Set] = ACTIONS(149), + [anon_sym_module] = ACTIONS(193), }, [4713] = { - [anon_sym_LBRACE] = ACTIONS(8509), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(1416), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), }, [4714] = { + [sym__newline] = ACTIONS(407), + [anon_sym_in] = ACTIONS(8551), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8505), [sym_pragma] = ACTIONS(3), }, [4715] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8505), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), }, [4716] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8553), + [sym_pragma] = ACTIONS(3), }, [4717] = { + [sym__field_assignments1] = STATE(5203), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8553), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8511), [sym_pragma] = ACTIONS(3), }, [4718] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8505), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), }, [4719] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), }, [4720] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8513), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8555), }, [4721] = { - [sym_primitive] = STATE(5197), - [sym_literal] = STATE(130), - [sym__declaration] = STATE(5197), - [sym__with_expr] = STATE(151), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym_module_macro] = STATE(5197), - [sym__atom_no_curly] = STATE(152), - [aux_sym__open_args1_repeat1] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(1323), - [sym_field] = STATE(5197), - [sym_abstract] = STATE(5197), - [sym_private] = STATE(5197), - [sym_function_clause] = STATE(5197), - [sym_lhs_decl] = STATE(155), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_open] = STATE(5197), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [sym_infix] = STATE(5197), - [sym_data] = STATE(5197), - [aux_sym__with_expr_repeat1] = STATE(156), - [sym_instance] = STATE(5197), - [sym_macro] = STATE(5197), - [sym_lhs_defn] = STATE(157), - [sym_data_signature_only] = STATE(5197), - [sym_record_signature_only] = STATE(5197), - [sym_atom] = STATE(158), - [sym_do] = STATE(43), - [sym_pattern] = STATE(5197), - [sym_syntax] = STATE(5197), - [sym_record] = STATE(5197), - [sym__let_only] = STATE(37), - [sym__atom_curly] = STATE(152), - [sym_record_assignments] = STATE(130), - [sym_module] = STATE(5197), - [sym_generalize] = STATE(5197), - [sym_mutual] = STATE(5197), - [sym_postulate] = STATE(5197), - [anon_sym_module] = ACTIONS(187), - [anon_sym_pattern] = ACTIONS(189), - [sym_pragma] = ACTIONS(3), - [anon_sym_primitive] = ACTIONS(9), - [anon_sym_quoteGoal] = ACTIONS(191), - [anon_sym_abstract] = ACTIONS(13), - [sym_qualified_name] = ACTIONS(193), - [anon_sym_quoteTerm] = ACTIONS(193), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(193), - [sym__const_ellipsis] = ACTIONS(193), - [anon_sym_record] = ACTIONS(195), - [anon_sym_QMARK] = ACTIONS(193), - [anon_sym_] = ACTIONS(197), - [anon_sym_syntax] = ACTIONS(201), - [anon_sym_instance] = ACTIONS(25), - [anon_sym_infix] = ACTIONS(203), - [anon_sym_macro] = ACTIONS(29), - [anon_sym_field] = ACTIONS(31), - [anon_sym_private] = ACTIONS(33), - [anon_sym_generalize] = ACTIONS(35), - [anon_sym__] = ACTIONS(193), - [anon_sym_unquote] = ACTIONS(193), - [anon_sym_let] = ACTIONS(205), - [sym__const_lambda] = ACTIONS(207), - [aux_sym_integer_token1] = ACTIONS(209), - [anon_sym_open] = ACTIONS(211), - [anon_sym_Set] = ACTIONS(193), - [anon_sym_LBRACE_LBRACE] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(215), - [sym__dedent] = ACTIONS(2436), - [anon_sym_codata] = ACTIONS(49), - [anon_sym_infixr] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [anon_sym_infixl] = ACTIONS(203), - [anon_sym_postulate] = ACTIONS(51), - [anon_sym_mutual] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(217), - [anon_sym_LPAREN_PIPE] = ACTIONS(219), - [anon_sym_3] = ACTIONS(221), - [anon_sym_LBRACE] = ACTIONS(223), - [sym__const_forall] = ACTIONS(225), - [anon_sym_tactic] = ACTIONS(227), - [aux_sym_string_token1] = ACTIONS(229), - [anon_sym_import] = ACTIONS(231), - [anon_sym_data] = ACTIONS(233), - [anon_sym_Prop] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(8555), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4722] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(1581), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [anon_sym_PIPE_RPAREN] = ACTIONS(8555), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4723] = { - [sym__newline] = ACTIONS(403), - [anon_sym_in] = ACTIONS(8513), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5206), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8557), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4724] = { - [anon_sym_COLON] = ACTIONS(8515), + [anon_sym_LBRACE] = ACTIONS(8559), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8517), }, [4725] = { - [anon_sym_COLON] = ACTIONS(8519), - [anon_sym_2] = ACTIONS(8517), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8555), }, [4726] = { - [sym_do] = STATE(5201), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5201), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(5201), - [sym_lambda] = STATE(5201), - [sym__application] = STATE(5201), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8555), + [sym_pragma] = ACTIONS(3), }, [4727] = { - [sym_do] = STATE(5202), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5202), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(673), - [sym__expr2] = STATE(5202), - [sym_lambda] = STATE(5202), - [sym__application] = STATE(5202), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1043), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym__newline] = ACTIONS(1427), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), }, [4728] = { - [sym_do] = STATE(5203), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5203), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(700), - [sym__expr2] = STATE(5203), - [sym_lambda] = STATE(5203), - [sym__application] = STATE(5203), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8561), + [sym_pragma] = ACTIONS(3), }, [4729] = { - [sym_do] = STATE(5204), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(685), - [sym__atom_curly] = STATE(686), - [sym_literal] = STATE(675), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5204), - [sym__atom_no_curly] = STATE(686), - [sym_record_assignments] = STATE(675), - [aux_sym__open_args1_repeat1] = STATE(687), - [sym__expr2] = STATE(5204), - [sym_lambda] = STATE(5204), - [sym__application] = STATE(5204), - [anon_sym__] = ACTIONS(1055), - [anon_sym_unquote] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(1057), - [anon_sym_Set] = ACTIONS(1055), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1059), - [anon_sym_LPAREN] = ACTIONS(1061), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1055), - [anon_sym_quoteTerm] = ACTIONS(1055), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1055), - [sym__const_ellipsis] = ACTIONS(1055), - [anon_sym_record] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1055), - [anon_sym_] = ACTIONS(1067), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_LPAREN_PIPE] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(1075), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(1055), - [anon_sym_3] = ACTIONS(1077), + [aux_sym_syntax_repeat2] = STATE(4729), + [sym__newline] = ACTIONS(8075), + [anon_sym_in] = ACTIONS(3692), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8563), }, [4730] = { - [sym__newline] = ACTIONS(2716), - [anon_sym__] = ACTIONS(2718), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2716), - [anon_sym_] = ACTIONS(2718), - [anon_sym_in] = ACTIONS(2718), - [anon_sym_DOT] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2718), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(8112), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2718), - [anon_sym_DOT_DOT] = ACTIONS(2716), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(2718), - [sym_name] = ACTIONS(2718), + [anon_sym_in] = ACTIONS(8112), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [4731] = { - [anon_sym_RPAREN] = ACTIONS(8521), + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(8114), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(8114), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [4732] = { - [anon_sym_COLON] = ACTIONS(8523), + [sym_import_directive] = STATE(5209), + [aux_sym_module_macro_repeat1] = STATE(5209), + [sym__newline] = ACTIONS(8114), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(8114), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), }, [4733] = { - [anon_sym_COLON] = ACTIONS(8525), - [anon_sym_SEMI] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8517), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_renaming] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_using] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_hiding] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_public] = ACTIONS(4490), }, [4734] = { - [sym_do] = STATE(5208), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(671), - [sym__atom_curly] = STATE(672), - [sym_literal] = STATE(660), - [sym__let_in] = STATE(69), - [sym_let] = STATE(5208), - [sym__atom_no_curly] = STATE(672), - [sym_record_assignments] = STATE(660), - [aux_sym__open_args1_repeat1] = STATE(914), - [sym__expr2] = STATE(5208), - [sym_lambda] = STATE(5208), - [sym__application] = STATE(5208), - [anon_sym__] = ACTIONS(1031), - [anon_sym_unquote] = ACTIONS(1031), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(1033), - [anon_sym_Set] = ACTIONS(1031), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1037), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1031), - [anon_sym_quoteTerm] = ACTIONS(1031), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1031), - [sym__const_ellipsis] = ACTIONS(1031), - [anon_sym_record] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN_PIPE] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(1049), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(1031), - [anon_sym_3] = ACTIONS(1051), - }, - [4735] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(1795), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8566), + [sym_pragma] = ACTIONS(3), + }, + [4735] = { + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_rewrite] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [4736] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8568), + [sym_pragma] = ACTIONS(3), }, [4737] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8568), }, [4738] = { + [anon_sym_RPAREN] = ACTIONS(8568), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8527), [sym_pragma] = ACTIONS(3), }, [4739] = { - [sym__field_assignments1] = STATE(5210), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8527), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8568), [sym_pragma] = ACTIONS(3), }, [4740] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_rewrite] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4741] = { - [sym__newline] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8570), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_Prop] = ACTIONS(809), }, [4742] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8529), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [4743] = { - [anon_sym_RPAREN] = ACTIONS(8529), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5213), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4744] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5213), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8531), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4745] = { - [anon_sym_LBRACE] = ACTIONS(8533), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5214), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4746] = { + [anon_sym_COLON] = ACTIONS(8572), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8529), + [anon_sym_RBRACE] = ACTIONS(8574), [sym_pragma] = ACTIONS(3), }, [4747] = { + [anon_sym_COLON] = ACTIONS(8576), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8529), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8574), }, [4748] = { - [sym__newline] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_Prop] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(8578), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4749] = { + [anon_sym_COLON] = ACTIONS(8580), + [anon_sym_2] = ACTIONS(8574), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8535), [sym_pragma] = ACTIONS(3), }, [4750] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8529), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5220), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4751] = { - [sym__atom_no_curly] = STATE(3904), - [sym_literal] = STATE(3894), - [sym_record_assignments] = STATE(3894), - [sym__atom_curly] = STATE(3904), - [sym_atom] = STATE(4751), - [aux_sym__open_args1_repeat1] = STATE(4751), - [sym__newline] = ACTIONS(3096), - [anon_sym__] = ACTIONS(8537), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8540), - [anon_sym_unquote] = ACTIONS(8537), - [anon_sym_in] = ACTIONS(1683), - [aux_sym_integer_token1] = ACTIONS(8543), - [anon_sym_Set] = ACTIONS(8537), - [anon_sym_LPAREN] = ACTIONS(8546), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(1683), - [sym_qualified_name] = ACTIONS(8537), - [anon_sym_quoteTerm] = ACTIONS(8537), - [anon_sym_quote] = ACTIONS(8537), - [sym__const_ellipsis] = ACTIONS(8537), - [anon_sym_record] = ACTIONS(8549), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(8537), - [anon_sym_] = ACTIONS(8552), - [anon_sym_DOT] = ACTIONS(8555), - [anon_sym_LPAREN_PIPE] = ACTIONS(8558), - [anon_sym_LBRACE] = ACTIONS(8561), - [anon_sym_3] = ACTIONS(8564), - [aux_sym_string_token1] = ACTIONS(8567), - [anon_sym_Prop] = ACTIONS(8537), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4752] = { - [sym_literal] = STATE(3910), - [sym__with_expr] = STATE(1320), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym_let] = STATE(43), - [sym__atom_no_curly] = STATE(3920), - [sym__let_in] = STATE(37), - [aux_sym__open_args1_repeat1] = STATE(3921), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3922), - [sym__atom_curly] = STATE(3920), - [sym_record_assignments] = STATE(3910), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(44), - [anon_sym__] = ACTIONS(6317), - [anon_sym_unquote] = ACTIONS(6317), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(6319), - [anon_sym_Set] = ACTIONS(6317), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6323), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6317), - [anon_sym_quoteTerm] = ACTIONS(6317), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6317), - [sym__const_ellipsis] = ACTIONS(6317), - [anon_sym_record] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6317), - [anon_sym_] = ACTIONS(6327), - [anon_sym_DOT] = ACTIONS(6329), - [anon_sym_LPAREN_PIPE] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6333), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(6335), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(6317), - [anon_sym_3] = ACTIONS(6337), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5221), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4753] = { - [sym__newline] = ACTIONS(811), + [anon_sym_COLON] = ACTIONS(7663), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7655), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), }, [4754] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8570), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4755] = { - [anon_sym_RPAREN] = ACTIONS(8570), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4756] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5218), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8572), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8582), [sym_pragma] = ACTIONS(3), }, [4757] = { - [anon_sym_LBRACE] = ACTIONS(8574), + [sym__field_assignments1] = STATE(5223), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8582), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4758] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8570), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4759] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8570), }, [4760] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - }, - [4761] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8584), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8576), [sym_pragma] = ACTIONS(3), }, + [4761] = { + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, [4762] = { [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8570), + [anon_sym_RBRACE] = ACTIONS(8586), [sym_pragma] = ACTIONS(3), }, [4763] = { - [aux_sym_syntax_repeat2] = STATE(4763), - [sym__newline] = ACTIONS(7599), - [anon_sym_in] = ACTIONS(3854), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8578), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4764] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_rewrite] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4765] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8581), + [anon_sym_RBRACE] = ACTIONS(8588), [sym_pragma] = ACTIONS(3), }, [4766] = { + [sym__field_assignments1] = STATE(5227), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8588), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8581), }, [4767] = { - [anon_sym_RPAREN] = ACTIONS(8581), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4768] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8581), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5228), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4769] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(8149), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(8149), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4770] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(8151), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(8151), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5229), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [4771] = { - [sym_import_directive] = STATE(5222), - [aux_sym_module_macro_repeat1] = STATE(5222), - [sym__newline] = ACTIONS(8151), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(8151), + [anon_sym_COLON] = ACTIONS(8590), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8592), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), }, [4772] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_renaming] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_using] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_hiding] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_public] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(8594), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8592), }, [4773] = { + [anon_sym_COLON] = ACTIONS(8596), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8583), [sym_pragma] = ACTIONS(3), }, [4774] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_rewrite] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(8598), + [anon_sym_2] = ACTIONS(8592), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4775] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8585), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5235), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4776] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4777] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5236), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4778] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8587), + [anon_sym_COLON] = ACTIONS(7728), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7720), [sym_pragma] = ACTIONS(3), }, [4779] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5226), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4780] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4781] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5227), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(8600), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4782] = { - [anon_sym_COLON] = ACTIONS(8589), + [sym__field_assignments1] = STATE(5238), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8600), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8591), [sym_pragma] = ACTIONS(3), }, [4783] = { - [anon_sym_COLON] = ACTIONS(8593), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8591), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4784] = { - [anon_sym_COLON] = ACTIONS(8595), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), [sym_pragma] = ACTIONS(3), }, [4785] = { - [anon_sym_COLON] = ACTIONS(8597), - [anon_sym_2] = ACTIONS(8591), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8602), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4786] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4787] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5233), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8604), + [sym_pragma] = ACTIONS(3), }, [4788] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5234), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4789] = { - [anon_sym_COLON] = ACTIONS(7730), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7722), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8606), }, [4790] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8606), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4791] = { + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5243), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8608), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8599), [sym_pragma] = ACTIONS(3), }, [4792] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(8610), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4793] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_PIPE_RPAREN] = ACTIONS(8606), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4794] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8601), + [anon_sym_2] = ACTIONS(8606), [sym_pragma] = ACTIONS(3), }, [4795] = { - [sym__field_assignments1] = STATE(5237), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8601), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8606), }, [4796] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4789), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7775), }, [4797] = { - [sym__newline] = ACTIONS(811), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4790), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(7775), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4798] = { + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4794), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7779), [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8603), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [4799] = { - [anon_sym_RPAREN] = ACTIONS(8603), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_literal] = STATE(3965), + [sym_record_assignments] = STATE(3965), + [sym_atom] = STATE(4788), + [anon_sym__] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7795), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6309), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_LPAREN] = ACTIONS(7797), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_Prop] = ACTIONS(6305), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_record] = ACTIONS(6313), + [anon_sym_] = ACTIONS(7793), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_DOT] = ACTIONS(7787), + [anon_sym_LBRACE] = ACTIONS(7799), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), }, [4800] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5240), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8605), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4802), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4801] = { - [anon_sym_LBRACE] = ACTIONS(8607), - [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4802] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8603), + [anon_sym_RBRACE] = ACTIONS(8612), [sym_pragma] = ACTIONS(3), }, [4803] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4798), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4789), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [anon_sym_RBRACE_RBRACE] = ACTIONS(7775), }, [4804] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4799), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4790), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), [anon_sym_RPAREN] = ACTIONS(7775), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4805] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4802), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4794), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), [anon_sym_2] = ACTIONS(7779), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [4806] = { - [sym__atom_no_curly] = STATE(4004), - [sym_literal] = STATE(3993), - [sym_record_assignments] = STATE(3993), - [sym__atom_curly] = STATE(4004), - [sym_atom] = STATE(4797), - [anon_sym__] = ACTIONS(6466), - [anon_sym_unquote] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7797), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(7799), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [anon_sym_] = ACTIONS(7795), - [anon_sym_DOT] = ACTIONS(7787), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(7801), - [anon_sym_3] = ACTIONS(6486), - [aux_sym_string_token1] = ACTIONS(6484), - [anon_sym_Prop] = ACTIONS(6466), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4802), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7791), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4807] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4810), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(43), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), + [sym_pragma] = ACTIONS(3), }, [4808] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5246), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8603), }, [4809] = { - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4810] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8609), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5247), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4811] = { + [anon_sym_COLON] = ACTIONS(8614), [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8603), + [anon_sym_RBRACE] = ACTIONS(8616), [sym_pragma] = ACTIONS(3), }, [4812] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [anon_sym_COLON] = ACTIONS(8618), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8616), }, [4813] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4798), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(8620), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4814] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4799), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(8622), + [anon_sym_2] = ACTIONS(8616), + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), }, [4815] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4802), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7779), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5253), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4816] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4810), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4817] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5254), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4818] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8611), + [anon_sym_COLON] = ACTIONS(7813), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7805), [sym_pragma] = ACTIONS(3), }, [4819] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5244), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4820] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4821] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5245), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(8624), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4822] = { - [anon_sym_COLON] = ACTIONS(8613), + [sym__field_assignments1] = STATE(5256), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8624), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8615), [sym_pragma] = ACTIONS(3), }, [4823] = { - [anon_sym_COLON] = ACTIONS(8617), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8615), + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4824] = { - [anon_sym_COLON] = ACTIONS(8619), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), [sym_pragma] = ACTIONS(3), }, [4825] = { - [anon_sym_COLON] = ACTIONS(8621), - [anon_sym_2] = ACTIONS(8615), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8626), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4826] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4827] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5251), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8628), + [sym_pragma] = ACTIONS(3), }, [4828] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5252), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4829] = { - [anon_sym_COLON] = ACTIONS(7815), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7807), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4830] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8630), + [sym_pragma] = ACTIONS(3), }, [4831] = { + [sym__field_assignments1] = STATE(5260), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8630), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8623), [sym_pragma] = ACTIONS(3), }, [4832] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4833] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5261), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4834] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8625), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym__newline] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_with] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4835] = { - [sym__field_assignments1] = STATE(5255), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8625), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5262), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4836] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(8632), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8634), + [sym_pragma] = ACTIONS(3), }, [4837] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(8636), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8634), }, [4838] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(8638), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4839] = { + [anon_sym_COLON] = ACTIONS(8640), + [anon_sym_2] = ACTIONS(8634), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8627), [sym_pragma] = ACTIONS(3), }, [4840] = { - [sym__field_assignments1] = STATE(5257), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8627), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5268), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4841] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_with] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4842] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5269), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4843] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), - }, - [4844] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8629), + [anon_sym_COLON] = ACTIONS(7878), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7870), [sym_pragma] = ACTIONS(3), }, + [4844] = { + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), + }, [4845] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5259), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4846] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8642), + [sym_pragma] = ACTIONS(3), }, [4847] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5260), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__field_assignments1] = STATE(5271), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4848] = { - [anon_sym_COLON] = ACTIONS(8631), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8633), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4849] = { - [anon_sym_COLON] = ACTIONS(8635), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8633), }, [4850] = { - [anon_sym_COLON] = ACTIONS(8637), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8644), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4851] = { - [anon_sym_COLON] = ACTIONS(8639), - [anon_sym_2] = ACTIONS(8633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4852] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8646), + [sym_pragma] = ACTIONS(3), }, [4853] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5266), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(993), + [sym__newline] = ACTIONS(995), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_LPAREN_PIPE] = ACTIONS(995), + [sym_qualified_name] = ACTIONS(993), + [anon_sym_quote] = ACTIONS(993), + [sym__const_right_arrow] = ACTIONS(993), + [anon_sym_tactic] = ACTIONS(993), + [sym__const_ellipsis] = ACTIONS(993), + [anon_sym_record] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_with] = ACTIONS(993), + [anon_sym_] = ACTIONS(993), + [anon_sym_Prop] = ACTIONS(993), + [anon_sym_3] = ACTIONS(993), + [anon_sym__] = ACTIONS(993), + [anon_sym_LBRACE_LBRACE] = ACTIONS(995), + [sym__const_lambda] = ACTIONS(993), + [anon_sym_quoteGoal] = ACTIONS(993), + [aux_sym_integer_token1] = ACTIONS(993), + [anon_sym_do] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_quoteTerm] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_unquote] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [sym__const_forall] = ACTIONS(993), + [aux_sym_string_token1] = ACTIONS(995), + [anon_sym_in] = ACTIONS(993), + [anon_sym_Set] = ACTIONS(993), + [anon_sym_module] = ACTIONS(993), }, [4854] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5267), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8648), }, [4855] = { - [anon_sym_COLON] = ACTIONS(7882), + [anon_sym_RPAREN] = ACTIONS(8648), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7874), [sym_pragma] = ACTIONS(3), }, [4856] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_module_assignment] = STATE(557), + [sym__module_name] = STATE(558), + [sym_field_assignment] = STATE(557), + [sym__record_assignments1] = STATE(5276), + [sym_qualified_name] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(8650), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4857] = { + [anon_sym_LBRACE] = ACTIONS(8652), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8641), [sym_pragma] = ACTIONS(3), }, [4858] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_PIPE_RPAREN] = ACTIONS(8648), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4859] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8648), + [sym_pragma] = ACTIONS(3), }, [4860] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8643), [sym_pragma] = ACTIONS(3), + [anon_sym_4] = ACTIONS(8648), }, [4861] = { - [sym__field_assignments1] = STATE(5270), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1293), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4854), + [aux_sym__open_args1_repeat1] = STATE(343), + [sym__expr2] = STATE(1293), + [sym_do] = STATE(1293), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1293), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(1293), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(507), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(509), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(521), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(533), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7925), }, [4862] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_let] = STATE(1294), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4855), + [aux_sym__open_args1_repeat1] = STATE(369), + [sym__expr2] = STATE(1294), + [sym_do] = STATE(1294), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1294), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(1294), + [anon_sym_RPAREN] = ACTIONS(7925), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(563), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(561), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(565), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(573), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4863] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_let] = STATE(1295), + [sym_literal] = STATE(395), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(410), + [sym__atom_no_curly] = STATE(410), + [sym_expr] = STATE(4859), + [aux_sym__open_args1_repeat1] = STATE(412), + [sym__expr2] = STATE(1295), + [sym_do] = STATE(1295), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(413), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(395), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1295), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(1295), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(613), + [anon_sym_quote] = ACTIONS(613), + [anon_sym_tactic] = ACTIONS(615), + [anon_sym_Prop] = ACTIONS(613), + [anon_sym_let] = ACTIONS(617), + [anon_sym_record] = ACTIONS(619), + [sym__const_ellipsis] = ACTIONS(613), + [anon_sym_LPAREN_PIPE] = ACTIONS(621), + [anon_sym_] = ACTIONS(623), + [anon_sym_3] = ACTIONS(625), + [anon_sym__] = ACTIONS(613), + [anon_sym_LBRACE_LBRACE] = ACTIONS(627), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(629), + [aux_sym_integer_token1] = ACTIONS(631), + [sym__const_lambda] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_quoteTerm] = ACTIONS(613), + [anon_sym_2] = ACTIONS(7929), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_unquote] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(641), + [sym__const_forall] = ACTIONS(643), + [aux_sym_string_token1] = ACTIONS(645), + [anon_sym_Set] = ACTIONS(613), }, [4864] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_literal] = STATE(4058), + [sym_record_assignments] = STATE(4058), + [sym_atom] = STATE(4853), + [anon_sym__] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7945), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6407), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_LPAREN] = ACTIONS(7947), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_Prop] = ACTIONS(6403), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_record] = ACTIONS(6411), + [anon_sym_] = ACTIONS(7943), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_DOT] = ACTIONS(7937), + [anon_sym_LBRACE] = ACTIONS(7949), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), }, [4865] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8645), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(1296), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4867), + [aux_sym__open_args1_repeat1] = STATE(429), + [sym__expr2] = STATE(1296), + [sym_do] = STATE(1296), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(1296), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(1296), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(657), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(659), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(7941), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(663), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(669), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), }, [4866] = { - [sym__field_assignments1] = STATE(5272), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8645), - [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(1425), + [sym__newline] = ACTIONS(1427), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_LPAREN_PIPE] = ACTIONS(1427), + [sym_qualified_name] = ACTIONS(1425), + [anon_sym_quote] = ACTIONS(1425), + [sym__const_right_arrow] = ACTIONS(1425), + [anon_sym_tactic] = ACTIONS(1425), + [sym__const_ellipsis] = ACTIONS(1425), + [anon_sym_record] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_] = ACTIONS(1425), + [anon_sym_Prop] = ACTIONS(1425), + [anon_sym_3] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1427), + [sym__const_lambda] = ACTIONS(1425), + [anon_sym_quoteGoal] = ACTIONS(1425), + [aux_sym_integer_token1] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1425), + [anon_sym_quoteTerm] = ACTIONS(1425), + [anon_sym_where] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_unquote] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [sym__const_forall] = ACTIONS(1425), + [aux_sym_string_token1] = ACTIONS(1427), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_Set] = ACTIONS(1425), + [anon_sym_module] = ACTIONS(1425), }, [4867] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8654), + [sym_pragma] = ACTIONS(3), }, [4868] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4854), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7925), }, [4869] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8647), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4855), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym_RPAREN] = ACTIONS(7925), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4870] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5274), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(4859), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [anon_sym_2] = ACTIONS(7929), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), }, [4871] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym__newline] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4867), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(7941), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4872] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5275), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(43), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(3310), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4873] = { - [anon_sym_COLON] = ACTIONS(8649), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8651), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5279), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4874] = { - [anon_sym_COLON] = ACTIONS(8653), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8651), + [anon_sym_COLON] = ACTIONS(5019), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [sym__newline] = ACTIONS(5017), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_module] = ACTIONS(5019), }, [4875] = { - [anon_sym_COLON] = ACTIONS(8655), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5280), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4876] = { - [anon_sym_COLON] = ACTIONS(8657), - [anon_sym_2] = ACTIONS(8651), + [anon_sym_COLON] = ACTIONS(8656), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8658), [sym_pragma] = ACTIONS(3), }, [4877] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym__newline] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_with] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [anon_sym_COLON] = ACTIONS(8660), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8658), }, [4878] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5281), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8662), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4879] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5282), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8664), + [anon_sym_2] = ACTIONS(8658), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4880] = { - [anon_sym_COLON] = ACTIONS(7947), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(7939), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5286), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4881] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(3774), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [sym__newline] = ACTIONS(3772), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), }, [4882] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8659), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5287), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4883] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(7963), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(7955), + [sym_pragma] = ACTIONS(3), }, [4884] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4885] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8661), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4886] = { - [sym__field_assignments1] = STATE(5285), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8661), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8666), [sym_pragma] = ACTIONS(3), }, [4887] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__field_assignments1] = STATE(5289), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8666), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4888] = { - [anon_sym_COLON] = ACTIONS(809), - [sym__newline] = ACTIONS(811), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(809), - [sym_qualified_name] = ACTIONS(809), - [anon_sym_quoteTerm] = ACTIONS(809), - [sym__const_right_arrow] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [sym__const_ellipsis] = ACTIONS(809), - [anon_sym_record] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(809), - [anon_sym_with] = ACTIONS(809), - [anon_sym_] = ACTIONS(809), - [anon_sym_quote] = ACTIONS(809), - [anon_sym__] = ACTIONS(809), - [anon_sym_LBRACE_LBRACE] = ACTIONS(811), - [sym__const_lambda] = ACTIONS(809), - [anon_sym_in] = ACTIONS(809), - [aux_sym_integer_token1] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_Set] = ACTIONS(809), - [anon_sym_unquote] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_LPAREN_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(809), - [sym__const_forall] = ACTIONS(809), - [aux_sym_string_token1] = ACTIONS(811), - [anon_sym_tactic] = ACTIONS(809), - [anon_sym_Prop] = ACTIONS(809), - [anon_sym_3] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4889] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8663), }, [4890] = { - [anon_sym_RPAREN] = ACTIONS(8663), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8668), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4891] = { - [sym_module_assignment] = STATE(491), - [sym__module_name] = STATE(492), - [sym_field_assignment] = STATE(491), - [sym__record_assignments1] = STATE(5288), - [sym_qualified_name] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(8665), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [4892] = { - [anon_sym_LBRACE] = ACTIONS(8667), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8670), [sym_pragma] = ACTIONS(3), }, [4893] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8663), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [4894] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4889), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1236), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(324), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1236), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1236), - [sym__expr2] = STATE(1236), - [sym_lambda] = STATE(1236), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(473), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [sym__const_lambda] = ACTIONS(485), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(491), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(497), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(501), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7992), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [4895] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4890), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1237), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(350), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1237), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1237), - [sym__expr2] = STATE(1237), - [sym_lambda] = STATE(1237), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7992), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(527), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(529), - [sym__const_lambda] = ACTIONS(531), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(537), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(541), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8672), + [sym_pragma] = ACTIONS(3), }, [4896] = { - [sym_literal] = STATE(362), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4893), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1238), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(378), - [aux_sym__open_args1_repeat1] = STATE(379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1238), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(380), - [sym__atom_curly] = STATE(378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(362), - [sym__application] = STATE(1238), - [sym__expr2] = STATE(1238), - [sym_lambda] = STATE(1238), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(559), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(561), - [anon_sym_quoteTerm] = ACTIONS(561), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(561), - [sym__const_ellipsis] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_] = ACTIONS(565), - [anon_sym__] = ACTIONS(561), - [anon_sym_LBRACE_LBRACE] = ACTIONS(567), - [anon_sym_let] = ACTIONS(569), - [sym__const_lambda] = ACTIONS(571), - [aux_sym_integer_token1] = ACTIONS(573), - [anon_sym_Set] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(575), - [anon_sym_unquote] = ACTIONS(561), - [anon_sym_2] = ACTIONS(7996), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(579), - [anon_sym_LPAREN_PIPE] = ACTIONS(581), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_tactic] = ACTIONS(585), - [aux_sym_string_token1] = ACTIONS(587), - [sym__const_forall] = ACTIONS(589), - [anon_sym_Prop] = ACTIONS(561), - [anon_sym_3] = ACTIONS(591), + [sym__field_assignments1] = STATE(5293), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8672), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4897] = { - [sym__atom_no_curly] = STATE(4143), - [sym_literal] = STATE(4132), - [sym_record_assignments] = STATE(4132), - [sym__atom_curly] = STATE(4143), - [sym_atom] = STATE(4888), - [anon_sym__] = ACTIONS(6608), - [anon_sym_unquote] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8014), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(8016), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [anon_sym_] = ACTIONS(8012), - [anon_sym_DOT] = ACTIONS(8004), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(8018), - [anon_sym_3] = ACTIONS(6628), - [aux_sym_string_token1] = ACTIONS(6626), - [anon_sym_Prop] = ACTIONS(6608), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [4898] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4901), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(1239), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(396), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(1239), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(1239), - [sym__expr2] = STATE(1239), - [sym_lambda] = STATE(1239), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(603), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_RBRACE] = ACTIONS(8008), - [anon_sym_] = ACTIONS(479), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(607), - [sym__const_lambda] = ACTIONS(609), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(613), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(615), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [anon_sym_using] = ACTIONS(8120), + [anon_sym_SEMI] = ACTIONS(8120), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(8120), + [anon_sym_hiding] = ACTIONS(8120), + [anon_sym_RBRACE] = ACTIONS(8120), + [anon_sym_public] = ACTIONS(8120), + [anon_sym_renaming] = ACTIONS(8120), }, [4899] = { + [aux_sym_import_directive_repeat1] = STATE(4949), + [anon_sym_SEMI] = ACTIONS(6747), + [anon_sym_RPAREN] = ACTIONS(8674), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(8663), }, [4900] = { - [anon_sym_COLON] = ACTIONS(1397), - [sym__newline] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(1397), - [sym_qualified_name] = ACTIONS(1397), - [anon_sym_quoteTerm] = ACTIONS(1397), - [sym__const_right_arrow] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [sym__const_ellipsis] = ACTIONS(1397), - [anon_sym_record] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1397), - [anon_sym_with] = ACTIONS(1397), - [anon_sym_] = ACTIONS(1397), - [anon_sym_quote] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1399), - [sym__const_lambda] = ACTIONS(1397), - [anon_sym_in] = ACTIONS(1397), - [aux_sym_integer_token1] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_Set] = ACTIONS(1397), - [anon_sym_unquote] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1397), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_LPAREN_PIPE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [sym__const_forall] = ACTIONS(1397), - [aux_sym_string_token1] = ACTIONS(1399), - [anon_sym_tactic] = ACTIONS(1397), - [anon_sym_Prop] = ACTIONS(1397), - [anon_sym_3] = ACTIONS(1397), - [anon_sym_module] = ACTIONS(1397), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_renaming] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_using] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_hiding] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_public] = ACTIONS(4490), }, [4901] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8669), + [anon_sym_RBRACE] = ACTIONS(8676), [sym_pragma] = ACTIONS(3), }, [4902] = { - [sym_comment] = ACTIONS(3), - [anon_sym_4] = ACTIONS(8663), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4903] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(3304), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8678), + [sym_pragma] = ACTIONS(3), }, [4904] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(4889), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7992), - }, - [4905] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(4890), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym_RPAREN] = ACTIONS(7992), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [4906] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(4893), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [anon_sym_] = ACTIONS(153), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_unquote] = ACTIONS(149), - [anon_sym_2] = ACTIONS(7996), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym_name] = ACTIONS(7508), + }, + [4905] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8680), + [sym_pragma] = ACTIONS(3), + }, + [4906] = { + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8680), }, [4907] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(4901), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(8008), - [anon_sym_] = ACTIONS(269), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(8680), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4908] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8680), + [sym_pragma] = ACTIONS(3), }, [4909] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8671), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8682), }, [4910] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5292), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [aux_sym_record_constructor_instance_repeat1] = STATE(5300), + [sym__dedent] = ACTIONS(8684), + [sym_comment] = ACTIONS(3), + [anon_sym_constructor] = ACTIONS(8686), + [sym_pragma] = ACTIONS(3), }, [4911] = { - [anon_sym_COLON] = ACTIONS(4861), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [sym__newline] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LBRACE] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), + [sym_comment] = ACTIONS(3), + [sym__indent] = ACTIONS(8688), + [sym_pragma] = ACTIONS(3), }, [4912] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5293), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__newline] = ACTIONS(8690), + [anon_sym_in] = ACTIONS(8690), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4913] = { - [anon_sym_COLON] = ACTIONS(8673), + [sym__newline] = ACTIONS(8692), + [anon_sym_in] = ACTIONS(8692), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8675), [sym_pragma] = ACTIONS(3), }, [4914] = { - [anon_sym_COLON] = ACTIONS(8677), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_4] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8675), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [4915] = { - [anon_sym_COLON] = ACTIONS(8679), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8694), [sym_pragma] = ACTIONS(3), }, [4916] = { - [anon_sym_COLON] = ACTIONS(8681), - [anon_sym_2] = ACTIONS(8675), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8694), }, [4917] = { - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [sym__newline] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3633), - [anon_sym_module] = ACTIONS(3633), + [anon_sym_RPAREN] = ACTIONS(8694), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4918] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5299), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8694), + [sym_pragma] = ACTIONS(3), }, [4919] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5300), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_4] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4920] = { - [anon_sym_COLON] = ACTIONS(8032), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8024), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_4] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4921] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_2] = ACTIONS(7508), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [4922] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8683), + [anon_sym_RBRACE] = ACTIONS(8696), [sym_pragma] = ACTIONS(3), }, [4923] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8696), }, [4924] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_RPAREN] = ACTIONS(8696), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4925] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8685), + [anon_sym_2] = ACTIONS(8696), [sym_pragma] = ACTIONS(3), }, [4926] = { - [sym__field_assignments1] = STATE(5303), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8685), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4927] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4928] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8698), + [anon_sym_2] = ACTIONS(8698), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8700), + [anon_sym_EQ] = ACTIONS(8698), + [sym_pragma] = ACTIONS(3), }, [4929] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8702), + [anon_sym_] = ACTIONS(8704), + [anon_sym_EQ] = ACTIONS(8704), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8702), + [anon_sym_LBRACE] = ACTIONS(8704), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8704), }, [4930] = { + [anon_sym_RPAREN] = ACTIONS(8706), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8687), [sym_pragma] = ACTIONS(3), }, [4931] = { - [sym__field_assignments1] = STATE(5305), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8687), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8708), }, [4932] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8708), + [sym_pragma] = ACTIONS(3), }, [4933] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_3] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5306), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4934] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_quoteGoal] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [4935] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_quoteGoal] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5307), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4936] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8689), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5308), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4937] = { - [sym__field_assignments1] = STATE(5307), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8689), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5309), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [4938] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_quoteGoal] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(8708), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4939] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_2] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8708), + [sym_pragma] = ACTIONS(3), }, [4940] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_rewrite] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4941] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3063), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(3064), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3065), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3066), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1089), - [sym__const_lambda] = ACTIONS(1091), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1087), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4889), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1095), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1097), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8710), + [sym_pragma] = ACTIONS(3), }, [4942] = { - [sym_literal] = STATE(306), - [sym__typed_bindings1] = STATE(3116), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(3117), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(323), - [aux_sym__open_args1_repeat1] = STATE(3118), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(325), - [sym__atom_curly] = STATE(323), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(306), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(3119), - [anon_sym__] = ACTIONS(475), - [anon_sym_LBRACE_LBRACE] = ACTIONS(481), - [anon_sym_let] = ACTIONS(1111), - [sym__const_lambda] = ACTIONS(1113), - [aux_sym_integer_token1] = ACTIONS(487), - [anon_sym_Set] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(489), - [anon_sym_quoteGoal] = ACTIONS(1099), - [anon_sym_unquote] = ACTIONS(475), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(475), - [anon_sym_quoteTerm] = ACTIONS(475), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(475), - [sym__const_ellipsis] = ACTIONS(475), - [anon_sym_record] = ACTIONS(477), - [anon_sym_QMARK] = ACTIONS(475), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(4949), - [anon_sym_LPAREN_PIPE] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_tactic] = ACTIONS(1127), - [aux_sym_string_token1] = ACTIONS(499), - [sym__const_forall] = ACTIONS(1131), - [anon_sym_Prop] = ACTIONS(475), - [anon_sym_3] = ACTIONS(503), + [sym_let] = STATE(43), + [sym_literal] = STATE(1555), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1565), + [sym__atom_no_curly] = STATE(1565), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1567), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1568), + [sym_atom] = STATE(1569), + [sym__typed_bindings1] = STATE(1570), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1555), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(735), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(2572), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1113), + [aux_sym_integer_token1] = ACTIONS(2576), + [sym__const_lambda] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(2572), + [anon_sym_quoteTerm] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2572), + [anon_sym_quote] = ACTIONS(2572), + [anon_sym_tactic] = ACTIONS(1125), + [anon_sym_Prop] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_record] = ACTIONS(2580), + [sym__const_ellipsis] = ACTIONS(2572), + [anon_sym_LPAREN_PIPE] = ACTIONS(2582), + [anon_sym_] = ACTIONS(2584), + [anon_sym_3] = ACTIONS(2586), + [anon_sym_DOT] = ACTIONS(2588), + [anon_sym_unquote] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2590), + [sym__const_forall] = ACTIONS(1139), + [aux_sym_string_token1] = ACTIONS(2592), + [anon_sym_Set] = ACTIONS(2572), + [sym_pragma] = ACTIONS(3), }, [4943] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8691), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4944] = { + [sym_import_directive] = STATE(1771), + [aux_sym_module_macro_repeat1] = STATE(1771), + [sym__newline] = ACTIONS(8712), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8691), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), [sym_pragma] = ACTIONS(3), }, [4945] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5309), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8714), }, [4946] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_SEMI] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), + [anon_sym_SEMI] = ACTIONS(8716), + [anon_sym_RPAREN] = ACTIONS(8716), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_RBRACE] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [4947] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5310), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(8718), + [anon_sym_RPAREN] = ACTIONS(8718), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4948] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5311), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(8720), + [anon_sym_using] = ACTIONS(8720), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(8720), + [anon_sym_in] = ACTIONS(8720), + [anon_sym_public] = ACTIONS(8720), + [anon_sym_renaming] = ACTIONS(8720), }, [4949] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5312), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [aux_sym_import_directive_repeat1] = STATE(4949), + [anon_sym_SEMI] = ACTIONS(8722), + [anon_sym_RPAREN] = ACTIONS(8718), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4950] = { - [anon_sym_RPAREN] = ACTIONS(8691), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_renaming] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_using] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_hiding] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_public] = ACTIONS(6550), }, [4951] = { + [anon_sym_SEMI] = ACTIONS(8725), + [anon_sym_RPAREN] = ACTIONS(8725), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8691), [sym_pragma] = ACTIONS(3), }, [4952] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [4953] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8693), + [aux_sym__comma_import_names1_repeat1] = STATE(4952), + [anon_sym_SEMI] = ACTIONS(8727), + [anon_sym_RPAREN] = ACTIONS(8725), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, + [4953] = { + [anon_sym_COLON] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + }, [4954] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5314), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [4955] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_] = ACTIONS(4861), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [4956] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5315), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_RBRACE] = ACTIONS(8730), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [4957] = { - [anon_sym_COLON] = ACTIONS(8695), + [sym__field_assignments1] = STATE(5313), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8730), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8697), [sym_pragma] = ACTIONS(3), }, [4958] = { - [anon_sym_COLON] = ACTIONS(8699), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8697), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [4959] = { - [anon_sym_COLON] = ACTIONS(8701), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4960] = { - [anon_sym_COLON] = ACTIONS(8703), - [anon_sym_2] = ACTIONS(8697), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_rewrite] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [4961] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3633), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(3111), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3112), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3113), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3114), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1247), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1243), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5047), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1253), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), }, [4962] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5321), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8732), }, [4963] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5322), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8732), + [sym_pragma] = ACTIONS(3), }, [4964] = { - [anon_sym_COLON] = ACTIONS(8125), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8117), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5315), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4965] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6079), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [anon_sym_RBRACE] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [4966] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5316), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4967] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8705), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5317), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4968] = { - [anon_sym_SEMI] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5318), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4969] = { + [anon_sym_RPAREN] = ACTIONS(8732), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8707), [sym_pragma] = ACTIONS(3), }, [4970] = { - [sym__atom_no_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym_record_assignments] = STATE(792), - [sym__atom_curly] = STATE(802), - [sym_atom] = STATE(1867), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(8139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_3] = ACTIONS(1267), - [aux_sym_string_token1] = ACTIONS(1265), - [anon_sym_Prop] = ACTIONS(1247), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8732), + [sym_pragma] = ACTIONS(3), }, [4971] = { - [sym_do] = STATE(434), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(804), - [sym__atom_curly] = STATE(802), - [sym_literal] = STATE(792), - [sym__let_in] = STATE(69), - [sym_let] = STATE(434), - [sym__atom_no_curly] = STATE(802), - [sym_record_assignments] = STATE(792), - [aux_sym__open_args1_repeat1] = STATE(291), - [sym__expr2] = STATE(434), - [sym_lambda] = STATE(434), - [anon_sym__] = ACTIONS(1247), - [anon_sym_unquote] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(1249), - [anon_sym_Set] = ACTIONS(1247), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(1247), - [anon_sym_quoteTerm] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(1247), - [sym__const_ellipsis] = ACTIONS(1247), - [anon_sym_record] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_] = ACTIONS(1257), - [anon_sym_DOT] = ACTIONS(8139), - [anon_sym_LPAREN_PIPE] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1263), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(1265), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(1247), - [anon_sym_3] = ACTIONS(1267), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5319), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4972] = { - [sym__atom_no_curly] = STATE(192), - [sym_literal] = STATE(174), - [sym_record_assignments] = STATE(174), - [sym__atom_curly] = STATE(192), - [sym_atom] = STATE(752), - [anon_sym__] = ACTIONS(265), - [anon_sym_unquote] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [anon_sym_] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(8141), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_3] = ACTIONS(293), - [aux_sym_string_token1] = ACTIONS(289), - [anon_sym_Prop] = ACTIONS(265), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5019), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [4973] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(1266), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5320), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [4974] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(8734), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8736), + [sym_pragma] = ACTIONS(3), }, [4975] = { + [anon_sym_COLON] = ACTIONS(8738), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8709), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8736), }, [4976] = { - [sym__newline] = ACTIONS(8145), + [anon_sym_COLON] = ACTIONS(8740), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4977] = { - [sym_import_directive] = STATE(1840), - [aux_sym_module_macro_repeat1] = STATE(1840), - [sym__newline] = ACTIONS(8711), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), + [anon_sym_COLON] = ACTIONS(8742), + [anon_sym_2] = ACTIONS(8736), [sym_comment] = ACTIONS(3), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), [sym_pragma] = ACTIONS(3), }, [4978] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5326), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8713), }, [4979] = { - [anon_sym_SEMI] = ACTIONS(8715), - [anon_sym_RPAREN] = ACTIONS(8715), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_SEMI] = ACTIONS(3774), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [4980] = { - [anon_sym_SEMI] = ACTIONS(8717), - [anon_sym_RPAREN] = ACTIONS(8717), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5327), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4981] = { - [sym__newline] = ACTIONS(8719), - [anon_sym_using] = ACTIONS(8719), + [anon_sym_COLON] = ACTIONS(8168), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8160), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8719), - [anon_sym_hiding] = ACTIONS(8719), - [anon_sym_public] = ACTIONS(8719), - [anon_sym_renaming] = ACTIONS(8719), }, [4982] = { - [aux_sym_import_directive_repeat1] = STATE(4982), - [anon_sym_SEMI] = ACTIONS(8721), - [anon_sym_RPAREN] = ACTIONS(8717), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4983] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_renaming] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_using] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_hiding] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_public] = ACTIONS(6077), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8744), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [4984] = { - [anon_sym_SEMI] = ACTIONS(8724), - [anon_sym_RPAREN] = ACTIONS(8724), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(325), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(341), + [sym__atom_no_curly] = STATE(341), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(3164), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(3165), + [sym_atom] = STATE(344), + [sym__typed_bindings1] = STATE(3166), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(325), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(3167), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(505), + [anon_sym_LBRACE_LBRACE] = ACTIONS(519), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(1273), + [aux_sym_integer_token1] = ACTIONS(523), + [sym__const_lambda] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_QMARK] = ACTIONS(505), + [anon_sym_quoteTerm] = ACTIONS(505), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(505), + [anon_sym_quote] = ACTIONS(505), + [anon_sym_tactic] = ACTIONS(1263), + [anon_sym_Prop] = ACTIONS(505), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_record] = ACTIONS(511), + [sym__const_ellipsis] = ACTIONS(505), + [anon_sym_LPAREN_PIPE] = ACTIONS(513), + [anon_sym_] = ACTIONS(515), + [anon_sym_3] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(5107), + [anon_sym_unquote] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(531), + [sym__const_forall] = ACTIONS(1287), + [aux_sym_string_token1] = ACTIONS(535), + [anon_sym_Set] = ACTIONS(505), [sym_pragma] = ACTIONS(3), }, [4985] = { - [aux_sym__comma_import_names1_repeat1] = STATE(4985), - [anon_sym_SEMI] = ACTIONS(8726), - [anon_sym_RPAREN] = ACTIONS(8724), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_SEMI] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6552), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4986] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6079), - [anon_sym_SEMI] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_literal] = STATE(873), + [sym_record_assignments] = STATE(873), + [sym_atom] = STATE(1920), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_Prop] = ACTIONS(1373), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_record] = ACTIONS(1383), + [anon_sym_] = ACTIONS(1387), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(8182), + [anon_sym_LBRACE] = ACTIONS(1391), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), }, [4987] = { - [anon_sym_SEMI] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_3] = ACTIONS(6077), + [sym_literal] = STATE(873), + [sym_do] = STATE(442), + [sym__expr2] = STATE(442), + [sym_atom] = STATE(885), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(883), + [sym__atom_no_curly] = STATE(883), + [sym_record_assignments] = STATE(873), + [aux_sym__open_args1_repeat1] = STATE(289), + [sym_let] = STATE(442), + [sym_lambda] = STATE(442), + [anon_sym__] = ACTIONS(1373), + [anon_sym_quoteTerm] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(1375), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_LPAREN_PIPE] = ACTIONS(1381), + [sym_qualified_name] = ACTIONS(1373), + [anon_sym_quote] = ACTIONS(1373), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(1373), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(1383), + [sym__const_ellipsis] = ACTIONS(1373), + [anon_sym_3] = ACTIONS(1385), + [anon_sym_] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_unquote] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(8182), + [anon_sym_LBRACE] = ACTIONS(1391), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(1393), + [anon_sym_Set] = ACTIONS(1373), + [sym_pragma] = ACTIONS(3), }, [4988] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(3601), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [4989] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8729), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8746), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4990] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5328), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4991] = { - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [anon_sym_RBRACE] = ACTIONS(8748), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), }, [4992] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5329), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_literal] = STATE(211), + [sym_record_assignments] = STATE(211), + [sym_atom] = STATE(829), + [anon_sym__] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(1367), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_3] = ACTIONS(333), + [anon_sym_Prop] = ACTIONS(321), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_record] = ACTIONS(327), + [anon_sym_] = ACTIONS(1363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(1369), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), }, [4993] = { - [anon_sym_COLON] = ACTIONS(8731), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8733), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(1316), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [4994] = { - [anon_sym_COLON] = ACTIONS(8735), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8733), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [4995] = { - [anon_sym_COLON] = ACTIONS(8737), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8750), [sym_pragma] = ACTIONS(3), }, [4996] = { - [anon_sym_COLON] = ACTIONS(8739), - [anon_sym_2] = ACTIONS(8733), + [sym__newline] = ACTIONS(8192), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [4997] = { - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6552), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [4998] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5335), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_RPAREN] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), }, [4999] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5336), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5332), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5000] = { - [anon_sym_COLON] = ACTIONS(8185), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8177), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [5001] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5333), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [5002] = { + [anon_sym_COLON] = ACTIONS(8752), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8741), + [anon_sym_RBRACE] = ACTIONS(8754), [sym_pragma] = ACTIONS(3), }, [5003] = { - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(8756), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8754), }, [5004] = { - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(8758), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5005] = { + [anon_sym_COLON] = ACTIONS(8760), + [anon_sym_2] = ACTIONS(8754), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8743), [sym_pragma] = ACTIONS(3), }, [5006] = { - [sym__field_assignments1] = STATE(5339), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8743), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5339), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5007] = { - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [5008] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5340), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), }, [5009] = { + [anon_sym_COLON] = ACTIONS(8210), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8202), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), }, [5010] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8745), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [5011] = { - [sym__field_assignments1] = STATE(5341), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8745), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [5012] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8762), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), }, [5013] = { - [sym__newline] = ACTIONS(8747), + [sym__field_assignments1] = STATE(5342), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8762), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8747), }, [5014] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_PIPE_RPAREN] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [5015] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(3686), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8749), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), }, [5016] = { + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8764), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8749), }, [5017] = { - [anon_sym_RPAREN] = ACTIONS(8749), - [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5018] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8749), + [anon_sym_RBRACE] = ACTIONS(8766), [sym_pragma] = ACTIONS(3), }, [5019] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_PIPE_RPAREN] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [5020] = { [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [anon_sym_PIPE_RPAREN] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [5021] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), + [anon_sym_RBRACE] = ACTIONS(8768), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8376), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_RPAREN] = ACTIONS(8376), - [anon_sym_RBRACE] = ACTIONS(8378), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), }, [5022] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__field_assignments1] = STATE(5346), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8768), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5023] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(7420), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [5024] = { - [sym__newline] = ACTIONS(8751), - [anon_sym_using] = ACTIONS(8751), + [sym__newline] = ACTIONS(8770), + [anon_sym_in] = ACTIONS(8770), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_in] = ACTIONS(8751), - [anon_sym_hiding] = ACTIONS(8751), - [anon_sym_public] = ACTIONS(8751), - [anon_sym_renaming] = ACTIONS(8751), }, [5025] = { + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8753), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8415), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [anon_sym_RPAREN] = ACTIONS(8415), + [anon_sym_RBRACE] = ACTIONS(8417), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5026] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8753), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5027] = { - [anon_sym_RPAREN] = ACTIONS(8753), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(7508), }, [5028] = { + [sym__newline] = ACTIONS(8772), + [anon_sym_using] = ACTIONS(8772), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8753), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(8772), + [anon_sym_in] = ACTIONS(8772), + [anon_sym_public] = ACTIONS(8772), + [anon_sym_renaming] = ACTIONS(8772), }, [5029] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_RBRACE] = ACTIONS(8774), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym_name] = ACTIONS(7420), }, [5030] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8755), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8774), }, [5031] = { + [anon_sym_RPAREN] = ACTIONS(8774), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8755), }, [5032] = { - [anon_sym_RPAREN] = ACTIONS(8755), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8774), [sym_pragma] = ACTIONS(3), }, [5033] = { + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8755), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym_name] = ACTIONS(7508), }, [5034] = { - [sym_literal] = STATE(3367), - [sym__typed_bindings1] = STATE(3377), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(985), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3378), - [aux_sym__open_args1_repeat1] = STATE(3379), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3380), - [sym__atom_curly] = STATE(3378), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3367), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3381), - [anon_sym__] = ACTIONS(5454), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5456), - [anon_sym_let] = ACTIONS(1503), - [sym__const_lambda] = ACTIONS(1505), - [aux_sym_integer_token1] = ACTIONS(5458), - [anon_sym_Set] = ACTIONS(5454), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_quoteGoal] = ACTIONS(1509), - [anon_sym_unquote] = ACTIONS(5454), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5454), - [anon_sym_quoteTerm] = ACTIONS(5454), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5454), - [sym__const_ellipsis] = ACTIONS(5454), - [anon_sym_record] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5454), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5466), - [anon_sym_LPAREN_PIPE] = ACTIONS(5468), - [anon_sym_LBRACE] = ACTIONS(5470), - [anon_sym_tactic] = ACTIONS(1525), - [aux_sym_string_token1] = ACTIONS(5472), - [sym__const_forall] = ACTIONS(1529), - [anon_sym_Prop] = ACTIONS(5454), - [anon_sym_3] = ACTIONS(5474), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8776), + [sym_pragma] = ACTIONS(3), }, [5035] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8757), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8776), }, [5036] = { + [anon_sym_RPAREN] = ACTIONS(8776), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8757), [sym_pragma] = ACTIONS(3), }, [5037] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5346), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8776), + [sym_pragma] = ACTIONS(3), }, [5038] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8778), }, [5039] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5347), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8778), + [sym_pragma] = ACTIONS(3), }, [5040] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5348), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5350), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5041] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5349), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym_module] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym__newline] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5042] = { - [anon_sym_RPAREN] = ACTIONS(8757), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5351), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5043] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8757), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5352), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5044] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5353), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5045] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5046] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8759), + [anon_sym_RBRACE] = ACTIONS(8778), [sym_pragma] = ACTIONS(3), }, [5047] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5048] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8780), + [sym_pragma] = ACTIONS(3), }, [5049] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8761), + [sym_let] = STATE(43), + [sym_literal] = STATE(985), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1000), + [sym__atom_no_curly] = STATE(1000), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1002), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1003), + [sym_atom] = STATE(1004), + [sym__typed_bindings1] = STATE(1005), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(985), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1006), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1561), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1565), + [aux_sym_integer_token1] = ACTIONS(1567), + [sym__const_lambda] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_quoteTerm] = ACTIONS(1561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1561), + [anon_sym_quote] = ACTIONS(1561), + [anon_sym_tactic] = ACTIONS(1573), + [anon_sym_Prop] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1575), + [anon_sym_record] = ACTIONS(1577), + [sym__const_ellipsis] = ACTIONS(1561), + [anon_sym_LPAREN_PIPE] = ACTIONS(1579), + [anon_sym_] = ACTIONS(1581), + [anon_sym_3] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_unquote] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1587), + [sym__const_forall] = ACTIONS(1589), + [aux_sym_string_token1] = ACTIONS(1591), + [anon_sym_Set] = ACTIONS(1561), [sym_pragma] = ACTIONS(3), }, [5050] = { - [sym__field_assignments1] = STATE(5352), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8761), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5051] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5052] = { - [sym_literal] = STATE(990), - [sym__typed_bindings1] = STATE(1005), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1007), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1008), - [aux_sym__open_args1_repeat1] = STATE(1009), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1010), - [sym__atom_curly] = STATE(1008), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(990), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1011), - [anon_sym__] = ACTIONS(1533), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1535), - [anon_sym_let] = ACTIONS(1537), - [sym__const_lambda] = ACTIONS(1539), - [aux_sym_integer_token1] = ACTIONS(1541), - [anon_sym_Set] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_quoteGoal] = ACTIONS(1545), - [anon_sym_unquote] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1533), - [anon_sym_quoteTerm] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1533), - [sym__const_ellipsis] = ACTIONS(1533), - [anon_sym_record] = ACTIONS(1547), - [anon_sym_QMARK] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN_PIPE] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_tactic] = ACTIONS(1557), - [aux_sym_string_token1] = ACTIONS(1559), - [sym__const_forall] = ACTIONS(1561), - [anon_sym_Prop] = ACTIONS(1533), - [anon_sym_3] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8782), + [sym_pragma] = ACTIONS(3), }, [5053] = { [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8763), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8784), }, [5054] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8763), + [anon_sym_2] = ACTIONS(8784), [sym_pragma] = ACTIONS(3), }, [5055] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5354), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5357), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5056] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5057] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5355), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5358), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5058] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5356), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5359), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5059] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5357), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5360), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5060] = { - [anon_sym_RPAREN] = ACTIONS(8763), + [anon_sym_RPAREN] = ACTIONS(8784), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5061] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8763), + [anon_sym_RBRACE] = ACTIONS(8784), [sym_pragma] = ACTIONS(3), }, [5062] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5063] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8786), + [sym_pragma] = ACTIONS(3), }, [5064] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8765), + [sym_let] = STATE(43), + [sym_literal] = STATE(3418), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3428), + [sym__atom_no_curly] = STATE(3428), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(3429), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3430), + [sym_atom] = STATE(3431), + [sym__typed_bindings1] = STATE(3432), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3418), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1030), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5519), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5521), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1601), + [aux_sym_integer_token1] = ACTIONS(5523), + [sym__const_lambda] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(5525), + [anon_sym_QMARK] = ACTIONS(5519), + [anon_sym_quoteTerm] = ACTIONS(5519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5519), + [anon_sym_quote] = ACTIONS(5519), + [anon_sym_tactic] = ACTIONS(1613), + [anon_sym_Prop] = ACTIONS(5519), + [anon_sym_let] = ACTIONS(1615), + [anon_sym_record] = ACTIONS(5527), + [sym__const_ellipsis] = ACTIONS(5519), + [anon_sym_LPAREN_PIPE] = ACTIONS(5529), + [anon_sym_] = ACTIONS(5531), + [anon_sym_3] = ACTIONS(5533), + [anon_sym_DOT] = ACTIONS(5535), + [anon_sym_unquote] = ACTIONS(5519), + [anon_sym_LBRACE] = ACTIONS(5537), + [sym__const_forall] = ACTIONS(1627), + [aux_sym_string_token1] = ACTIONS(5539), + [anon_sym_Set] = ACTIONS(5519), [sym_pragma] = ACTIONS(3), }, [5065] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5066] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8767), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [5067] = { - [sym_literal] = STATE(1024), - [sym__typed_bindings1] = STATE(1039), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1041), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1042), - [aux_sym__open_args1_repeat1] = STATE(1043), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1044), - [sym__atom_curly] = STATE(1042), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1024), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1045), - [anon_sym__] = ACTIONS(1714), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1718), - [sym__const_lambda] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1722), - [anon_sym_Set] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_quoteGoal] = ACTIONS(1726), - [anon_sym_unquote] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1714), - [anon_sym_quoteTerm] = ACTIONS(1714), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1714), - [sym__const_ellipsis] = ACTIONS(1714), - [anon_sym_record] = ACTIONS(1728), - [anon_sym_QMARK] = ACTIONS(1714), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_LPAREN_PIPE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_tactic] = ACTIONS(1738), - [aux_sym_string_token1] = ACTIONS(1740), - [sym__const_forall] = ACTIONS(1742), - [anon_sym_Prop] = ACTIONS(1714), - [anon_sym_3] = ACTIONS(1744), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [5068] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8788), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8769), }, [5069] = { + [sym__field_assignments1] = STATE(5363), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8788), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8769), [sym_pragma] = ACTIONS(3), }, [5070] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5361), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [5071] = { - [anon_sym_module] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym__newline] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8790), }, [5072] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5362), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8790), + [sym_pragma] = ACTIONS(3), }, [5073] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5363), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5365), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5074] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5364), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5075] = { - [anon_sym_RPAREN] = ACTIONS(8769), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5366), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5076] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8769), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5367), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5077] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5368), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5078] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8790), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5079] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8771), + [anon_sym_RBRACE] = ACTIONS(8790), [sym_pragma] = ACTIONS(3), }, [5080] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5081] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8773), + [anon_sym_RBRACE] = ACTIONS(8792), [sym_pragma] = ACTIONS(3), }, [5082] = { - [sym_literal] = STATE(3507), - [sym__typed_bindings1] = STATE(3517), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1068), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(3518), - [aux_sym__open_args1_repeat1] = STATE(3519), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1031), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1046), + [sym__atom_no_curly] = STATE(1046), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1048), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(3520), - [sym__atom_curly] = STATE(3518), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3507), + [sym__atoms1] = STATE(1049), + [sym_atom] = STATE(1050), + [sym__typed_bindings1] = STATE(1051), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1031), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1052), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(3521), - [anon_sym__] = ACTIONS(5599), - [anon_sym_LBRACE_LBRACE] = ACTIONS(5601), - [anon_sym_let] = ACTIONS(1793), - [sym__const_lambda] = ACTIONS(1795), - [aux_sym_integer_token1] = ACTIONS(5603), - [anon_sym_Set] = ACTIONS(5599), - [anon_sym_LPAREN] = ACTIONS(5605), - [anon_sym_quoteGoal] = ACTIONS(1799), - [anon_sym_unquote] = ACTIONS(5599), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(5599), - [anon_sym_quoteTerm] = ACTIONS(5599), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(5599), - [sym__const_ellipsis] = ACTIONS(5599), - [anon_sym_record] = ACTIONS(5607), - [anon_sym_QMARK] = ACTIONS(5599), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(5609), - [anon_sym_DOT] = ACTIONS(5611), - [anon_sym_LPAREN_PIPE] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5615), - [anon_sym_tactic] = ACTIONS(1815), - [aux_sym_string_token1] = ACTIONS(5617), - [sym__const_forall] = ACTIONS(1819), - [anon_sym_Prop] = ACTIONS(5599), - [anon_sym_3] = ACTIONS(5619), + [anon_sym__] = ACTIONS(1631), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1635), + [aux_sym_integer_token1] = ACTIONS(1637), + [sym__const_lambda] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1631), + [anon_sym_quoteTerm] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1631), + [anon_sym_quote] = ACTIONS(1631), + [anon_sym_tactic] = ACTIONS(1643), + [anon_sym_Prop] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1645), + [anon_sym_record] = ACTIONS(1647), + [sym__const_ellipsis] = ACTIONS(1631), + [anon_sym_LPAREN_PIPE] = ACTIONS(1649), + [anon_sym_] = ACTIONS(1651), + [anon_sym_3] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_unquote] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1657), + [sym__const_forall] = ACTIONS(1659), + [aux_sym_string_token1] = ACTIONS(1661), + [anon_sym_Set] = ACTIONS(1631), + [sym_pragma] = ACTIONS(3), }, [5083] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8775), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5084] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8775), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5085] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5368), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8794), + [sym_pragma] = ACTIONS(3), }, [5086] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym__newline] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8796), }, [5087] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5369), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8796), + [sym_pragma] = ACTIONS(3), }, [5088] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5370), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5372), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5089] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5371), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym__newline] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5090] = { - [anon_sym_RPAREN] = ACTIONS(8775), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5373), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5091] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8775), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5374), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5092] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5375), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5093] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8796), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5094] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8777), + [anon_sym_RBRACE] = ACTIONS(8796), [sym_pragma] = ACTIONS(3), }, [5095] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5096] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8798), + [sym_pragma] = ACTIONS(3), }, [5097] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8779), + [sym_let] = STATE(43), + [sym_literal] = STATE(3511), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3521), + [sym__atom_no_curly] = STATE(3521), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(3522), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3523), + [sym_atom] = STATE(3524), + [sym__typed_bindings1] = STATE(3525), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3511), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1073), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(5617), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1772), + [aux_sym_integer_token1] = ACTIONS(5621), + [sym__const_lambda] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_quoteTerm] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(5617), + [anon_sym_quote] = ACTIONS(5617), + [anon_sym_tactic] = ACTIONS(1784), + [anon_sym_Prop] = ACTIONS(5617), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_record] = ACTIONS(5625), + [sym__const_ellipsis] = ACTIONS(5617), + [anon_sym_LPAREN_PIPE] = ACTIONS(5627), + [anon_sym_] = ACTIONS(5629), + [anon_sym_3] = ACTIONS(5631), + [anon_sym_DOT] = ACTIONS(5633), + [anon_sym_unquote] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5635), + [sym__const_forall] = ACTIONS(1798), + [aux_sym_string_token1] = ACTIONS(5637), + [anon_sym_Set] = ACTIONS(5617), [sym_pragma] = ACTIONS(3), }, [5098] = { - [sym__field_assignments1] = STATE(5374), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8779), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5099] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [5100] = { - [sym_literal] = STATE(1072), - [sym__typed_bindings1] = STATE(1087), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1088), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1089), - [aux_sym__open_args1_repeat1] = STATE(1090), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1091), - [sym__atom_curly] = STATE(1089), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1072), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1092), - [anon_sym__] = ACTIONS(1823), - [anon_sym_LBRACE_LBRACE] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1827), - [sym__const_lambda] = ACTIONS(1829), - [aux_sym_integer_token1] = ACTIONS(1831), - [anon_sym_Set] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_quoteGoal] = ACTIONS(1835), - [anon_sym_unquote] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(1823), - [anon_sym_quoteTerm] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(1823), - [sym__const_ellipsis] = ACTIONS(1823), - [anon_sym_record] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1823), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_LPAREN_PIPE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_tactic] = ACTIONS(1847), - [aux_sym_string_token1] = ACTIONS(1849), - [sym__const_forall] = ACTIONS(1851), - [anon_sym_Prop] = ACTIONS(1823), - [anon_sym_3] = ACTIONS(1853), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [5101] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8800), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8781), }, [5102] = { + [sym__field_assignments1] = STATE(5378), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8800), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8781), [sym_pragma] = ACTIONS(3), }, [5103] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5376), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [5104] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym__newline] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8802), }, [5105] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5377), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8802), + [sym_pragma] = ACTIONS(3), }, [5106] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5378), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5380), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5107] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5379), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym__newline] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5108] = { - [anon_sym_RPAREN] = ACTIONS(8781), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5381), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5109] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8781), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5382), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5110] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5383), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5111] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(8802), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5112] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8783), + [anon_sym_RBRACE] = ACTIONS(8802), [sym_pragma] = ACTIONS(3), }, [5113] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5114] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8785), + [anon_sym_RBRACE] = ACTIONS(8804), [sym_pragma] = ACTIONS(3), }, [5115] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(7418), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_RBRACE] = ACTIONS(7420), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_RBRACE_RBRACE] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [sym_let] = STATE(43), + [sym_literal] = STATE(1074), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1089), + [sym__atom_no_curly] = STATE(1089), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1090), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1091), + [sym_atom] = STATE(1092), + [sym__typed_bindings1] = STATE(1093), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1074), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1094), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1806), + [aux_sym_integer_token1] = ACTIONS(1808), + [sym__const_lambda] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_quoteTerm] = ACTIONS(1802), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1802), + [anon_sym_quote] = ACTIONS(1802), + [anon_sym_tactic] = ACTIONS(1814), + [anon_sym_Prop] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_record] = ACTIONS(1818), + [sym__const_ellipsis] = ACTIONS(1802), + [anon_sym_LPAREN_PIPE] = ACTIONS(1820), + [anon_sym_] = ACTIONS(1822), + [anon_sym_3] = ACTIONS(1824), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_unquote] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1828), + [sym__const_forall] = ACTIONS(1830), + [aux_sym_string_token1] = ACTIONS(1832), + [anon_sym_Set] = ACTIONS(1802), + [sym_pragma] = ACTIONS(3), }, [5116] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8787), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5117] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8787), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5118] = { - [anon_sym_RPAREN] = ACTIONS(8787), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8806), [sym_pragma] = ACTIONS(3), }, [5119] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8787), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8808), }, [5120] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6079), - [anon_sym_SEMI] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8808), + [sym_pragma] = ACTIONS(3), }, [5121] = { - [anon_sym_COLON] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_RPAREN] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_3] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5387), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5122] = { - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_RBRACE_RBRACE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5123] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8789), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5388), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5124] = { - [sym__field_assignments1] = STATE(5384), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8789), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5389), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5125] = { - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_3] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5390), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5126] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), + [anon_sym_RPAREN] = ACTIONS(8808), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_4] = ACTIONS(8378), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), }, [5127] = { - [sym_import_directive] = STATE(3620), - [aux_sym_module_macro_repeat1] = STATE(3620), - [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(3981), - [anon_sym_using] = ACTIONS(3981), - [anon_sym_RPAREN] = ACTIONS(8149), - [anon_sym_public] = ACTIONS(3985), - [anon_sym_renaming] = ACTIONS(3987), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8808), + [sym_pragma] = ACTIONS(3), }, [5128] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_2] = ACTIONS(7420), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5129] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8791), + [anon_sym_RBRACE] = ACTIONS(8810), [sym_pragma] = ACTIONS(3), }, [5130] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(43), + [sym_literal] = STATE(1101), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1116), + [sym__atom_no_curly] = STATE(1116), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1118), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(1119), + [sym_atom] = STATE(1120), + [sym__typed_bindings1] = STATE(1121), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1101), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1122), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(1881), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(1885), + [aux_sym_integer_token1] = ACTIONS(1887), + [sym__const_lambda] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_QMARK] = ACTIONS(1881), + [anon_sym_quoteTerm] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(1881), + [anon_sym_quote] = ACTIONS(1881), + [anon_sym_tactic] = ACTIONS(1893), + [anon_sym_Prop] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_record] = ACTIONS(1897), + [sym__const_ellipsis] = ACTIONS(1881), + [anon_sym_LPAREN_PIPE] = ACTIONS(1899), + [anon_sym_] = ACTIONS(1901), + [anon_sym_3] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_unquote] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1907), + [sym__const_forall] = ACTIONS(1909), + [aux_sym_string_token1] = ACTIONS(1911), + [anon_sym_Set] = ACTIONS(1881), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8791), }, [5131] = { - [anon_sym_RPAREN] = ACTIONS(8791), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5132] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8791), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5133] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_2] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8812), + [sym_pragma] = ACTIONS(3), }, [5134] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_2] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym_name] = ACTIONS(8417), }, [5135] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_2] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(7506), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [anon_sym_RBRACE] = ACTIONS(7508), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_RBRACE_RBRACE] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), }, [5136] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8793), + [anon_sym_RBRACE] = ACTIONS(8814), [sym_pragma] = ACTIONS(3), }, [5137] = { - [sym__field_assignments1] = STATE(5387), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8793), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8814), }, [5138] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_2] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(8814), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5139] = { - [sym_literal] = STATE(1284), - [sym__typed_bindings1] = STATE(1299), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1301), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1302), - [aux_sym__open_args1_repeat1] = STATE(1303), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1304), - [sym__atom_curly] = STATE(1302), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1284), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1305), - [anon_sym__] = ACTIONS(2134), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2138), - [sym__const_lambda] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2142), - [anon_sym_Set] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_quoteGoal] = ACTIONS(2146), - [anon_sym_unquote] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2134), - [anon_sym_quoteTerm] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2134), - [sym__const_ellipsis] = ACTIONS(2134), - [anon_sym_record] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2150), - [anon_sym_DOT] = ACTIONS(2152), - [anon_sym_LPAREN_PIPE] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_tactic] = ACTIONS(2158), - [aux_sym_string_token1] = ACTIONS(2160), - [sym__const_forall] = ACTIONS(2162), - [anon_sym_Prop] = ACTIONS(2134), - [anon_sym_3] = ACTIONS(2164), - }, - [5140] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8814), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8795), + }, + [5140] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6552), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5141] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8795), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), }, [5142] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5389), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_RBRACE_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), }, [5143] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), + [anon_sym_RBRACE] = ACTIONS(8816), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [5144] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5390), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(5395), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5145] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5391), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_RBRACE_RBRACE] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), }, [5146] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5392), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_PIPE_RPAREN] = ACTIONS(8415), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5147] = { - [anon_sym_RPAREN] = ACTIONS(8795), - [sym_comment] = ACTIONS(3), + [sym_import_directive] = STATE(3678), + [aux_sym_module_macro_repeat1] = STATE(3678), [sym_pragma] = ACTIONS(3), + [anon_sym_hiding] = ACTIONS(4482), + [anon_sym_using] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(8112), + [anon_sym_public] = ACTIONS(4486), + [anon_sym_renaming] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), }, [5148] = { + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8795), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_2] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5149] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8818), + [sym_pragma] = ACTIONS(3), }, [5150] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8818), }, [5151] = { + [anon_sym_RPAREN] = ACTIONS(8818), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8797), [sym_pragma] = ACTIONS(3), }, [5152] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - }, - [5153] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8799), + [anon_sym_2] = ACTIONS(8818), [sym_pragma] = ACTIONS(3), }, + [5153] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + }, [5154] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_2] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [5155] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [anon_sym_COLON] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_2] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [5156] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8801), + [anon_sym_RBRACE] = ACTIONS(8820), [sym_pragma] = ACTIONS(3), }, [5157] = { + [sym__field_assignments1] = STATE(5398), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8820), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8801), }, [5158] = { - [anon_sym_RPAREN] = ACTIONS(8801), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_2] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [5159] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8801), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5399), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5160] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [5161] = { - [anon_sym_using] = ACTIONS(8719), - [anon_sym_SEMI] = ACTIONS(8719), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5400), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8719), - [anon_sym_hiding] = ACTIONS(8719), - [anon_sym_RBRACE] = ACTIONS(8719), - [anon_sym_public] = ACTIONS(8719), - [anon_sym_renaming] = ACTIONS(8719), }, [5162] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_SEMI] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(6079), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6079), - [anon_sym_renaming] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_using] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_hiding] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_public] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8824), + [sym_pragma] = ACTIONS(3), }, [5163] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(8826), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8824), }, [5164] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(8828), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym_name] = ACTIONS(8378), }, [5165] = { - [sym__newline] = ACTIONS(8803), + [anon_sym_COLON] = ACTIONS(8830), + [anon_sym_2] = ACTIONS(8824), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5166] = { - [sym__newline] = ACTIONS(8805), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5406), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5167] = { - [aux_sym_record_constructor_instance_repeat1] = STATE(5167), - [sym__dedent] = ACTIONS(8807), - [sym_comment] = ACTIONS(3), - [anon_sym_constructor] = ACTIONS(8809), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [5168] = { - [aux_sym_record_constructor_instance_repeat1] = STATE(4661), - [sym_comment] = ACTIONS(3), - [anon_sym_constructor] = ACTIONS(8428), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5407), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5169] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(8443), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_2] = ACTIONS(8378), + [anon_sym_RBRACE] = ACTIONS(8435), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), }, [5170] = { - [anon_sym_LBRACE_LBRACE] = ACTIONS(8812), - [anon_sym_] = ACTIONS(8814), - [anon_sym_EQ] = ACTIONS(8814), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8812), - [anon_sym_LBRACE] = ACTIONS(8814), - [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8814), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [5171] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [5172] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8816), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8832), [sym_pragma] = ACTIONS(3), }, [5173] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5398), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [5174] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym__field_assignments1] = STATE(5409), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8832), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(4859), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + }, + [5174] = { + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [5175] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5399), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(43), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5176] = { - [anon_sym_COLON] = ACTIONS(8818), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8834), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8820), [sym_pragma] = ACTIONS(3), }, [5177] = { - [anon_sym_COLON] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8820), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), }, [5178] = { - [anon_sym_COLON] = ACTIONS(8824), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8836), [sym_pragma] = ACTIONS(3), }, [5179] = { - [anon_sym_COLON] = ACTIONS(8826), - [anon_sym_2] = ACTIONS(8820), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), }, [5180] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [anon_sym_in] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), }, [5181] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5405), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8838), + [sym_pragma] = ACTIONS(3), }, [5182] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5406), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(5413), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8838), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5183] = { - [anon_sym_COLON] = ACTIONS(8460), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8452), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), }, [5184] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5414), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5185] = { + [sym__newline] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5019), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5017), + [anon_sym_] = ACTIONS(5019), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8828), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5017), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(5019), + [sym_name] = ACTIONS(5019), }, [5186] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5415), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5187] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(8840), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8842), + [sym_pragma] = ACTIONS(3), }, [5188] = { + [anon_sym_COLON] = ACTIONS(8844), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8830), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8842), }, [5189] = { - [sym__field_assignments1] = STATE(5409), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8830), + [anon_sym_COLON] = ACTIONS(8846), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5190] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(8848), + [anon_sym_2] = ACTIONS(8842), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5191] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5421), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5192] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym__newline] = ACTIONS(3772), + [anon_sym__] = ACTIONS(3774), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3772), + [anon_sym_] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3774), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_LBRACE] = ACTIONS(3774), + [anon_sym_in] = ACTIONS(3774), + [anon_sym_where] = ACTIONS(3774), + [anon_sym_DOT_DOT] = ACTIONS(3772), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(3774), + [sym_name] = ACTIONS(3774), }, [5193] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8832), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5422), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5194] = { - [sym__field_assignments1] = STATE(5411), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8832), + [anon_sym_COLON] = ACTIONS(8508), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8500), [sym_pragma] = ACTIONS(3), }, [5195] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [sym__newline] = ACTIONS(2159), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [anon_sym_quoteTerm] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_in] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_Set] = ACTIONS(2157), }, [5196] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(2697), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [sym__newline] = ACTIONS(2534), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [anon_sym_quoteTerm] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_in] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_Set] = ACTIONS(2532), }, [5197] = { - [sym__newline] = ACTIONS(2184), - [anon_sym_in] = ACTIONS(8834), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8850), [sym_pragma] = ACTIONS(3), }, [5198] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5413), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), - }, - [5199] = { - [sym__newline] = ACTIONS(4859), - [anon_sym__] = ACTIONS(4861), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4859), - [anon_sym_] = ACTIONS(4861), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(4861), - [anon_sym_LPAREN] = ACTIONS(4859), - [anon_sym_LBRACE] = ACTIONS(4861), + [sym__field_assignments1] = STATE(5424), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8850), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(4861), - [anon_sym_DOT_DOT] = ACTIONS(4859), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(4861), - [sym_name] = ACTIONS(4861), + }, + [5199] = { + [sym__newline] = ACTIONS(3078), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [anon_sym_quoteTerm] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_Set] = ACTIONS(3076), }, [5200] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5414), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(2567), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5201] = { - [anon_sym_COLON] = ACTIONS(8836), + [sym__newline] = ACTIONS(1931), + [anon_sym_in] = ACTIONS(8852), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8838), [sym_pragma] = ACTIONS(3), }, [5202] = { - [anon_sym_COLON] = ACTIONS(8840), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8838), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), }, [5203] = { - [anon_sym_COLON] = ACTIONS(8842), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8854), [sym_pragma] = ACTIONS(3), }, [5204] = { - [anon_sym_COLON] = ACTIONS(8844), - [anon_sym_2] = ACTIONS(8838), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), }, [5205] = { - [sym__newline] = ACTIONS(3631), - [anon_sym__] = ACTIONS(3633), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3631), - [anon_sym_] = ACTIONS(3633), - [anon_sym_in] = ACTIONS(3633), - [anon_sym_DOT] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3631), - [anon_sym_LBRACE] = ACTIONS(3633), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3633), - [anon_sym_DOT_DOT] = ACTIONS(3631), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(3633), - [sym_name] = ACTIONS(3633), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), }, [5206] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5420), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8856), + [sym_pragma] = ACTIONS(3), }, [5207] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5421), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__field_assignments1] = STATE(5428), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8856), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5208] = { - [anon_sym_COLON] = ACTIONS(8525), - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8517), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), }, [5209] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - }, - [5210] = { + [sym_import_directive] = STATE(2589), + [aux_sym_module_macro_repeat1] = STATE(2589), + [sym__newline] = ACTIONS(8712), + [anon_sym_using] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8846), [sym_pragma] = ACTIONS(3), + [anon_sym_in] = ACTIONS(8712), + [anon_sym_hiding] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_renaming] = ACTIONS(2830), + }, + [5210] = { + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_renaming] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_using] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_hiding] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_public] = ACTIONS(6550), }, [5211] = { - [sym__newline] = ACTIONS(2067), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_Prop] = ACTIONS(2065), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_rewrite] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5212] = { - [sym__newline] = ACTIONS(2258), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_Prop] = ACTIONS(2256), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_rewrite] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5213] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8848), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8858), }, [5214] = { - [sym__field_assignments1] = STATE(5424), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8848), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8858), [sym_pragma] = ACTIONS(3), }, [5215] = { - [sym__newline] = ACTIONS(3014), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_Prop] = ACTIONS(3012), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5430), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5216] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5217] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5431), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5218] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8850), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5432), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5219] = { - [sym__field_assignments1] = STATE(5426), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8850), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5433), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5220] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), + [anon_sym_RPAREN] = ACTIONS(8858), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5221] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_rewrite] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), - }, - [5222] = { - [sym_import_directive] = STATE(2731), - [aux_sym_module_macro_repeat1] = STATE(2731), - [sym__newline] = ACTIONS(8711), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(8711), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8858), [sym_pragma] = ACTIONS(3), - [anon_sym_hiding] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2872), - [anon_sym_renaming] = ACTIONS(2874), + }, + [5222] = { + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5223] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_renaming] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_using] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_hiding] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_public] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8860), + [sym_pragma] = ACTIONS(3), }, [5224] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_rewrite] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), - }, - [5225] = { - [sym_literal] = STATE(3993), - [sym__typed_bindings1] = STATE(4003), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1597), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4004), - [aux_sym__open_args1_repeat1] = STATE(4005), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1427), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1442), + [sym__atom_no_curly] = STATE(1442), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1443), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4006), - [sym__atom_curly] = STATE(4004), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(3993), + [sym__atoms1] = STATE(1444), + [sym_atom] = STATE(1445), + [sym__typed_bindings1] = STATE(1446), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1427), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1447), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4007), - [anon_sym__] = ACTIONS(6466), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6468), - [anon_sym_let] = ACTIONS(2524), - [sym__const_lambda] = ACTIONS(2526), - [aux_sym_integer_token1] = ACTIONS(6470), - [anon_sym_Set] = ACTIONS(6466), - [anon_sym_LPAREN] = ACTIONS(6472), - [anon_sym_quoteGoal] = ACTIONS(2530), - [anon_sym_unquote] = ACTIONS(6466), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6466), - [anon_sym_quoteTerm] = ACTIONS(6466), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6466), - [sym__const_ellipsis] = ACTIONS(6466), - [anon_sym_record] = ACTIONS(6474), - [anon_sym_QMARK] = ACTIONS(6466), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6476), - [anon_sym_DOT] = ACTIONS(6478), - [anon_sym_LPAREN_PIPE] = ACTIONS(6480), - [anon_sym_LBRACE] = ACTIONS(6482), - [anon_sym_tactic] = ACTIONS(2546), - [aux_sym_string_token1] = ACTIONS(6484), - [sym__const_forall] = ACTIONS(2550), - [anon_sym_Prop] = ACTIONS(6466), - [anon_sym_3] = ACTIONS(6486), + [anon_sym__] = ACTIONS(2360), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2364), + [aux_sym_integer_token1] = ACTIONS(2366), + [sym__const_lambda] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_QMARK] = ACTIONS(2360), + [anon_sym_quoteTerm] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2360), + [anon_sym_quote] = ACTIONS(2360), + [anon_sym_tactic] = ACTIONS(2372), + [anon_sym_Prop] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_record] = ACTIONS(2376), + [sym__const_ellipsis] = ACTIONS(2360), + [anon_sym_LPAREN_PIPE] = ACTIONS(2378), + [anon_sym_] = ACTIONS(2380), + [anon_sym_3] = ACTIONS(2382), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_unquote] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2386), + [sym__const_forall] = ACTIONS(2388), + [aux_sym_string_token1] = ACTIONS(2390), + [anon_sym_Set] = ACTIONS(2360), + [sym_pragma] = ACTIONS(3), + }, + [5225] = { + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5226] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8852), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5227] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8852), + [anon_sym_RBRACE] = ACTIONS(8862), [sym_pragma] = ACTIONS(3), }, [5228] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5428), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8864), }, [5229] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8864), + [sym_pragma] = ACTIONS(3), }, [5230] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5429), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5437), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5231] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5430), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5232] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5431), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5438), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5233] = { - [anon_sym_RPAREN] = ACTIONS(8852), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5439), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5234] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8852), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5440), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5235] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8864), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5236] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [5237] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8854), + [anon_sym_RBRACE] = ACTIONS(8864), [sym_pragma] = ACTIONS(3), }, + [5237] = { + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, [5238] = { - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8866), + [sym_pragma] = ACTIONS(3), }, [5239] = { - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_EQ] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), + [sym_let] = STATE(43), + [sym_literal] = STATE(3965), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(3975), + [sym__atom_no_curly] = STATE(3975), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(3976), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(3977), + [sym_atom] = STATE(3978), + [sym__typed_bindings1] = STATE(3979), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(3965), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1466), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(6305), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6307), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2394), + [aux_sym_integer_token1] = ACTIONS(6309), + [sym__const_lambda] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_quoteTerm] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6305), + [anon_sym_quote] = ACTIONS(6305), + [anon_sym_tactic] = ACTIONS(2406), + [anon_sym_Prop] = ACTIONS(6305), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_record] = ACTIONS(6313), + [sym__const_ellipsis] = ACTIONS(6305), + [anon_sym_LPAREN_PIPE] = ACTIONS(6315), + [anon_sym_] = ACTIONS(6317), + [anon_sym_3] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(6321), + [anon_sym_unquote] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(6323), + [sym__const_forall] = ACTIONS(2420), + [aux_sym_string_token1] = ACTIONS(6325), + [anon_sym_Set] = ACTIONS(6305), + [sym_pragma] = ACTIONS(3), }, [5240] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8856), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5241] = { - [sym__field_assignments1] = STATE(5434), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8856), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [5242] = { - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_EQ] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [5243] = { - [sym_literal] = STATE(1601), - [sym__typed_bindings1] = STATE(1616), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1617), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1618), - [aux_sym__open_args1_repeat1] = STATE(1619), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1620), - [sym__atom_curly] = STATE(1618), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1601), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1621), - [anon_sym__] = ACTIONS(2554), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2558), - [sym__const_lambda] = ACTIONS(2560), - [aux_sym_integer_token1] = ACTIONS(2562), - [anon_sym_Set] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_quoteGoal] = ACTIONS(2566), - [anon_sym_unquote] = ACTIONS(2554), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2554), - [anon_sym_quoteTerm] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2554), - [sym__const_ellipsis] = ACTIONS(2554), - [anon_sym_record] = ACTIONS(2568), - [anon_sym_QMARK] = ACTIONS(2554), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2570), - [anon_sym_DOT] = ACTIONS(2572), - [anon_sym_LPAREN_PIPE] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_tactic] = ACTIONS(2578), - [aux_sym_string_token1] = ACTIONS(2580), - [sym__const_forall] = ACTIONS(2582), - [anon_sym_Prop] = ACTIONS(2554), - [anon_sym_3] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), }, [5244] = { + [sym__field_assignments1] = STATE(5443), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8868), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8858), }, [5245] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8858), + [sym__newline] = ACTIONS(3078), [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [5246] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5436), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8870), }, [5247] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_EQ] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8870), + [sym_pragma] = ACTIONS(3), }, [5248] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5437), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5445), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5249] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5438), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5250] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5439), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5446), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5251] = { - [anon_sym_RPAREN] = ACTIONS(8858), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5447), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5252] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8858), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5448), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5253] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5254] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [5255] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8860), + [anon_sym_RBRACE] = ACTIONS(8870), [sym_pragma] = ACTIONS(3), }, - [5256] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [5255] = { + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, - [5257] = { + [5256] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8862), + [anon_sym_RBRACE] = ACTIONS(8872), [sym_pragma] = ACTIONS(3), }, - [5258] = { - [sym_literal] = STATE(1632), - [sym__typed_bindings1] = STATE(1647), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1648), - [sym__let_in] = STATE(37), + [5257] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1649), - [aux_sym__open_args1_repeat1] = STATE(1650), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1467), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1482), + [sym__atom_no_curly] = STATE(1482), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1483), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1651), - [sym__atom_curly] = STATE(1649), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1632), + [sym__atoms1] = STATE(1484), + [sym_atom] = STATE(1485), + [sym__typed_bindings1] = STATE(1486), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1467), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1487), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1652), - [anon_sym__] = ACTIONS(2594), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2598), - [sym__const_lambda] = ACTIONS(2600), - [aux_sym_integer_token1] = ACTIONS(2602), - [anon_sym_Set] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_quoteGoal] = ACTIONS(2606), - [anon_sym_unquote] = ACTIONS(2594), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2594), - [anon_sym_quoteTerm] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2594), - [sym__const_ellipsis] = ACTIONS(2594), - [anon_sym_record] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2594), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2610), - [anon_sym_DOT] = ACTIONS(2612), - [anon_sym_LPAREN_PIPE] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_tactic] = ACTIONS(2618), - [aux_sym_string_token1] = ACTIONS(2620), - [sym__const_forall] = ACTIONS(2622), - [anon_sym_Prop] = ACTIONS(2594), - [anon_sym_3] = ACTIONS(2624), + [anon_sym__] = ACTIONS(2424), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2428), + [aux_sym_integer_token1] = ACTIONS(2430), + [sym__const_lambda] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2424), + [anon_sym_quoteTerm] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2424), + [anon_sym_quote] = ACTIONS(2424), + [anon_sym_tactic] = ACTIONS(2436), + [anon_sym_Prop] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_record] = ACTIONS(2440), + [sym__const_ellipsis] = ACTIONS(2424), + [anon_sym_LPAREN_PIPE] = ACTIONS(2442), + [anon_sym_] = ACTIONS(2444), + [anon_sym_3] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_unquote] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2450), + [sym__const_forall] = ACTIONS(2452), + [aux_sym_string_token1] = ACTIONS(2454), + [anon_sym_Set] = ACTIONS(2424), + [sym_pragma] = ACTIONS(3), + }, + [5258] = { + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5259] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8864), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5260] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8864), + [anon_sym_RBRACE] = ACTIONS(8874), [sym_pragma] = ACTIONS(3), }, [5261] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5443), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8876), }, [5262] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8876), + [sym_pragma] = ACTIONS(3), }, [5263] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5444), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5452), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5264] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5445), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym__newline] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_with] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5265] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5446), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5453), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5266] = { - [anon_sym_RPAREN] = ACTIONS(8864), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5454), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5267] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8864), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5455), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5268] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8876), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5269] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [5270] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8866), + [anon_sym_RBRACE] = ACTIONS(8876), [sym_pragma] = ACTIONS(3), }, - [5271] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [5270] = { + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, - [5272] = { + [5271] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8868), + [anon_sym_RBRACE] = ACTIONS(8878), [sym_pragma] = ACTIONS(3), }, - [5273] = { - [sym_literal] = STATE(4132), - [sym__typed_bindings1] = STATE(4142), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1668), - [sym__let_in] = STATE(37), + [5272] = { [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(4143), - [aux_sym__open_args1_repeat1] = STATE(4144), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(4058), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(4068), + [sym__atom_no_curly] = STATE(4068), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(4069), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(4145), - [sym__atom_curly] = STATE(4143), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(4132), + [sym__atoms1] = STATE(4070), + [sym_atom] = STATE(4071), + [sym__typed_bindings1] = STATE(4072), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(4058), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1506), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(4146), - [anon_sym__] = ACTIONS(6608), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6610), - [anon_sym_let] = ACTIONS(2628), - [sym__const_lambda] = ACTIONS(2630), - [aux_sym_integer_token1] = ACTIONS(6612), - [anon_sym_Set] = ACTIONS(6608), - [anon_sym_LPAREN] = ACTIONS(6614), - [anon_sym_quoteGoal] = ACTIONS(2634), - [anon_sym_unquote] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(6608), - [anon_sym_quoteTerm] = ACTIONS(6608), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(6608), - [sym__const_ellipsis] = ACTIONS(6608), - [anon_sym_record] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6608), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_LPAREN_PIPE] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6624), - [anon_sym_tactic] = ACTIONS(2650), - [aux_sym_string_token1] = ACTIONS(6626), - [sym__const_forall] = ACTIONS(2654), - [anon_sym_Prop] = ACTIONS(6608), - [anon_sym_3] = ACTIONS(6628), + [anon_sym__] = ACTIONS(6403), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6405), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2458), + [aux_sym_integer_token1] = ACTIONS(6407), + [sym__const_lambda] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(6409), + [anon_sym_QMARK] = ACTIONS(6403), + [anon_sym_quoteTerm] = ACTIONS(6403), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(6403), + [anon_sym_quote] = ACTIONS(6403), + [anon_sym_tactic] = ACTIONS(2470), + [anon_sym_Prop] = ACTIONS(6403), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_record] = ACTIONS(6411), + [sym__const_ellipsis] = ACTIONS(6403), + [anon_sym_LPAREN_PIPE] = ACTIONS(6413), + [anon_sym_] = ACTIONS(6415), + [anon_sym_3] = ACTIONS(6417), + [anon_sym_DOT] = ACTIONS(6419), + [anon_sym_unquote] = ACTIONS(6403), + [anon_sym_LBRACE] = ACTIONS(6421), + [sym__const_forall] = ACTIONS(2484), + [aux_sym_string_token1] = ACTIONS(6423), + [anon_sym_Set] = ACTIONS(6403), + [sym_pragma] = ACTIONS(3), + }, + [5273] = { + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5274] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8870), + [anon_sym_COLON] = ACTIONS(2157), + [sym__newline] = ACTIONS(2159), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LPAREN_PIPE] = ACTIONS(2159), + [sym_qualified_name] = ACTIONS(2157), + [anon_sym_quote] = ACTIONS(2157), + [sym__const_right_arrow] = ACTIONS(2157), + [anon_sym_tactic] = ACTIONS(2157), + [sym__const_ellipsis] = ACTIONS(2157), + [anon_sym_record] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_] = ACTIONS(2157), + [anon_sym_Prop] = ACTIONS(2157), + [anon_sym_3] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2159), + [sym__const_lambda] = ACTIONS(2157), + [anon_sym_quoteGoal] = ACTIONS(2157), + [aux_sym_integer_token1] = ACTIONS(2157), + [anon_sym_do] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_quoteTerm] = ACTIONS(2157), + [anon_sym_where] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_unquote] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [sym__const_forall] = ACTIONS(2157), + [aux_sym_string_token1] = ACTIONS(2159), + [anon_sym_in] = ACTIONS(2157), + [anon_sym_Set] = ACTIONS(2157), + [anon_sym_module] = ACTIONS(2157), }, [5275] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8870), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(2532), + [sym__newline] = ACTIONS(2534), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LPAREN_PIPE] = ACTIONS(2534), + [sym_qualified_name] = ACTIONS(2532), + [anon_sym_quote] = ACTIONS(2532), + [sym__const_right_arrow] = ACTIONS(2532), + [anon_sym_tactic] = ACTIONS(2532), + [sym__const_ellipsis] = ACTIONS(2532), + [anon_sym_record] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_] = ACTIONS(2532), + [anon_sym_Prop] = ACTIONS(2532), + [anon_sym_3] = ACTIONS(2532), + [anon_sym__] = ACTIONS(2532), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2534), + [sym__const_lambda] = ACTIONS(2532), + [anon_sym_quoteGoal] = ACTIONS(2532), + [aux_sym_integer_token1] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_QMARK] = ACTIONS(2532), + [anon_sym_quoteTerm] = ACTIONS(2532), + [anon_sym_where] = ACTIONS(2532), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2532), + [anon_sym_unquote] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [sym__const_forall] = ACTIONS(2532), + [aux_sym_string_token1] = ACTIONS(2534), + [anon_sym_in] = ACTIONS(2532), + [anon_sym_Set] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), }, [5276] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5450), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8880), + [sym_pragma] = ACTIONS(3), }, [5277] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym__newline] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_with] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [sym__field_assignments1] = STATE(5458), + [sym_field_assignment] = STATE(1582), + [sym_qualified_name] = ACTIONS(3831), + [anon_sym_RBRACE] = ACTIONS(8880), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5278] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5451), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(3076), + [sym__newline] = ACTIONS(3078), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_LPAREN_PIPE] = ACTIONS(3078), + [sym_qualified_name] = ACTIONS(3076), + [anon_sym_quote] = ACTIONS(3076), + [sym__const_right_arrow] = ACTIONS(3076), + [anon_sym_tactic] = ACTIONS(3076), + [sym__const_ellipsis] = ACTIONS(3076), + [anon_sym_record] = ACTIONS(3076), + [anon_sym_let] = ACTIONS(3076), + [anon_sym_with] = ACTIONS(3076), + [anon_sym_] = ACTIONS(3076), + [anon_sym_Prop] = ACTIONS(3076), + [anon_sym_3] = ACTIONS(3076), + [anon_sym__] = ACTIONS(3076), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3078), + [sym__const_lambda] = ACTIONS(3076), + [anon_sym_quoteGoal] = ACTIONS(3076), + [aux_sym_integer_token1] = ACTIONS(3076), + [anon_sym_do] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_quoteTerm] = ACTIONS(3076), + [anon_sym_where] = ACTIONS(3076), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_unquote] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [sym__const_forall] = ACTIONS(3076), + [aux_sym_string_token1] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_Set] = ACTIONS(3076), + [anon_sym_module] = ACTIONS(3076), }, [5279] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5452), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8882), }, [5280] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5453), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_2] = ACTIONS(8882), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5281] = { - [anon_sym_RPAREN] = ACTIONS(8870), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5460), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5282] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8870), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6797), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [sym__newline] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_module] = ACTIONS(6797), }, [5283] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5461), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5284] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5462), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5285] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8872), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5463), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5286] = { - [anon_sym_COLON] = ACTIONS(2065), - [sym__newline] = ACTIONS(2067), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2065), - [sym_qualified_name] = ACTIONS(2065), - [anon_sym_quoteTerm] = ACTIONS(2065), - [sym__const_right_arrow] = ACTIONS(2065), - [anon_sym_do] = ACTIONS(2065), - [sym__const_ellipsis] = ACTIONS(2065), - [anon_sym_record] = ACTIONS(2065), - [anon_sym_QMARK] = ACTIONS(2065), - [anon_sym_with] = ACTIONS(2065), - [anon_sym_] = ACTIONS(2065), - [anon_sym_quote] = ACTIONS(2065), - [anon_sym__] = ACTIONS(2065), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2067), - [sym__const_lambda] = ACTIONS(2065), - [anon_sym_in] = ACTIONS(2065), - [aux_sym_integer_token1] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_Set] = ACTIONS(2065), - [anon_sym_unquote] = ACTIONS(2065), - [anon_sym_where] = ACTIONS(2065), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_DOT] = ACTIONS(2065), - [anon_sym_LPAREN_PIPE] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2065), - [sym__const_forall] = ACTIONS(2065), - [aux_sym_string_token1] = ACTIONS(2067), - [anon_sym_tactic] = ACTIONS(2065), - [anon_sym_Prop] = ACTIONS(2065), - [anon_sym_3] = ACTIONS(2065), - [anon_sym_module] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(8882), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5287] = { - [anon_sym_COLON] = ACTIONS(2256), - [sym__newline] = ACTIONS(2258), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(2256), - [sym_qualified_name] = ACTIONS(2256), - [anon_sym_quoteTerm] = ACTIONS(2256), - [sym__const_right_arrow] = ACTIONS(2256), - [anon_sym_do] = ACTIONS(2256), - [sym__const_ellipsis] = ACTIONS(2256), - [anon_sym_record] = ACTIONS(2256), - [anon_sym_QMARK] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2256), - [anon_sym_] = ACTIONS(2256), - [anon_sym_quote] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2256), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2258), - [sym__const_lambda] = ACTIONS(2256), - [anon_sym_in] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_Set] = ACTIONS(2256), - [anon_sym_unquote] = ACTIONS(2256), - [anon_sym_where] = ACTIONS(2256), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_LPAREN_PIPE] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2256), - [sym__const_forall] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [anon_sym_tactic] = ACTIONS(2256), - [anon_sym_Prop] = ACTIONS(2256), - [anon_sym_3] = ACTIONS(2256), - [anon_sym_module] = ACTIONS(2256), - }, - [5288] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8874), + [anon_sym_RBRACE] = ACTIONS(8882), [sym_pragma] = ACTIONS(3), }, + [5288] = { + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), + }, [5289] = { - [sym__field_assignments1] = STATE(5456), - [sym_field_assignment] = STATE(1420), - [sym_qualified_name] = ACTIONS(3647), - [anon_sym_RBRACE] = ACTIONS(8874), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8884), [sym_pragma] = ACTIONS(3), }, [5290] = { - [anon_sym_COLON] = ACTIONS(3012), - [sym__newline] = ACTIONS(3014), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3012), - [sym_qualified_name] = ACTIONS(3012), - [anon_sym_quoteTerm] = ACTIONS(3012), - [sym__const_right_arrow] = ACTIONS(3012), - [anon_sym_do] = ACTIONS(3012), - [sym__const_ellipsis] = ACTIONS(3012), - [anon_sym_record] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_with] = ACTIONS(3012), - [anon_sym_] = ACTIONS(3012), - [anon_sym_quote] = ACTIONS(3012), - [anon_sym__] = ACTIONS(3012), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3014), - [sym__const_lambda] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3012), - [aux_sym_integer_token1] = ACTIONS(3012), - [anon_sym_let] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_Set] = ACTIONS(3012), - [anon_sym_unquote] = ACTIONS(3012), - [anon_sym_where] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3012), - [anon_sym_DOT] = ACTIONS(3012), - [anon_sym_LPAREN_PIPE] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [sym__const_forall] = ACTIONS(3012), - [aux_sym_string_token1] = ACTIONS(3014), - [anon_sym_tactic] = ACTIONS(3012), - [anon_sym_Prop] = ACTIONS(3012), - [anon_sym_3] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - }, - [5291] = { - [sym_literal] = STATE(1672), - [sym__typed_bindings1] = STATE(1687), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(1688), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(1689), - [aux_sym__open_args1_repeat1] = STATE(1690), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(1507), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(1522), + [sym__atom_no_curly] = STATE(1522), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(1523), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(1691), - [sym__atom_curly] = STATE(1689), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1672), + [sym__atoms1] = STATE(1524), + [sym_atom] = STATE(1525), + [sym__typed_bindings1] = STATE(1526), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1507), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(1527), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(1692), - [anon_sym__] = ACTIONS(2658), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2662), - [sym__const_lambda] = ACTIONS(2664), - [aux_sym_integer_token1] = ACTIONS(2666), - [anon_sym_Set] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_quoteGoal] = ACTIONS(2670), - [anon_sym_unquote] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2658), - [anon_sym_quoteTerm] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(2658), - [sym__const_ellipsis] = ACTIONS(2658), - [anon_sym_record] = ACTIONS(2672), - [anon_sym_QMARK] = ACTIONS(2658), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LPAREN_PIPE] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_tactic] = ACTIONS(2682), - [aux_sym_string_token1] = ACTIONS(2684), - [sym__const_forall] = ACTIONS(2686), - [anon_sym_Prop] = ACTIONS(2658), - [anon_sym_3] = ACTIONS(2688), + [anon_sym__] = ACTIONS(2488), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(2492), + [aux_sym_integer_token1] = ACTIONS(2494), + [sym__const_lambda] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_QMARK] = ACTIONS(2488), + [anon_sym_quoteTerm] = ACTIONS(2488), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(2488), + [anon_sym_quote] = ACTIONS(2488), + [anon_sym_tactic] = ACTIONS(2500), + [anon_sym_Prop] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_record] = ACTIONS(2504), + [sym__const_ellipsis] = ACTIONS(2488), + [anon_sym_LPAREN_PIPE] = ACTIONS(2506), + [anon_sym_] = ACTIONS(2508), + [anon_sym_3] = ACTIONS(2510), + [anon_sym_DOT] = ACTIONS(2512), + [anon_sym_unquote] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2514), + [sym__const_forall] = ACTIONS(2516), + [aux_sym_string_token1] = ACTIONS(2518), + [anon_sym_Set] = ACTIONS(2488), + [sym_pragma] = ACTIONS(3), + }, + [5291] = { + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5292] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8876), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5293] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8876), + [anon_sym_RBRACE] = ACTIONS(8886), [sym_pragma] = ACTIONS(3), }, [5294] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5458), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_using] = ACTIONS(8720), + [anon_sym_SEMI] = ACTIONS(8720), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(8720), + [anon_sym_hiding] = ACTIONS(8720), + [anon_sym_RBRACE] = ACTIONS(8720), + [anon_sym_public] = ACTIONS(8720), + [anon_sym_renaming] = ACTIONS(8720), }, [5295] = { - [anon_sym_COLON] = ACTIONS(6710), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [sym__newline] = ACTIONS(6708), - [anon_sym_in] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LBRACE] = ACTIONS(6710), - [anon_sym_module] = ACTIONS(6710), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6552), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6552), + [anon_sym_renaming] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_using] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_hiding] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_public] = ACTIONS(6550), }, [5296] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5459), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5297] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5460), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym_name] = ACTIONS(8417), }, [5298] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5461), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), + [sym__newline] = ACTIONS(8888), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5299] = { - [anon_sym_RPAREN] = ACTIONS(8876), + [sym__newline] = ACTIONS(8890), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5300] = { + [aux_sym_record_constructor_instance_repeat1] = STATE(5300), + [sym__dedent] = ACTIONS(8892), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8876), + [anon_sym_constructor] = ACTIONS(8894), [sym_pragma] = ACTIONS(3), }, [5301] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [aux_sym_record_constructor_instance_repeat1] = STATE(4910), + [sym_comment] = ACTIONS(3), + [anon_sym_constructor] = ACTIONS(8686), + [sym_pragma] = ACTIONS(3), }, [5302] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_4] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5303] = { + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8878), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_2] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5304] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8897), + [anon_sym_] = ACTIONS(8899), + [anon_sym_EQ] = ACTIONS(8899), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8897), + [anon_sym_LBRACE] = ACTIONS(8899), + [sym_pragma] = ACTIONS(3), + [sym_name] = ACTIONS(8899), }, [5305] = { + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8880), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5306] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_quoteGoal] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8901), + [sym_pragma] = ACTIONS(3), }, [5307] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8882), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8901), }, [5308] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_SEMI] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), + [anon_sym_RPAREN] = ACTIONS(8901), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_RBRACE] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [5309] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8884), + [anon_sym_2] = ACTIONS(8901), [sym_pragma] = ACTIONS(3), }, [5310] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8884), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5311] = { - [anon_sym_RPAREN] = ACTIONS(8884), + [anon_sym_SEMI] = ACTIONS(8903), + [anon_sym_RPAREN] = ACTIONS(8903), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5312] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8884), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5313] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(1756), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(1758), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(1759), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1760), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2752), - [sym__const_lambda] = ACTIONS(2754), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2756), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2760), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2762), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8905), + [sym_pragma] = ACTIONS(3), }, [5314] = { + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_SEMI] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8886), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [anon_sym_RBRACE] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5315] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8886), + [anon_sym_RBRACE] = ACTIONS(8907), [sym_pragma] = ACTIONS(3), }, [5316] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5467), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8907), }, [5317] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_SEMI] = ACTIONS(6710), - [anon_sym_] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(8907), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [anon_sym_RBRACE] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [5318] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5468), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8907), + [sym_pragma] = ACTIONS(3), }, [5319] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5469), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8909), }, [5320] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5470), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [anon_sym_2] = ACTIONS(8909), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5321] = { - [anon_sym_RPAREN] = ACTIONS(8886), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5471), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5322] = { + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym_] = ACTIONS(6797), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8886), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [anon_sym_RBRACE] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5323] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(4269), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(4270), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(4271), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(4272), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(2780), - [sym__const_lambda] = ACTIONS(2782), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(2786), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(6792), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(2802), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(2806), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5472), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5324] = { - [anon_sym_SEMI] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5473), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5325] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5474), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5326] = { - [anon_sym_SEMI] = ACTIONS(8888), - [anon_sym_RPAREN] = ACTIONS(8888), + [anon_sym_RPAREN] = ACTIONS(8909), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), }, [5327] = { - [sym_literal] = STATE(1885), - [sym__typed_bindings1] = STATE(1900), - [sym_expr] = STATE(4570), - [aux_sym__with_expr_repeat1] = STATE(1902), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(1903), - [aux_sym__open_args1_repeat1] = STATE(1904), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(1905), - [sym__atom_curly] = STATE(1903), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(1885), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(1906), - [anon_sym__] = ACTIONS(2922), - [anon_sym_LBRACE_LBRACE] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2926), - [sym__const_lambda] = ACTIONS(2928), - [aux_sym_integer_token1] = ACTIONS(2930), - [anon_sym_Set] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_quoteGoal] = ACTIONS(2934), - [anon_sym_unquote] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(2922), - [anon_sym_quoteTerm] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(2922), - [sym__const_ellipsis] = ACTIONS(2922), - [anon_sym_record] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2922), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2940), - [anon_sym_LPAREN_PIPE] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_tactic] = ACTIONS(2946), - [aux_sym_string_token1] = ACTIONS(2948), - [sym__const_forall] = ACTIONS(2950), - [anon_sym_Prop] = ACTIONS(2922), - [anon_sym_3] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8909), + [sym_pragma] = ACTIONS(3), }, [5328] = { - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(1835), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1836), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(1837), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1838), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2896), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2900), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2906), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8890), }, [5329] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8890), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(4301), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(4302), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(4303), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(4304), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(2920), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(2932), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(6875), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(2948), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5330] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5472), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [anon_sym_SEMI] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5331] = { - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5332] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5473), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8911), }, [5333] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5474), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8911), + [sym_pragma] = ACTIONS(3), }, [5334] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5475), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5476), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5335] = { - [anon_sym_RPAREN] = ACTIONS(8890), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5336] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8890), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5477), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), }, [5337] = { + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5478), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), }, [5338] = { - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5479), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), + [sym_pragma] = ACTIONS(3), }, [5339] = { + [anon_sym_RPAREN] = ACTIONS(8911), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8892), [sym_pragma] = ACTIONS(3), }, [5340] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8911), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), }, [5341] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8894), - [sym_pragma] = ACTIONS(3), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5342] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), + [anon_sym_RBRACE] = ACTIONS(8913), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_PIPE_RPAREN] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), }, [5343] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), + [sym_let] = STATE(80), + [sym_literal] = STATE(1938), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(1953), + [sym__atom_no_curly] = STATE(1953), + [sym_expr] = STATE(4614), + [aux_sym__open_args1_repeat1] = STATE(1955), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(1956), + [sym_atom] = STATE(1957), + [sym__typed_bindings1] = STATE(1958), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(1938), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(1959), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(3028), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3030), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(3032), + [aux_sym_integer_token1] = ACTIONS(3034), + [sym__const_lambda] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_quoteTerm] = ACTIONS(3028), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3028), + [anon_sym_quote] = ACTIONS(3028), + [anon_sym_tactic] = ACTIONS(3040), + [anon_sym_Prop] = ACTIONS(3028), + [anon_sym_let] = ACTIONS(3042), + [anon_sym_record] = ACTIONS(3044), + [sym__const_ellipsis] = ACTIONS(3028), + [anon_sym_LPAREN_PIPE] = ACTIONS(3046), + [anon_sym_] = ACTIONS(3048), + [anon_sym_3] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_unquote] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3054), + [sym__const_forall] = ACTIONS(3056), + [aux_sym_string_token1] = ACTIONS(3058), + [anon_sym_Set] = ACTIONS(3028), [sym_pragma] = ACTIONS(3), - [sym_name] = ACTIONS(8378), }, [5344] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym_name] = ACTIONS(8378), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5345] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5346] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8896), + [anon_sym_RBRACE] = ACTIONS(8915), [sym_pragma] = ACTIONS(3), }, [5347] = { + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8896), + [sym_name] = ACTIONS(8417), }, [5348] = { - [anon_sym_RPAREN] = ACTIONS(8896), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym_name] = ACTIONS(8417), }, [5349] = { + [anon_sym_module] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym__newline] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8896), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5350] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8917), + [sym_pragma] = ACTIONS(3), }, [5351] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8917), }, [5352] = { + [anon_sym_RPAREN] = ACTIONS(8917), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8898), [sym_pragma] = ACTIONS(3), }, [5353] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), - }, - [5354] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8900), + [anon_sym_2] = ACTIONS(8917), [sym_pragma] = ACTIONS(3), }, + [5354] = { + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), + }, [5355] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8900), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5356] = { - [anon_sym_RPAREN] = ACTIONS(8900), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5357] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8900), + [anon_sym_RBRACE] = ACTIONS(8919), [sym_pragma] = ACTIONS(3), }, [5358] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8919), }, [5359] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8919), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5360] = { - [anon_sym_module] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym__newline] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_2] = ACTIONS(8919), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [5361] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8902), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5362] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8902), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5363] = { - [anon_sym_RPAREN] = ACTIONS(8902), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8921), [sym_pragma] = ACTIONS(3), }, [5364] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8902), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5365] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8923), + [sym_pragma] = ACTIONS(3), }, [5366] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8923), }, [5367] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym__newline] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [anon_sym_RPAREN] = ACTIONS(8923), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5368] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8904), + [anon_sym_2] = ACTIONS(8923), [sym_pragma] = ACTIONS(3), }, [5369] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8904), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5370] = { - [anon_sym_RPAREN] = ACTIONS(8904), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5371] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8904), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym__newline] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5372] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8925), + [sym_pragma] = ACTIONS(3), }, [5373] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8925), }, [5374] = { + [anon_sym_RPAREN] = ACTIONS(8925), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8906), [sym_pragma] = ACTIONS(3), }, [5375] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym__newline] = ACTIONS(7418), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), - }, - [5376] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8908), + [anon_sym_2] = ACTIONS(8925), [sym_pragma] = ACTIONS(3), }, + [5376] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), + }, [5377] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8908), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5378] = { - [anon_sym_RPAREN] = ACTIONS(8908), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8927), [sym_pragma] = ACTIONS(3), }, [5379] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8908), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym__newline] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5380] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8929), + [sym_pragma] = ACTIONS(3), }, [5381] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8929), }, [5382] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(8376), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_RBRACE] = ACTIONS(8378), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), + [anon_sym_RPAREN] = ACTIONS(8929), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5383] = { - [anon_sym_COLON] = ACTIONS(3989), - [anon_sym_SEMI] = ACTIONS(3991), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_RBRACE] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_RBRACE_RBRACE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_3] = ACTIONS(3989), - }, - [5384] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8910), + [anon_sym_2] = ACTIONS(8929), [sym_pragma] = ACTIONS(3), }, + [5384] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), + }, [5385] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_2] = ACTIONS(8378), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5386] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_2] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5387] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8912), + [anon_sym_RBRACE] = ACTIONS(8931), [sym_pragma] = ACTIONS(3), }, [5388] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8931), }, [5389] = { + [anon_sym_RPAREN] = ACTIONS(8931), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8914), [sym_pragma] = ACTIONS(3), }, [5390] = { [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8931), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8914), }, [5391] = { - [anon_sym_RPAREN] = ACTIONS(8914), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5392] = { - [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8914), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5393] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(8415), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [anon_sym_RBRACE] = ACTIONS(8417), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), }, [5394] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(4490), + [anon_sym_SEMI] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_RBRACE] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_RBRACE_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), }, [5395] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), + [anon_sym_RBRACE] = ACTIONS(8933), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), }, [5396] = { - [sym__dedent] = ACTIONS(8916), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_constructor] = ACTIONS(8916), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_2] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5397] = { - [sym_literal] = STATE(2651), - [sym__typed_bindings1] = STATE(2666), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(2667), - [sym__let_in] = STATE(37), - [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2668), - [aux_sym__open_args1_repeat1] = STATE(2669), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2670), - [sym__atom_curly] = STATE(2668), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2651), - [sym__application] = STATE(43), - [sym__expr2] = STATE(43), - [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2671), - [anon_sym__] = ACTIONS(4249), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4253), - [sym__const_lambda] = ACTIONS(4255), - [aux_sym_integer_token1] = ACTIONS(4257), - [anon_sym_Set] = ACTIONS(4249), - [anon_sym_LPAREN] = ACTIONS(4259), - [anon_sym_quoteGoal] = ACTIONS(4261), - [anon_sym_unquote] = ACTIONS(4249), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4249), - [anon_sym_quoteTerm] = ACTIONS(4249), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4249), - [sym__const_ellipsis] = ACTIONS(4249), - [anon_sym_record] = ACTIONS(4263), - [anon_sym_QMARK] = ACTIONS(4249), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4265), - [anon_sym_DOT] = ACTIONS(4267), - [anon_sym_LPAREN_PIPE] = ACTIONS(4269), - [anon_sym_LBRACE] = ACTIONS(4271), - [anon_sym_tactic] = ACTIONS(4273), - [aux_sym_string_token1] = ACTIONS(4275), - [sym__const_forall] = ACTIONS(4277), - [anon_sym_Prop] = ACTIONS(4249), - [anon_sym_3] = ACTIONS(4279), + [anon_sym_COLON] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_2] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5398] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8935), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8918), }, [5399] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8918), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8937), }, [5400] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5489), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8937), + [sym_pragma] = ACTIONS(3), }, [5401] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5493), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(6708), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [5402] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5490), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5403] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5491), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5494), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5404] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5492), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5495), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5405] = { - [anon_sym_RPAREN] = ACTIONS(8918), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5496), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5406] = { + [anon_sym_RPAREN] = ACTIONS(8937), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8918), [sym_pragma] = ACTIONS(3), }, [5407] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8937), + [sym_pragma] = ACTIONS(3), }, [5408] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5409] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8920), + [anon_sym_RBRACE] = ACTIONS(8939), [sym_pragma] = ACTIONS(3), }, [5410] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - }, - [5411] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8922), - [sym_pragma] = ACTIONS(3), - }, - [5412] = { - [sym_literal] = STATE(2674), - [sym__typed_bindings1] = STATE(2689), - [sym_expr] = STATE(3928), - [aux_sym__with_expr_repeat1] = STATE(2690), - [sym__let_in] = STATE(37), [sym_let] = STATE(43), - [sym__with_expr] = STATE(930), - [sym__atom_no_curly] = STATE(2691), - [aux_sym__open_args1_repeat1] = STATE(2692), - [aux_sym__typed_bindings1_repeat1] = STATE(72), + [sym_literal] = STATE(2514), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2529), + [sym__atom_no_curly] = STATE(2529), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(2530), + [sym__expr2] = STATE(43), [sym_do] = STATE(43), - [sym__let_only] = STATE(37), - [sym_atom] = STATE(2693), - [sym__atom_curly] = STATE(2691), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(2674), + [sym__atoms1] = STATE(2531), + [sym_atom] = STATE(2532), + [sym__typed_bindings1] = STATE(2533), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2514), + [sym__with_expr] = STATE(950), [sym__application] = STATE(43), - [sym__expr2] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2534), [sym_lambda] = STATE(43), - [sym__atoms1] = STATE(2694), - [anon_sym__] = ACTIONS(4285), - [anon_sym_LBRACE_LBRACE] = ACTIONS(4287), - [anon_sym_let] = ACTIONS(4289), - [sym__const_lambda] = ACTIONS(4291), - [aux_sym_integer_token1] = ACTIONS(4293), - [anon_sym_Set] = ACTIONS(4285), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym_quoteGoal] = ACTIONS(4297), - [anon_sym_unquote] = ACTIONS(4285), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(4285), - [anon_sym_quoteTerm] = ACTIONS(4285), - [anon_sym_do] = ACTIONS(17), - [anon_sym_quote] = ACTIONS(4285), - [sym__const_ellipsis] = ACTIONS(4285), - [anon_sym_record] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4285), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LPAREN_PIPE] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_tactic] = ACTIONS(4309), - [aux_sym_string_token1] = ACTIONS(4311), - [sym__const_forall] = ACTIONS(4313), - [anon_sym_Prop] = ACTIONS(4285), - [anon_sym_3] = ACTIONS(4315), + [anon_sym__] = ACTIONS(3895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3897), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3899), + [aux_sym_integer_token1] = ACTIONS(3901), + [sym__const_lambda] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3895), + [anon_sym_quoteTerm] = ACTIONS(3895), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3895), + [anon_sym_quote] = ACTIONS(3895), + [anon_sym_tactic] = ACTIONS(3907), + [anon_sym_Prop] = ACTIONS(3895), + [anon_sym_let] = ACTIONS(3909), + [anon_sym_record] = ACTIONS(3911), + [sym__const_ellipsis] = ACTIONS(3895), + [anon_sym_LPAREN_PIPE] = ACTIONS(3913), + [anon_sym_] = ACTIONS(3915), + [anon_sym_3] = ACTIONS(3917), + [anon_sym_DOT] = ACTIONS(3919), + [anon_sym_unquote] = ACTIONS(3895), + [anon_sym_LBRACE] = ACTIONS(3921), + [sym__const_forall] = ACTIONS(3923), + [aux_sym_string_token1] = ACTIONS(3925), + [anon_sym_Set] = ACTIONS(3895), + [sym_pragma] = ACTIONS(3), + }, + [5411] = { + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + }, + [5412] = { + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), }, [5413] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8941), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8924), }, [5414] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8924), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8943), }, [5415] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(240), - [sym_expr] = STATE(5496), - [aux_sym__with_expr_repeat1] = STATE(242), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(243), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(244), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(349), - [sym__const_lambda] = ACTIONS(351), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(345), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(353), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(355), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(357), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8943), + [sym_pragma] = ACTIONS(3), }, [5416] = { - [sym__newline] = ACTIONS(6708), - [anon_sym__] = ACTIONS(6710), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6708), - [anon_sym_] = ACTIONS(6710), - [anon_sym_in] = ACTIONS(6710), - [anon_sym_DOT] = ACTIONS(6710), - [anon_sym_LPAREN] = ACTIONS(6708), - [anon_sym_LBRACE] = ACTIONS(6710), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6710), - [anon_sym_DOT_DOT] = ACTIONS(6708), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5500), + [aux_sym__open_args1_repeat1] = STATE(256), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(257), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(258), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(259), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(377), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(371), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(373), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(383), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(6710), - [sym_name] = ACTIONS(6710), }, [5417] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(189), - [sym_expr] = STATE(5497), - [aux_sym__with_expr_repeat1] = STATE(191), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(193), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(195), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(273), - [sym__const_lambda] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(263), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(281), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(287), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(291), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym__newline] = ACTIONS(6795), + [anon_sym__] = ACTIONS(6797), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6795), + [anon_sym_] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_in] = ACTIONS(6797), + [anon_sym_where] = ACTIONS(6797), + [anon_sym_DOT_DOT] = ACTIONS(6795), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(6797), + [sym_name] = ACTIONS(6797), }, [5418] = { - [sym_literal] = STATE(174), - [sym__typed_bindings1] = STATE(202), - [sym_expr] = STATE(5498), - [aux_sym__with_expr_repeat1] = STATE(204), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(192), - [aux_sym__open_args1_repeat1] = STATE(205), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(194), - [sym__atom_curly] = STATE(192), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(174), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(206), - [anon_sym__] = ACTIONS(265), - [anon_sym_LBRACE_LBRACE] = ACTIONS(271), - [anon_sym_let] = ACTIONS(299), - [sym__const_lambda] = ACTIONS(301), - [aux_sym_integer_token1] = ACTIONS(277), - [anon_sym_Set] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_quoteGoal] = ACTIONS(297), - [anon_sym_unquote] = ACTIONS(265), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(265), - [anon_sym_quoteTerm] = ACTIONS(265), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(265), - [sym__const_ellipsis] = ACTIONS(265), - [anon_sym_record] = ACTIONS(267), - [anon_sym_QMARK] = ACTIONS(265), - [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(269), - [anon_sym_DOT] = ACTIONS(303), - [anon_sym_LPAREN_PIPE] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(285), - [anon_sym_tactic] = ACTIONS(305), - [aux_sym_string_token1] = ACTIONS(289), - [sym__const_forall] = ACTIONS(307), - [anon_sym_Prop] = ACTIONS(265), - [anon_sym_3] = ACTIONS(293), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5501), + [aux_sym__open_args1_repeat1] = STATE(228), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(229), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(231), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(232), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(337), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(323), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(325), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(345), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(349), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), + [sym_pragma] = ACTIONS(3), }, [5419] = { - [sym_literal] = STATE(95), - [sym__typed_bindings1] = STATE(111), - [sym_expr] = STATE(5499), - [aux_sym__with_expr_repeat1] = STATE(113), - [sym__let_in] = STATE(69), - [sym_let] = STATE(74), - [sym__with_expr] = STATE(68), - [sym__atom_no_curly] = STATE(114), - [aux_sym__open_args1_repeat1] = STATE(115), - [aux_sym__typed_bindings1_repeat1] = STATE(72), - [sym_do] = STATE(74), - [sym__let_only] = STATE(69), - [sym_atom] = STATE(116), - [sym__atom_curly] = STATE(114), - [sym_typed_binding] = STATE(72), - [sym_record_assignments] = STATE(95), - [sym__application] = STATE(74), - [sym__expr2] = STATE(74), - [sym_lambda] = STATE(74), - [sym__atoms1] = STATE(117), - [anon_sym__] = ACTIONS(149), - [anon_sym_LBRACE_LBRACE] = ACTIONS(155), - [anon_sym_let] = ACTIONS(157), - [sym__const_lambda] = ACTIONS(159), - [aux_sym_integer_token1] = ACTIONS(161), - [anon_sym_Set] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_quoteGoal] = ACTIONS(147), - [anon_sym_unquote] = ACTIONS(149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(89), - [sym_qualified_name] = ACTIONS(149), - [anon_sym_quoteTerm] = ACTIONS(149), - [anon_sym_do] = ACTIONS(91), - [anon_sym_quote] = ACTIONS(149), - [sym__const_ellipsis] = ACTIONS(149), - [anon_sym_record] = ACTIONS(151), - [anon_sym_QMARK] = ACTIONS(149), + [sym_let] = STATE(80), + [sym_literal] = STATE(211), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(226), + [sym__atom_no_curly] = STATE(226), + [sym_expr] = STATE(5502), + [aux_sym__open_args1_repeat1] = STATE(240), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(241), + [sym_atom] = STATE(230), + [sym__typed_bindings1] = STATE(242), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(211), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(243), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(321), + [anon_sym_LBRACE_LBRACE] = ACTIONS(335), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(359), + [aux_sym_integer_token1] = ACTIONS(339), + [sym__const_lambda] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_quoteTerm] = ACTIONS(321), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(321), + [anon_sym_quote] = ACTIONS(321), + [anon_sym_tactic] = ACTIONS(355), + [anon_sym_Prop] = ACTIONS(321), + [anon_sym_let] = ACTIONS(357), + [anon_sym_record] = ACTIONS(327), + [sym__const_ellipsis] = ACTIONS(321), + [anon_sym_LPAREN_PIPE] = ACTIONS(329), + [anon_sym_] = ACTIONS(331), + [anon_sym_3] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(363), + [anon_sym_unquote] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(347), + [sym__const_forall] = ACTIONS(365), + [aux_sym_string_token1] = ACTIONS(351), + [anon_sym_Set] = ACTIONS(321), [sym_pragma] = ACTIONS(3), - [anon_sym_] = ACTIONS(153), - [anon_sym_DOT] = ACTIONS(167), - [anon_sym_LPAREN_PIPE] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(171), - [anon_sym_tactic] = ACTIONS(173), - [aux_sym_string_token1] = ACTIONS(175), - [sym__const_forall] = ACTIONS(177), - [anon_sym_Prop] = ACTIONS(149), - [anon_sym_3] = ACTIONS(179), }, [5420] = { - [anon_sym_RPAREN] = ACTIONS(8924), - [sym_comment] = ACTIONS(3), + [sym_let] = STATE(80), + [sym_literal] = STATE(162), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(72), + [sym__let_in] = STATE(72), + [sym__atom_curly] = STATE(178), + [sym__atom_no_curly] = STATE(178), + [sym_expr] = STATE(5503), + [aux_sym__open_args1_repeat1] = STATE(180), + [sym__expr2] = STATE(80), + [sym_do] = STATE(80), + [sym__atoms1] = STATE(181), + [sym_atom] = STATE(182), + [sym__typed_bindings1] = STATE(183), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(162), + [sym__with_expr] = STATE(79), + [sym__application] = STATE(80), + [aux_sym__with_expr_repeat1] = STATE(184), + [sym_lambda] = STATE(80), + [anon_sym__] = ACTIONS(249), + [anon_sym_LBRACE_LBRACE] = ACTIONS(263), + [anon_sym_do] = ACTIONS(87), + [anon_sym_quoteGoal] = ACTIONS(265), + [aux_sym_integer_token1] = ACTIONS(267), + [sym__const_lambda] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_quoteTerm] = ACTIONS(249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(249), + [anon_sym_quote] = ACTIONS(249), + [anon_sym_tactic] = ACTIONS(251), + [anon_sym_Prop] = ACTIONS(249), + [anon_sym_let] = ACTIONS(253), + [anon_sym_record] = ACTIONS(255), + [sym__const_ellipsis] = ACTIONS(249), + [anon_sym_LPAREN_PIPE] = ACTIONS(257), + [anon_sym_] = ACTIONS(259), + [anon_sym_3] = ACTIONS(261), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_unquote] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(277), + [sym__const_forall] = ACTIONS(279), + [aux_sym_string_token1] = ACTIONS(281), + [anon_sym_Set] = ACTIONS(249), [sym_pragma] = ACTIONS(3), }, [5421] = { + [anon_sym_RPAREN] = ACTIONS(8943), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8924), [sym_pragma] = ACTIONS(3), }, [5422] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8943), + [sym_pragma] = ACTIONS(3), }, [5423] = { - [sym__newline] = ACTIONS(3991), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_Prop] = ACTIONS(3989), + [sym__newline] = ACTIONS(4492), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [anon_sym_quoteTerm] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_PIPE] = ACTIONS(4490), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_in] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_Set] = ACTIONS(4490), }, [5424] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8926), + [anon_sym_RBRACE] = ACTIONS(8945), [sym_pragma] = ACTIONS(3), }, [5425] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), + [sym_let] = STATE(43), + [sym_literal] = STATE(2544), + [aux_sym__typed_bindings1_repeat1] = STATE(71), + [sym__let_only] = STATE(36), + [sym__let_in] = STATE(36), + [sym__atom_curly] = STATE(2559), + [sym__atom_no_curly] = STATE(2559), + [sym_expr] = STATE(3857), + [aux_sym__open_args1_repeat1] = STATE(2560), + [sym__expr2] = STATE(43), + [sym_do] = STATE(43), + [sym__atoms1] = STATE(2561), + [sym_atom] = STATE(2562), + [sym__typed_bindings1] = STATE(2563), + [sym_typed_binding] = STATE(71), + [sym_record_assignments] = STATE(2544), + [sym__with_expr] = STATE(950), + [sym__application] = STATE(43), + [aux_sym__with_expr_repeat1] = STATE(2564), + [sym_lambda] = STATE(43), + [anon_sym__] = ACTIONS(3974), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3976), + [anon_sym_do] = ACTIONS(41), + [anon_sym_quoteGoal] = ACTIONS(3978), + [aux_sym_integer_token1] = ACTIONS(3980), + [sym__const_lambda] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3974), + [anon_sym_quoteTerm] = ACTIONS(3974), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(97), + [sym_qualified_name] = ACTIONS(3974), + [anon_sym_quote] = ACTIONS(3974), + [anon_sym_tactic] = ACTIONS(3986), + [anon_sym_Prop] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3988), + [anon_sym_record] = ACTIONS(3990), + [sym__const_ellipsis] = ACTIONS(3974), + [anon_sym_LPAREN_PIPE] = ACTIONS(3992), + [anon_sym_] = ACTIONS(3994), + [anon_sym_3] = ACTIONS(3996), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_unquote] = ACTIONS(3974), + [anon_sym_LBRACE] = ACTIONS(4000), + [sym__const_forall] = ACTIONS(4002), + [aux_sym_string_token1] = ACTIONS(4004), + [anon_sym_Set] = ACTIONS(3974), + [sym_pragma] = ACTIONS(3), }, [5426] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8928), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), }, [5427] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), }, [5428] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8930), + [anon_sym_RBRACE] = ACTIONS(8947), [sym_pragma] = ACTIONS(3), }, [5429] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8930), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5430] = { - [anon_sym_RPAREN] = ACTIONS(8930), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8949), [sym_pragma] = ACTIONS(3), }, [5431] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8930), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8949), }, [5432] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8949), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5433] = { - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_EQ] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [5434] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8932), + [anon_sym_2] = ACTIONS(8949), [sym_pragma] = ACTIONS(3), }, + [5434] = { + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), + }, [5435] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_EQ] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5436] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8934), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5437] = { [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8951), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8934), }, [5438] = { - [anon_sym_RPAREN] = ACTIONS(8934), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8951), }, [5439] = { + [anon_sym_RPAREN] = ACTIONS(8951), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8934), [sym_pragma] = ACTIONS(3), }, [5440] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8951), + [sym_pragma] = ACTIONS(3), }, [5441] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5442] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_EQ] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5443] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8936), + [anon_sym_RBRACE] = ACTIONS(8953), [sym_pragma] = ACTIONS(3), }, [5444] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8936), + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5445] = { - [anon_sym_RPAREN] = ACTIONS(8936), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8955), [sym_pragma] = ACTIONS(3), }, [5446] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8936), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8955), }, [5447] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8955), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5448] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8955), + [sym_pragma] = ACTIONS(3), }, [5449] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym__newline] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_with] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5450] = { - [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8938), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5451] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8938), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym__newline] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_with] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5452] = { - [anon_sym_RPAREN] = ACTIONS(8938), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8957), [sym_pragma] = ACTIONS(3), }, [5453] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8938), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8957), }, [5454] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8957), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5455] = { - [anon_sym_COLON] = ACTIONS(3989), - [sym__newline] = ACTIONS(3991), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(3989), - [sym_qualified_name] = ACTIONS(3989), - [anon_sym_quoteTerm] = ACTIONS(3989), - [sym__const_right_arrow] = ACTIONS(3989), - [anon_sym_do] = ACTIONS(3989), - [sym__const_ellipsis] = ACTIONS(3989), - [anon_sym_record] = ACTIONS(3989), - [anon_sym_QMARK] = ACTIONS(3989), - [anon_sym_with] = ACTIONS(3989), - [anon_sym_] = ACTIONS(3989), - [anon_sym_quote] = ACTIONS(3989), - [anon_sym__] = ACTIONS(3989), - [anon_sym_LBRACE_LBRACE] = ACTIONS(3991), - [sym__const_lambda] = ACTIONS(3989), - [anon_sym_in] = ACTIONS(3989), - [aux_sym_integer_token1] = ACTIONS(3989), - [anon_sym_let] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(3989), - [anon_sym_Set] = ACTIONS(3989), - [anon_sym_unquote] = ACTIONS(3989), - [anon_sym_where] = ACTIONS(3989), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(3989), - [anon_sym_DOT] = ACTIONS(3989), - [anon_sym_LPAREN_PIPE] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3989), - [sym__const_forall] = ACTIONS(3989), - [aux_sym_string_token1] = ACTIONS(3991), - [anon_sym_tactic] = ACTIONS(3989), - [anon_sym_Prop] = ACTIONS(3989), - [anon_sym_3] = ACTIONS(3989), - [anon_sym_module] = ACTIONS(3989), - }, - [5456] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8940), + [anon_sym_2] = ACTIONS(8957), [sym_pragma] = ACTIONS(3), }, + [5456] = { + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), + }, [5457] = { - [anon_sym_COLON] = ACTIONS(7420), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [sym__newline] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LBRACE] = ACTIONS(7420), - [anon_sym_module] = ACTIONS(7420), + [anon_sym_COLON] = ACTIONS(4490), + [sym__newline] = ACTIONS(4492), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(4490), + [anon_sym_LPAREN_PIPE] = ACTIONS(4492), + [sym_qualified_name] = ACTIONS(4490), + [anon_sym_quote] = ACTIONS(4490), + [sym__const_right_arrow] = ACTIONS(4490), + [anon_sym_tactic] = ACTIONS(4490), + [sym__const_ellipsis] = ACTIONS(4490), + [anon_sym_record] = ACTIONS(4490), + [anon_sym_let] = ACTIONS(4490), + [anon_sym_with] = ACTIONS(4490), + [anon_sym_] = ACTIONS(4490), + [anon_sym_Prop] = ACTIONS(4490), + [anon_sym_3] = ACTIONS(4490), + [anon_sym__] = ACTIONS(4490), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4492), + [sym__const_lambda] = ACTIONS(4490), + [anon_sym_quoteGoal] = ACTIONS(4490), + [aux_sym_integer_token1] = ACTIONS(4490), + [anon_sym_do] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_quoteTerm] = ACTIONS(4490), + [anon_sym_where] = ACTIONS(4490), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4490), + [anon_sym_unquote] = ACTIONS(4490), + [anon_sym_LBRACE] = ACTIONS(4490), + [sym__const_forall] = ACTIONS(4490), + [aux_sym_string_token1] = ACTIONS(4492), + [anon_sym_in] = ACTIONS(4490), + [anon_sym_Set] = ACTIONS(4490), + [anon_sym_module] = ACTIONS(4490), }, [5458] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8942), + [anon_sym_RBRACE] = ACTIONS(8959), [sym_pragma] = ACTIONS(3), }, [5459] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8942), + [anon_sym_COLON] = ACTIONS(7508), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [sym__newline] = ACTIONS(7506), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_module] = ACTIONS(7508), }, [5460] = { - [anon_sym_RPAREN] = ACTIONS(8942), [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8961), [sym_pragma] = ACTIONS(3), }, [5461] = { [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8942), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8961), }, [5462] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(8961), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5463] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8961), + [sym_pragma] = ACTIONS(3), }, [5464] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_quoteGoal] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5465] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_SEMI] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_RBRACE] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5466] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_SEMI] = ACTIONS(7420), - [anon_sym_] = ACTIONS(7420), + [sym__dedent] = ACTIONS(8963), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_constructor] = ACTIONS(8963), [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [anon_sym_RBRACE] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [5467] = { + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8944), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5468] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8944), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5469] = { - [anon_sym_RPAREN] = ACTIONS(8944), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_SEMI] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [anon_sym_RBRACE] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5470] = { + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_SEMI] = ACTIONS(7508), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8944), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [anon_sym_RBRACE] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5471] = { - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_RBRACE] = ACTIONS(8965), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [5472] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8946), [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8965), }, [5473] = { + [anon_sym_RPAREN] = ACTIONS(8965), [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8946), }, [5474] = { - [anon_sym_RPAREN] = ACTIONS(8946), [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8965), [sym_pragma] = ACTIONS(3), }, [5475] = { + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8946), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5476] = { - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8967), + [sym_pragma] = ACTIONS(3), }, [5477] = { + [sym_comment] = ACTIONS(3), [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8967), }, [5478] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [anon_sym_RPAREN] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5479] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8967), + [sym_pragma] = ACTIONS(3), }, [5480] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5481] = { - [anon_sym_module] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym__newline] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5482] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym__newline] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [anon_sym_module] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym__newline] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5483] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5484] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym__newline] = ACTIONS(8376), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5485] = { - [anon_sym_COLON] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6079), - [anon_sym_RPAREN] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_RBRACE] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_RBRACE_RBRACE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_3] = ACTIONS(6077), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5486] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_2] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym__newline] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5487] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5488] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [anon_sym_in] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(7418), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym__newline] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5489] = { + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8948), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, [5490] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8948), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_SEMI] = ACTIONS(6552), + [anon_sym_RPAREN] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_RBRACE] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_RBRACE_RBRACE] = ACTIONS(6552), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), }, [5491] = { - [anon_sym_RPAREN] = ACTIONS(8948), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_2] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5492] = { + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8948), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(7506), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5493] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8969), + [sym_pragma] = ACTIONS(3), }, [5494] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8969), }, [5495] = { - [sym__newline] = ACTIONS(7418), - [anon_sym__] = ACTIONS(7420), - [anon_sym_LBRACE_LBRACE] = ACTIONS(7418), - [anon_sym_] = ACTIONS(7420), - [anon_sym_in] = ACTIONS(7420), - [anon_sym_DOT] = ACTIONS(7420), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(7420), + [anon_sym_RPAREN] = ACTIONS(8969), [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(7420), - [anon_sym_DOT_DOT] = ACTIONS(7418), [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(7420), - [sym_name] = ACTIONS(7420), }, [5496] = { [sym_comment] = ACTIONS(3), - [anon_sym_RBRACE] = ACTIONS(8950), + [anon_sym_2] = ACTIONS(8969), [sym_pragma] = ACTIONS(3), }, [5497] = { - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_RBRACE_RBRACE] = ACTIONS(8950), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5498] = { - [anon_sym_RPAREN] = ACTIONS(8950), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), }, [5499] = { + [sym__newline] = ACTIONS(7506), + [anon_sym__] = ACTIONS(7508), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7506), + [anon_sym_] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [anon_sym_2] = ACTIONS(8950), + [anon_sym_DOT] = ACTIONS(7508), + [anon_sym_LPAREN] = ACTIONS(7506), + [anon_sym_LBRACE] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_where] = ACTIONS(7508), + [anon_sym_DOT_DOT] = ACTIONS(7506), [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(7508), + [sym_name] = ACTIONS(7508), }, [5500] = { - [sym__newline] = ACTIONS(6079), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_Prop] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_RBRACE] = ACTIONS(8971), + [sym_pragma] = ACTIONS(3), }, [5501] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_RBRACE_RBRACE] = ACTIONS(8971), }, [5502] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [anon_sym_RPAREN] = ACTIONS(8971), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), }, [5503] = { - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_EQ] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym_comment] = ACTIONS(3), + [anon_sym_2] = ACTIONS(8971), + [sym_pragma] = ACTIONS(3), }, [5504] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_EQ] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(6552), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [anon_sym_quoteTerm] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_PIPE] = ACTIONS(6550), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [anon_sym_in] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_Set] = ACTIONS(6550), }, [5505] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), }, [5506] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym__newline] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_with] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5507] = { - [anon_sym_COLON] = ACTIONS(6077), - [sym__newline] = ACTIONS(6079), - [sym_pragma] = ACTIONS(3), - [anon_sym_quoteGoal] = ACTIONS(6077), - [sym_qualified_name] = ACTIONS(6077), - [anon_sym_quoteTerm] = ACTIONS(6077), - [sym__const_right_arrow] = ACTIONS(6077), - [anon_sym_do] = ACTIONS(6077), - [sym__const_ellipsis] = ACTIONS(6077), - [anon_sym_record] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_with] = ACTIONS(6077), - [anon_sym_] = ACTIONS(6077), - [anon_sym_quote] = ACTIONS(6077), - [anon_sym__] = ACTIONS(6077), - [anon_sym_LBRACE_LBRACE] = ACTIONS(6079), - [sym__const_lambda] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [aux_sym_integer_token1] = ACTIONS(6077), - [anon_sym_let] = ACTIONS(6077), - [anon_sym_LPAREN] = ACTIONS(6077), - [anon_sym_Set] = ACTIONS(6077), - [anon_sym_unquote] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6077), - [sym_comment] = ACTIONS(3), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_LPAREN_PIPE] = ACTIONS(6079), - [anon_sym_LBRACE] = ACTIONS(6077), - [sym__const_forall] = ACTIONS(6077), - [aux_sym_string_token1] = ACTIONS(6079), - [anon_sym_tactic] = ACTIONS(6077), - [anon_sym_Prop] = ACTIONS(6077), - [anon_sym_3] = ACTIONS(6077), - [anon_sym_module] = ACTIONS(6077), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5508] = { - [anon_sym_COLON] = ACTIONS(8378), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [sym__newline] = ACTIONS(8376), - [anon_sym_in] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LBRACE] = ACTIONS(8378), - [anon_sym_module] = ACTIONS(8378), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5509] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_SEMI] = ACTIONS(8378), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [anon_sym_RBRACE] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5510] = { - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_pragma] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym__newline] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_with] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), }, [5511] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [anon_sym_in] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(6550), + [sym__newline] = ACTIONS(6552), + [sym_pragma] = ACTIONS(3), + [anon_sym_PIPE] = ACTIONS(6550), + [anon_sym_LPAREN_PIPE] = ACTIONS(6552), + [sym_qualified_name] = ACTIONS(6550), + [anon_sym_quote] = ACTIONS(6550), + [sym__const_right_arrow] = ACTIONS(6550), + [anon_sym_tactic] = ACTIONS(6550), + [sym__const_ellipsis] = ACTIONS(6550), + [anon_sym_record] = ACTIONS(6550), + [anon_sym_let] = ACTIONS(6550), + [anon_sym_with] = ACTIONS(6550), + [anon_sym_] = ACTIONS(6550), + [anon_sym_Prop] = ACTIONS(6550), + [anon_sym_3] = ACTIONS(6550), + [anon_sym__] = ACTIONS(6550), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6552), + [sym__const_lambda] = ACTIONS(6550), + [anon_sym_quoteGoal] = ACTIONS(6550), + [aux_sym_integer_token1] = ACTIONS(6550), + [anon_sym_do] = ACTIONS(6550), + [anon_sym_LPAREN] = ACTIONS(6550), + [anon_sym_QMARK] = ACTIONS(6550), + [anon_sym_quoteTerm] = ACTIONS(6550), + [anon_sym_where] = ACTIONS(6550), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(6550), + [anon_sym_unquote] = ACTIONS(6550), + [anon_sym_LBRACE] = ACTIONS(6550), + [sym__const_forall] = ACTIONS(6550), + [aux_sym_string_token1] = ACTIONS(6552), + [anon_sym_in] = ACTIONS(6550), + [anon_sym_Set] = ACTIONS(6550), + [anon_sym_module] = ACTIONS(6550), }, [5512] = { - [sym__newline] = ACTIONS(8376), - [anon_sym__] = ACTIONS(8378), - [anon_sym_LBRACE_LBRACE] = ACTIONS(8376), - [anon_sym_] = ACTIONS(8378), - [anon_sym_in] = ACTIONS(8378), - [anon_sym_DOT] = ACTIONS(8378), - [anon_sym_LPAREN] = ACTIONS(8376), - [anon_sym_LBRACE] = ACTIONS(8378), - [sym_comment] = ACTIONS(3), - [anon_sym_where] = ACTIONS(8378), - [anon_sym_DOT_DOT] = ACTIONS(8376), - [sym_pragma] = ACTIONS(3), - [sym__const_right_arrow] = ACTIONS(8378), - [sym_name] = ACTIONS(8378), + [anon_sym_COLON] = ACTIONS(8417), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [sym__newline] = ACTIONS(8415), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_module] = ACTIONS(8417), + }, + [5513] = { + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_SEMI] = ACTIONS(8417), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [anon_sym_RBRACE] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + }, + [5514] = { + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + }, + [5515] = { + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [sym_pragma] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), + }, + [5516] = { + [sym__newline] = ACTIONS(8415), + [anon_sym__] = ACTIONS(8417), + [anon_sym_LBRACE_LBRACE] = ACTIONS(8415), + [anon_sym_] = ACTIONS(8417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(8417), + [anon_sym_LPAREN] = ACTIONS(8415), + [anon_sym_LBRACE] = ACTIONS(8417), + [anon_sym_in] = ACTIONS(8417), + [anon_sym_where] = ACTIONS(8417), + [anon_sym_DOT_DOT] = ACTIONS(8415), + [sym_pragma] = ACTIONS(3), + [sym__const_right_arrow] = ACTIONS(8417), + [sym_name] = ACTIONS(8417), }, }; @@ -175407,4221 +176028,4230 @@ static TSParseActionEntry ts_parse_actions[] = { [0] = {.count = 0, .reusable = false}, [1] = {.count = 1, .reusable = false}, RECOVER(), [3] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [5] = {.count = 1, .reusable = false}, SHIFT(34), + [5] = {.count = 1, .reusable = false}, SHIFT(2), [7] = {.count = 1, .reusable = false}, SHIFT(3), [9] = {.count = 1, .reusable = false}, SHIFT(4), - [11] = {.count = 1, .reusable = false}, SHIFT(5), + [11] = {.count = 1, .reusable = true}, SHIFT(5), [13] = {.count = 1, .reusable = false}, SHIFT(6), - [15] = {.count = 1, .reusable = false}, SHIFT(7), - [17] = {.count = 1, .reusable = false}, SHIFT(8), - [19] = {.count = 1, .reusable = false}, SHIFT(9), - [21] = {.count = 1, .reusable = false}, SHIFT(10), + [15] = {.count = 1, .reusable = false}, SHIFT(10), + [17] = {.count = 1, .reusable = false}, SHIFT(7), + [19] = {.count = 1, .reusable = false}, SHIFT(8), + [21] = {.count = 1, .reusable = false}, SHIFT(9), [23] = {.count = 1, .reusable = false}, SHIFT(11), [25] = {.count = 1, .reusable = false}, SHIFT(12), [27] = {.count = 1, .reusable = false}, SHIFT(13), [29] = {.count = 1, .reusable = false}, SHIFT(14), - [31] = {.count = 1, .reusable = false}, SHIFT(15), - [33] = {.count = 1, .reusable = false}, SHIFT(16), - [35] = {.count = 1, .reusable = false}, SHIFT(17), - [37] = {.count = 1, .reusable = false}, SHIFT(18), - [39] = {.count = 1, .reusable = false}, SHIFT(19), - [41] = {.count = 1, .reusable = false}, SHIFT(20), - [43] = {.count = 1, .reusable = false}, SHIFT(21), - [45] = {.count = 1, .reusable = true}, SHIFT(22), - [47] = {.count = 1, .reusable = false}, SHIFT(23), - [49] = {.count = 1, .reusable = false}, SHIFT(24), - [51] = {.count = 1, .reusable = false}, SHIFT(25), - [53] = {.count = 1, .reusable = true}, REDUCE(sym_source_file, 0), + [31] = {.count = 1, .reusable = false}, SHIFT(39), + [33] = {.count = 1, .reusable = false}, SHIFT(15), + [35] = {.count = 1, .reusable = false}, SHIFT(16), + [37] = {.count = 1, .reusable = false}, SHIFT(17), + [39] = {.count = 1, .reusable = false}, SHIFT(18), + [41] = {.count = 1, .reusable = false}, SHIFT(19), + [43] = {.count = 1, .reusable = false}, SHIFT(20), + [45] = {.count = 1, .reusable = false}, SHIFT(21), + [47] = {.count = 1, .reusable = false}, SHIFT(22), + [49] = {.count = 1, .reusable = false}, SHIFT(23), + [51] = {.count = 1, .reusable = true}, SHIFT(24), + [53] = {.count = 1, .reusable = false}, SHIFT(25), [55] = {.count = 1, .reusable = false}, SHIFT(26), [57] = {.count = 1, .reusable = false}, SHIFT(27), - [59] = {.count = 1, .reusable = true}, SHIFT(28), - [61] = {.count = 1, .reusable = false}, SHIFT(2), + [59] = {.count = 1, .reusable = true}, REDUCE(sym_source_file, 0), + [61] = {.count = 1, .reusable = false}, SHIFT(28), [63] = {.count = 1, .reusable = false}, SHIFT(29), [65] = {.count = 1, .reusable = false}, SHIFT(30), [67] = {.count = 1, .reusable = false}, SHIFT(31), - [69] = {.count = 1, .reusable = true}, SHIFT(20), + [69] = {.count = 1, .reusable = true}, SHIFT(21), [71] = {.count = 1, .reusable = false}, SHIFT(32), [73] = {.count = 1, .reusable = false}, SHIFT(33), - [75] = {.count = 1, .reusable = false}, SHIFT(48), - [77] = {.count = 1, .reusable = true}, SHIFT(49), - [79] = {.count = 1, .reusable = false}, SHIFT(50), - [81] = {.count = 1, .reusable = false}, SHIFT(51), - [83] = {.count = 1, .reusable = false}, SHIFT(52), - [85] = {.count = 1, .reusable = false}, SHIFT(53), - [87] = {.count = 1, .reusable = false}, SHIFT(54), - [89] = {.count = 1, .reusable = false}, SHIFT(55), - [91] = {.count = 1, .reusable = false}, SHIFT(56), - [93] = {.count = 1, .reusable = false}, SHIFT(57), - [95] = {.count = 1, .reusable = false}, SHIFT(58), - [97] = {.count = 1, .reusable = false}, SHIFT(59), - [99] = {.count = 1, .reusable = true}, SHIFT(60), - [101] = {.count = 1, .reusable = false}, SHIFT(61), - [103] = {.count = 1, .reusable = false}, SHIFT(62), - [105] = {.count = 1, .reusable = true}, SHIFT(52), - [107] = {.count = 1, .reusable = false}, SHIFT(63), - [109] = {.count = 1, .reusable = false}, SHIFT(64), - [111] = {.count = 1, .reusable = false}, SHIFT(76), - [113] = {.count = 1, .reusable = true}, SHIFT(77), - [115] = {.count = 1, .reusable = false}, SHIFT(79), - [117] = {.count = 1, .reusable = true}, SHIFT(80), + [75] = {.count = 1, .reusable = false}, SHIFT(34), + [77] = {.count = 1, .reusable = false}, SHIFT(49), + [79] = {.count = 1, .reusable = true}, SHIFT(50), + [81] = {.count = 1, .reusable = true}, SHIFT(52), + [83] = {.count = 1, .reusable = false}, SHIFT(54), + [85] = {.count = 1, .reusable = true}, SHIFT(55), + [87] = {.count = 1, .reusable = false}, SHIFT(56), + [89] = {.count = 1, .reusable = false}, SHIFT(57), + [91] = {.count = 1, .reusable = false}, SHIFT(58), + [93] = {.count = 1, .reusable = false}, SHIFT(59), + [95] = {.count = 1, .reusable = false}, SHIFT(60), + [97] = {.count = 1, .reusable = false}, SHIFT(61), + [99] = {.count = 1, .reusable = false}, SHIFT(62), + [101] = {.count = 1, .reusable = false}, SHIFT(63), + [103] = {.count = 1, .reusable = false}, SHIFT(64), + [105] = {.count = 1, .reusable = true}, SHIFT(65), + [107] = {.count = 1, .reusable = false}, SHIFT(66), + [109] = {.count = 1, .reusable = false}, SHIFT(67), + [111] = {.count = 1, .reusable = false}, SHIFT(68), + [113] = {.count = 1, .reusable = false}, SHIFT(69), + [115] = {.count = 1, .reusable = false}, SHIFT(70), + [117] = {.count = 1, .reusable = true}, SHIFT(58), [119] = {.count = 1, .reusable = false}, REDUCE(sym__atom_no_curly, 1), [121] = {.count = 1, .reusable = true}, REDUCE(sym__atom_no_curly, 1), - [123] = {.count = 1, .reusable = true}, SHIFT(82), - [125] = {.count = 1, .reusable = false}, SHIFT(83), - [127] = {.count = 1, .reusable = true}, SHIFT(84), + [123] = {.count = 1, .reusable = false}, SHIFT(82), + [125] = {.count = 1, .reusable = true}, SHIFT(83), + [127] = {.count = 1, .reusable = false}, SHIFT(84), [129] = {.count = 1, .reusable = false}, SHIFT(85), - [131] = {.count = 1, .reusable = false}, SHIFT(86), + [131] = {.count = 1, .reusable = true}, SHIFT(86), [133] = {.count = 1, .reusable = false}, SHIFT(87), [135] = {.count = 1, .reusable = false}, SHIFT(88), [137] = {.count = 1, .reusable = false}, SHIFT(89), - [139] = {.count = 1, .reusable = true}, SHIFT(90), + [139] = {.count = 1, .reusable = false}, SHIFT(90), [141] = {.count = 1, .reusable = false}, SHIFT(91), - [143] = {.count = 1, .reusable = false}, SHIFT(92), - [145] = {.count = 1, .reusable = true}, SHIFT(85), - [147] = {.count = 1, .reusable = false}, SHIFT(101), - [149] = {.count = 1, .reusable = false}, SHIFT(95), - [151] = {.count = 1, .reusable = false}, SHIFT(103), - [153] = {.count = 1, .reusable = false}, SHIFT(104), - [155] = {.count = 1, .reusable = true}, SHIFT(96), - [157] = {.count = 1, .reusable = false}, SHIFT(97), - [159] = {.count = 1, .reusable = false}, SHIFT(98), - [161] = {.count = 1, .reusable = false}, SHIFT(99), - [163] = {.count = 1, .reusable = false}, SHIFT(100), - [165] = {.count = 1, .reusable = false}, SHIFT(102), - [167] = {.count = 1, .reusable = false}, SHIFT(105), - [169] = {.count = 1, .reusable = true}, SHIFT(106), + [143] = {.count = 1, .reusable = true}, SHIFT(84), + [145] = {.count = 1, .reusable = false}, SHIFT(95), + [147] = {.count = 1, .reusable = true}, SHIFT(96), + [149] = {.count = 1, .reusable = false}, SHIFT(97), + [151] = {.count = 1, .reusable = false}, SHIFT(101), + [153] = {.count = 1, .reusable = false}, SHIFT(98), + [155] = {.count = 1, .reusable = false}, SHIFT(99), + [157] = {.count = 1, .reusable = false}, SHIFT(100), + [159] = {.count = 1, .reusable = false}, SHIFT(102), + [161] = {.count = 1, .reusable = true}, SHIFT(103), + [163] = {.count = 1, .reusable = false}, SHIFT(104), + [165] = {.count = 1, .reusable = false}, SHIFT(105), + [167] = {.count = 1, .reusable = false}, SHIFT(121), + [169] = {.count = 1, .reusable = false}, SHIFT(106), [171] = {.count = 1, .reusable = false}, SHIFT(107), [173] = {.count = 1, .reusable = false}, SHIFT(108), - [175] = {.count = 1, .reusable = true}, SHIFT(99), - [177] = {.count = 1, .reusable = false}, SHIFT(109), - [179] = {.count = 1, .reusable = false}, SHIFT(110), - [181] = {.count = 1, .reusable = false}, SHIFT(118), - [183] = {.count = 1, .reusable = true}, SHIFT(120), - [185] = {.count = 1, .reusable = true}, SHIFT(123), - [187] = {.count = 1, .reusable = false}, SHIFT(149), - [189] = {.count = 1, .reusable = false}, SHIFT(128), - [191] = {.count = 1, .reusable = false}, SHIFT(129), - [193] = {.count = 1, .reusable = false}, SHIFT(130), - [195] = {.count = 1, .reusable = false}, SHIFT(131), - [197] = {.count = 1, .reusable = false}, SHIFT(132), - [199] = {.count = 1, .reusable = true}, SHIFT(133), - [201] = {.count = 1, .reusable = false}, SHIFT(134), - [203] = {.count = 1, .reusable = false}, SHIFT(135), - [205] = {.count = 1, .reusable = false}, SHIFT(136), - [207] = {.count = 1, .reusable = false}, SHIFT(137), - [209] = {.count = 1, .reusable = false}, SHIFT(138), - [211] = {.count = 1, .reusable = false}, SHIFT(139), - [213] = {.count = 1, .reusable = true}, SHIFT(140), - [215] = {.count = 1, .reusable = false}, SHIFT(141), - [217] = {.count = 1, .reusable = false}, SHIFT(142), - [219] = {.count = 1, .reusable = true}, SHIFT(143), - [221] = {.count = 1, .reusable = false}, SHIFT(127), - [223] = {.count = 1, .reusable = false}, SHIFT(144), - [225] = {.count = 1, .reusable = false}, SHIFT(145), - [227] = {.count = 1, .reusable = false}, SHIFT(146), - [229] = {.count = 1, .reusable = true}, SHIFT(138), + [175] = {.count = 1, .reusable = false}, SHIFT(109), + [177] = {.count = 1, .reusable = true}, SHIFT(110), + [179] = {.count = 1, .reusable = false}, SHIFT(111), + [181] = {.count = 1, .reusable = false}, SHIFT(112), + [183] = {.count = 1, .reusable = false}, SHIFT(113), + [185] = {.count = 1, .reusable = false}, SHIFT(114), + [187] = {.count = 1, .reusable = true}, SHIFT(107), + [189] = {.count = 1, .reusable = false}, SHIFT(115), + [191] = {.count = 1, .reusable = false}, SHIFT(116), + [193] = {.count = 1, .reusable = false}, SHIFT(117), + [195] = {.count = 1, .reusable = false}, SHIFT(128), + [197] = {.count = 1, .reusable = true}, SHIFT(129), + [199] = {.count = 1, .reusable = false}, SHIFT(130), + [201] = {.count = 1, .reusable = false}, SHIFT(131), + [203] = {.count = 1, .reusable = true}, SHIFT(132), + [205] = {.count = 1, .reusable = false}, SHIFT(133), + [207] = {.count = 1, .reusable = false}, SHIFT(134), + [209] = {.count = 1, .reusable = false}, SHIFT(135), + [211] = {.count = 1, .reusable = false}, SHIFT(136), + [213] = {.count = 1, .reusable = false}, SHIFT(137), + [215] = {.count = 1, .reusable = true}, SHIFT(130), + [217] = {.count = 1, .reusable = false}, SHIFT(140), + [219] = {.count = 1, .reusable = true}, SHIFT(141), + [221] = {.count = 1, .reusable = false}, SHIFT(142), + [223] = {.count = 1, .reusable = false}, SHIFT(143), + [225] = {.count = 1, .reusable = false}, SHIFT(144), + [227] = {.count = 1, .reusable = false}, SHIFT(145), + [229] = {.count = 1, .reusable = false}, SHIFT(146), [231] = {.count = 1, .reusable = false}, SHIFT(147), [233] = {.count = 1, .reusable = false}, SHIFT(148), - [235] = {.count = 1, .reusable = false}, SHIFT(159), - [237] = {.count = 1, .reusable = true}, SHIFT(160), - [239] = {.count = 1, .reusable = false}, SHIFT(161), - [241] = {.count = 1, .reusable = false}, SHIFT(162), - [243] = {.count = 1, .reusable = true}, SHIFT(163), - [245] = {.count = 1, .reusable = false}, SHIFT(164), - [247] = {.count = 1, .reusable = false}, SHIFT(165), - [249] = {.count = 1, .reusable = true}, SHIFT(162), - [251] = {.count = 1, .reusable = false}, SHIFT(166), - [253] = {.count = 1, .reusable = false}, REDUCE(sym_literal, 1), - [255] = {.count = 1, .reusable = true}, REDUCE(sym_literal, 1), - [257] = {.count = 1, .reusable = false}, SHIFT(171), - [259] = {.count = 1, .reusable = false}, SHIFT(170), - [261] = {.count = 1, .reusable = false}, SHIFT(172), - [263] = {.count = 1, .reusable = false}, SHIFT(180), - [265] = {.count = 1, .reusable = false}, SHIFT(174), - [267] = {.count = 1, .reusable = false}, SHIFT(181), - [269] = {.count = 1, .reusable = false}, SHIFT(182), - [271] = {.count = 1, .reusable = true}, SHIFT(175), - [273] = {.count = 1, .reusable = false}, SHIFT(176), - [275] = {.count = 1, .reusable = false}, SHIFT(177), - [277] = {.count = 1, .reusable = false}, SHIFT(178), - [279] = {.count = 1, .reusable = false}, SHIFT(179), - [281] = {.count = 1, .reusable = false}, SHIFT(183), - [283] = {.count = 1, .reusable = true}, SHIFT(184), - [285] = {.count = 1, .reusable = false}, SHIFT(185), - [287] = {.count = 1, .reusable = false}, SHIFT(186), - [289] = {.count = 1, .reusable = true}, SHIFT(178), - [291] = {.count = 1, .reusable = false}, SHIFT(187), - [293] = {.count = 1, .reusable = false}, SHIFT(188), - [295] = {.count = 1, .reusable = true}, SHIFT(102), - [297] = {.count = 1, .reusable = false}, SHIFT(198), + [235] = {.count = 1, .reusable = true}, SHIFT(149), + [237] = {.count = 1, .reusable = false}, SHIFT(150), + [239] = {.count = 1, .reusable = false}, SHIFT(151), + [241] = {.count = 1, .reusable = false}, SHIFT(152), + [243] = {.count = 1, .reusable = false}, SHIFT(153), + [245] = {.count = 1, .reusable = false}, SHIFT(154), + [247] = {.count = 1, .reusable = true}, SHIFT(143), + [249] = {.count = 1, .reusable = false}, SHIFT(162), + [251] = {.count = 1, .reusable = false}, SHIFT(169), + [253] = {.count = 1, .reusable = false}, SHIFT(170), + [255] = {.count = 1, .reusable = false}, SHIFT(171), + [257] = {.count = 1, .reusable = true}, SHIFT(172), + [259] = {.count = 1, .reusable = false}, SHIFT(173), + [261] = {.count = 1, .reusable = false}, SHIFT(174), + [263] = {.count = 1, .reusable = true}, SHIFT(163), + [265] = {.count = 1, .reusable = false}, SHIFT(164), + [267] = {.count = 1, .reusable = false}, SHIFT(165), + [269] = {.count = 1, .reusable = false}, SHIFT(166), + [271] = {.count = 1, .reusable = false}, SHIFT(167), + [273] = {.count = 1, .reusable = false}, SHIFT(168), + [275] = {.count = 1, .reusable = false}, SHIFT(175), + [277] = {.count = 1, .reusable = false}, SHIFT(176), + [279] = {.count = 1, .reusable = false}, SHIFT(177), + [281] = {.count = 1, .reusable = true}, SHIFT(165), + [283] = {.count = 1, .reusable = false}, SHIFT(185), + [285] = {.count = 1, .reusable = true}, SHIFT(187), + [287] = {.count = 1, .reusable = true}, SHIFT(190), + [289] = {.count = 1, .reusable = true}, SHIFT(194), + [291] = {.count = 1, .reusable = false}, SHIFT(195), + [293] = {.count = 1, .reusable = false}, REDUCE(sym_literal, 1), + [295] = {.count = 1, .reusable = true}, REDUCE(sym_literal, 1), + [297] = {.count = 1, .reusable = false}, SHIFT(197), [299] = {.count = 1, .reusable = false}, SHIFT(196), - [301] = {.count = 1, .reusable = false}, SHIFT(197), - [303] = {.count = 1, .reusable = false}, SHIFT(199), - [305] = {.count = 1, .reusable = false}, SHIFT(200), - [307] = {.count = 1, .reusable = false}, SHIFT(201), - [309] = {.count = 1, .reusable = false}, SHIFT(207), - [311] = {.count = 1, .reusable = false}, SHIFT(210), - [313] = {.count = 1, .reusable = false}, SHIFT(211), - [315] = {.count = 1, .reusable = true}, SHIFT(212), - [317] = {.count = 1, .reusable = false}, SHIFT(213), - [319] = {.count = 1, .reusable = false}, SHIFT(214), - [321] = {.count = 1, .reusable = false}, SHIFT(215), - [323] = {.count = 1, .reusable = false}, SHIFT(216), - [325] = {.count = 1, .reusable = false}, SHIFT(217), - [327] = {.count = 1, .reusable = false}, SHIFT(218), - [329] = {.count = 1, .reusable = false}, SHIFT(219), - [331] = {.count = 1, .reusable = false}, SHIFT(220), - [333] = {.count = 1, .reusable = true}, SHIFT(221), - [335] = {.count = 1, .reusable = false}, SHIFT(222), - [337] = {.count = 1, .reusable = false}, SHIFT(223), - [339] = {.count = 1, .reusable = true}, SHIFT(215), - [341] = {.count = 1, .reusable = false}, SHIFT(224), - [343] = {.count = 1, .reusable = false}, SHIFT(225), - [345] = {.count = 1, .reusable = false}, SHIFT(235), - [347] = {.count = 1, .reusable = true}, SHIFT(236), - [349] = {.count = 1, .reusable = false}, SHIFT(233), - [351] = {.count = 1, .reusable = false}, SHIFT(234), - [353] = {.count = 1, .reusable = false}, SHIFT(237), - [355] = {.count = 1, .reusable = false}, SHIFT(238), - [357] = {.count = 1, .reusable = false}, SHIFT(239), - [359] = {.count = 1, .reusable = false}, SHIFT(245), - [361] = {.count = 1, .reusable = true}, SHIFT(246), - [363] = {.count = 1, .reusable = false}, SHIFT(247), - [365] = {.count = 1, .reusable = false}, SHIFT(248), - [367] = {.count = 1, .reusable = true}, SHIFT(249), - [369] = {.count = 1, .reusable = false}, SHIFT(250), - [371] = {.count = 1, .reusable = true}, SHIFT(248), + [301] = {.count = 1, .reusable = false}, SHIFT(198), + [303] = {.count = 1, .reusable = false}, SHIFT(200), + [305] = {.count = 1, .reusable = true}, SHIFT(201), + [307] = {.count = 1, .reusable = false}, SHIFT(202), + [309] = {.count = 1, .reusable = false}, SHIFT(203), + [311] = {.count = 1, .reusable = true}, SHIFT(204), + [313] = {.count = 1, .reusable = false}, SHIFT(205), + [315] = {.count = 1, .reusable = false}, SHIFT(206), + [317] = {.count = 1, .reusable = true}, SHIFT(203), + [319] = {.count = 1, .reusable = false}, SHIFT(207), + [321] = {.count = 1, .reusable = false}, SHIFT(211), + [323] = {.count = 1, .reusable = false}, SHIFT(217), + [325] = {.count = 1, .reusable = false}, SHIFT(218), + [327] = {.count = 1, .reusable = false}, SHIFT(219), + [329] = {.count = 1, .reusable = true}, SHIFT(220), + [331] = {.count = 1, .reusable = false}, SHIFT(221), + [333] = {.count = 1, .reusable = false}, SHIFT(222), + [335] = {.count = 1, .reusable = true}, SHIFT(212), + [337] = {.count = 1, .reusable = false}, SHIFT(213), + [339] = {.count = 1, .reusable = false}, SHIFT(214), + [341] = {.count = 1, .reusable = false}, SHIFT(215), + [343] = {.count = 1, .reusable = false}, SHIFT(216), + [345] = {.count = 1, .reusable = false}, SHIFT(223), + [347] = {.count = 1, .reusable = false}, SHIFT(224), + [349] = {.count = 1, .reusable = false}, SHIFT(225), + [351] = {.count = 1, .reusable = true}, SHIFT(214), + [353] = {.count = 1, .reusable = true}, SHIFT(168), + [355] = {.count = 1, .reusable = false}, SHIFT(235), + [357] = {.count = 1, .reusable = false}, SHIFT(236), + [359] = {.count = 1, .reusable = false}, SHIFT(233), + [361] = {.count = 1, .reusable = false}, SHIFT(234), + [363] = {.count = 1, .reusable = false}, SHIFT(237), + [365] = {.count = 1, .reusable = false}, SHIFT(238), + [367] = {.count = 1, .reusable = false}, SHIFT(244), + [369] = {.count = 1, .reusable = false}, SHIFT(247), + [371] = {.count = 1, .reusable = false}, SHIFT(250), [373] = {.count = 1, .reusable = false}, SHIFT(251), - [375] = {.count = 1, .reusable = false}, SHIFT(256), - [377] = {.count = 1, .reusable = true}, SHIFT(257), - [379] = {.count = 1, .reusable = false}, SHIFT(258), - [381] = {.count = 1, .reusable = false}, SHIFT(259), - [383] = {.count = 1, .reusable = false}, SHIFT(260), - [385] = {.count = 1, .reusable = false}, SHIFT(261), - [387] = {.count = 1, .reusable = false}, SHIFT(262), - [389] = {.count = 1, .reusable = true}, SHIFT(263), - [391] = {.count = 1, .reusable = false}, SHIFT(264), - [393] = {.count = 1, .reusable = false}, SHIFT(265), - [395] = {.count = 1, .reusable = true}, SHIFT(258), - [397] = {.count = 1, .reusable = false}, SHIFT(269), - [399] = {.count = 1, .reusable = false}, SHIFT(271), - [401] = {.count = 1, .reusable = false}, SHIFT(270), - [403] = {.count = 1, .reusable = true}, SHIFT(273), - [405] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 1), + [375] = {.count = 1, .reusable = true}, SHIFT(254), + [377] = {.count = 1, .reusable = false}, SHIFT(248), + [379] = {.count = 1, .reusable = false}, SHIFT(249), + [381] = {.count = 1, .reusable = false}, SHIFT(252), + [383] = {.count = 1, .reusable = false}, SHIFT(253), + [385] = {.count = 1, .reusable = false}, SHIFT(260), + [387] = {.count = 1, .reusable = true}, SHIFT(261), + [389] = {.count = 1, .reusable = false}, SHIFT(262), + [391] = {.count = 1, .reusable = false}, SHIFT(263), + [393] = {.count = 1, .reusable = true}, SHIFT(264), + [395] = {.count = 1, .reusable = false}, SHIFT(265), + [397] = {.count = 1, .reusable = true}, SHIFT(263), + [399] = {.count = 1, .reusable = false}, SHIFT(266), + [401] = {.count = 1, .reusable = false}, SHIFT(271), + [403] = {.count = 1, .reusable = false}, SHIFT(273), + [405] = {.count = 1, .reusable = false}, SHIFT(272), [407] = {.count = 1, .reusable = true}, SHIFT(275), - [409] = {.count = 1, .reusable = true}, SHIFT(274), - [411] = {.count = 1, .reusable = true}, REDUCE(sym_let, 1), - [413] = {.count = 1, .reusable = true}, REDUCE(sym_source_file, 1), - [415] = {.count = 1, .reusable = false}, SHIFT(279), - [417] = {.count = 1, .reusable = false}, SHIFT(280), - [419] = {.count = 1, .reusable = true}, SHIFT(281), - [421] = {.count = 1, .reusable = false}, SHIFT(282), - [423] = {.count = 1, .reusable = false}, SHIFT(283), - [425] = {.count = 1, .reusable = false}, REDUCE(sym__atoms1, 1), - [427] = {.count = 1, .reusable = false}, SHIFT(284), - [429] = {.count = 1, .reusable = false}, SHIFT(285), - [431] = {.count = 1, .reusable = true}, SHIFT(286), - [433] = {.count = 1, .reusable = false}, SHIFT(287), - [435] = {.count = 1, .reusable = true}, SHIFT(280), - [437] = {.count = 1, .reusable = false}, SHIFT(288), - [439] = {.count = 1, .reusable = false}, REDUCE(sym_atom, 1), - [441] = {.count = 1, .reusable = true}, REDUCE(sym_atom, 1), + [409] = {.count = 1, .reusable = true}, REDUCE(sym_let, 1), + [411] = {.count = 1, .reusable = false}, REDUCE(sym_atom, 1), + [413] = {.count = 1, .reusable = true}, REDUCE(sym_atom, 1), + [415] = {.count = 1, .reusable = false}, SHIFT(276), + [417] = {.count = 1, .reusable = false}, SHIFT(277), + [419] = {.count = 1, .reusable = false}, REDUCE(sym__atoms1, 1), + [421] = {.count = 1, .reusable = true}, SHIFT(278), + [423] = {.count = 1, .reusable = false}, SHIFT(279), + [425] = {.count = 1, .reusable = true}, SHIFT(280), + [427] = {.count = 1, .reusable = false}, SHIFT(281), + [429] = {.count = 1, .reusable = false}, SHIFT(282), + [431] = {.count = 1, .reusable = false}, SHIFT(283), + [433] = {.count = 1, .reusable = false}, SHIFT(284), + [435] = {.count = 1, .reusable = false}, SHIFT(285), + [437] = {.count = 1, .reusable = true}, SHIFT(277), + [439] = {.count = 1, .reusable = true}, REDUCE(sym_test, 1), + [441] = {.count = 1, .reusable = true}, SHIFT(290), [443] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), [445] = {.count = 1, .reusable = true}, REDUCE(sym_function_clause, 1), - [447] = {.count = 1, .reusable = true}, SHIFT(293), - [449] = {.count = 1, .reusable = true}, SHIFT(294), - [451] = {.count = 1, .reusable = true}, SHIFT(295), - [453] = {.count = 1, .reusable = true}, REDUCE(sym__with_expr, 1), - [455] = {.count = 1, .reusable = true}, SHIFT(298), - [457] = {.count = 1, .reusable = true}, SHIFT(301), - [459] = {.count = 1, .reusable = false}, REDUCE(sym_lhs_decl, 1, .alias_sequence_id = 1), - [461] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 1, .alias_sequence_id = 1), - [463] = {.count = 1, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 1), - [465] = {.count = 1, .reusable = false}, SHIFT(303), - [467] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 1), - [469] = {.count = 1, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 1), - [471] = {.count = 1, .reusable = false}, SHIFT(302), - [473] = {.count = 1, .reusable = false}, SHIFT(312), - [475] = {.count = 1, .reusable = false}, SHIFT(306), - [477] = {.count = 1, .reusable = false}, SHIFT(313), - [479] = {.count = 1, .reusable = false}, SHIFT(314), - [481] = {.count = 1, .reusable = true}, SHIFT(307), - [483] = {.count = 1, .reusable = false}, SHIFT(308), - [485] = {.count = 1, .reusable = false}, SHIFT(309), - [487] = {.count = 1, .reusable = false}, SHIFT(310), - [489] = {.count = 1, .reusable = false}, SHIFT(311), - [491] = {.count = 1, .reusable = false}, SHIFT(315), - [493] = {.count = 1, .reusable = true}, SHIFT(316), - [495] = {.count = 1, .reusable = false}, SHIFT(317), - [497] = {.count = 1, .reusable = false}, SHIFT(318), - [499] = {.count = 1, .reusable = true}, SHIFT(310), - [501] = {.count = 1, .reusable = false}, SHIFT(319), - [503] = {.count = 1, .reusable = false}, SHIFT(320), - [505] = {.count = 1, .reusable = true}, SHIFT(321), - [507] = {.count = 1, .reusable = true}, SHIFT(327), - [509] = {.count = 1, .reusable = false}, SHIFT(330), - [511] = {.count = 1, .reusable = true}, SHIFT(331), - [513] = {.count = 1, .reusable = false}, SHIFT(332), - [515] = {.count = 1, .reusable = false}, SHIFT(333), - [517] = {.count = 1, .reusable = true}, SHIFT(334), - [519] = {.count = 1, .reusable = false}, SHIFT(335), - [521] = {.count = 1, .reusable = false}, SHIFT(336), - [523] = {.count = 1, .reusable = true}, SHIFT(333), - [525] = {.count = 1, .reusable = false}, SHIFT(337), - [527] = {.count = 1, .reusable = false}, SHIFT(341), - [529] = {.count = 1, .reusable = false}, SHIFT(342), - [531] = {.count = 1, .reusable = false}, SHIFT(343), - [533] = {.count = 1, .reusable = false}, SHIFT(344), - [535] = {.count = 1, .reusable = false}, SHIFT(345), - [537] = {.count = 1, .reusable = false}, SHIFT(346), - [539] = {.count = 1, .reusable = false}, SHIFT(347), - [541] = {.count = 1, .reusable = false}, SHIFT(348), - [543] = {.count = 1, .reusable = false}, SHIFT(353), - [545] = {.count = 1, .reusable = false}, SHIFT(354), - [547] = {.count = 1, .reusable = true}, SHIFT(355), - [549] = {.count = 1, .reusable = true}, SHIFT(356), - [551] = {.count = 1, .reusable = true}, SHIFT(357), - [553] = {.count = 1, .reusable = true}, SHIFT(358), - [555] = {.count = 1, .reusable = false}, SHIFT(359), - [557] = {.count = 1, .reusable = false}, SHIFT(360), - [559] = {.count = 1, .reusable = false}, SHIFT(368), - [561] = {.count = 1, .reusable = false}, SHIFT(362), - [563] = {.count = 1, .reusable = false}, SHIFT(369), - [565] = {.count = 1, .reusable = false}, SHIFT(370), - [567] = {.count = 1, .reusable = true}, SHIFT(363), - [569] = {.count = 1, .reusable = false}, SHIFT(364), - [571] = {.count = 1, .reusable = false}, SHIFT(365), - [573] = {.count = 1, .reusable = false}, SHIFT(366), - [575] = {.count = 1, .reusable = false}, SHIFT(367), - [577] = {.count = 1, .reusable = false}, SHIFT(321), - [579] = {.count = 1, .reusable = false}, SHIFT(371), - [581] = {.count = 1, .reusable = true}, SHIFT(372), - [583] = {.count = 1, .reusable = false}, SHIFT(373), - [585] = {.count = 1, .reusable = false}, SHIFT(374), - [587] = {.count = 1, .reusable = true}, SHIFT(366), - [589] = {.count = 1, .reusable = false}, SHIFT(375), - [591] = {.count = 1, .reusable = false}, SHIFT(376), - [593] = {.count = 1, .reusable = true}, SHIFT(382), - [595] = {.count = 1, .reusable = false}, SHIFT(383), - [597] = {.count = 1, .reusable = false}, SHIFT(384), - [599] = {.count = 1, .reusable = false}, SHIFT(385), - [601] = {.count = 1, .reusable = false}, SHIFT(386), - [603] = {.count = 1, .reusable = false}, SHIFT(390), - [605] = {.count = 1, .reusable = true}, SHIFT(391), - [607] = {.count = 1, .reusable = false}, SHIFT(388), - [609] = {.count = 1, .reusable = false}, SHIFT(389), + [447] = {.count = 1, .reusable = true}, SHIFT(291), + [449] = {.count = 1, .reusable = true}, SHIFT(292), + [451] = {.count = 1, .reusable = true}, SHIFT(293), + [453] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 1), + [455] = {.count = 1, .reusable = true}, SHIFT(297), + [457] = {.count = 1, .reusable = true}, SHIFT(296), + [459] = {.count = 1, .reusable = true}, REDUCE(sym__with_expr, 1), + [461] = {.count = 1, .reusable = true}, REDUCE(sym_source_file, 1), + [463] = {.count = 1, .reusable = true}, SHIFT(301), + [465] = {.count = 1, .reusable = false}, REDUCE(sym_lhs_decl, 1, .alias_sequence_id = 1), + [467] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 1, .alias_sequence_id = 1), + [469] = {.count = 1, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 1), + [471] = {.count = 1, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 1), + [473] = {.count = 1, .reusable = false}, SHIFT(303), + [475] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 1), + [477] = {.count = 1, .reusable = false}, SHIFT(302), + [479] = {.count = 1, .reusable = true}, SHIFT(306), + [481] = {.count = 1, .reusable = false}, SHIFT(309), + [483] = {.count = 1, .reusable = true}, SHIFT(310), + [485] = {.count = 1, .reusable = false}, SHIFT(311), + [487] = {.count = 1, .reusable = false}, SHIFT(312), + [489] = {.count = 1, .reusable = false}, SHIFT(313), + [491] = {.count = 1, .reusable = true}, SHIFT(314), + [493] = {.count = 1, .reusable = false}, SHIFT(315), + [495] = {.count = 1, .reusable = true}, SHIFT(313), + [497] = {.count = 1, .reusable = false}, SHIFT(316), + [499] = {.count = 1, .reusable = false}, SHIFT(320), + [501] = {.count = 1, .reusable = true}, REDUCE(sym_primitive, 2), + [503] = {.count = 1, .reusable = true}, REDUCE(sym_abstract, 2), + [505] = {.count = 1, .reusable = false}, SHIFT(325), + [507] = {.count = 1, .reusable = false}, SHIFT(331), + [509] = {.count = 1, .reusable = false}, SHIFT(332), + [511] = {.count = 1, .reusable = false}, SHIFT(333), + [513] = {.count = 1, .reusable = true}, SHIFT(334), + [515] = {.count = 1, .reusable = false}, SHIFT(335), + [517] = {.count = 1, .reusable = false}, SHIFT(336), + [519] = {.count = 1, .reusable = true}, SHIFT(326), + [521] = {.count = 1, .reusable = false}, SHIFT(327), + [523] = {.count = 1, .reusable = false}, SHIFT(328), + [525] = {.count = 1, .reusable = false}, SHIFT(329), + [527] = {.count = 1, .reusable = false}, SHIFT(330), + [529] = {.count = 1, .reusable = false}, SHIFT(337), + [531] = {.count = 1, .reusable = false}, SHIFT(338), + [533] = {.count = 1, .reusable = false}, SHIFT(339), + [535] = {.count = 1, .reusable = true}, SHIFT(328), + [537] = {.count = 1, .reusable = true}, SHIFT(340), + [539] = {.count = 1, .reusable = true}, SHIFT(346), + [541] = {.count = 1, .reusable = false}, SHIFT(347), + [543] = {.count = 1, .reusable = false}, SHIFT(348), + [545] = {.count = 1, .reusable = true}, SHIFT(349), + [547] = {.count = 1, .reusable = false}, SHIFT(350), + [549] = {.count = 1, .reusable = false}, SHIFT(351), + [551] = {.count = 1, .reusable = true}, SHIFT(352), + [553] = {.count = 1, .reusable = false}, SHIFT(353), + [555] = {.count = 1, .reusable = false}, SHIFT(354), + [557] = {.count = 1, .reusable = true}, SHIFT(351), + [559] = {.count = 1, .reusable = false}, SHIFT(355), + [561] = {.count = 1, .reusable = false}, SHIFT(360), + [563] = {.count = 1, .reusable = false}, SHIFT(359), + [565] = {.count = 1, .reusable = false}, SHIFT(361), + [567] = {.count = 1, .reusable = false}, SHIFT(362), + [569] = {.count = 1, .reusable = false}, SHIFT(363), + [571] = {.count = 1, .reusable = false}, SHIFT(364), + [573] = {.count = 1, .reusable = false}, SHIFT(365), + [575] = {.count = 1, .reusable = false}, SHIFT(366), + [577] = {.count = 1, .reusable = false}, SHIFT(371), + [579] = {.count = 1, .reusable = true}, SHIFT(372), + [581] = {.count = 1, .reusable = true}, SHIFT(373), + [583] = {.count = 1, .reusable = true}, SHIFT(374), + [585] = {.count = 1, .reusable = false}, SHIFT(375), + [587] = {.count = 1, .reusable = true}, SHIFT(376), + [589] = {.count = 1, .reusable = false}, SHIFT(377), + [591] = {.count = 1, .reusable = false}, SHIFT(378), + [593] = {.count = 1, .reusable = true}, SHIFT(379), + [595] = {.count = 1, .reusable = false}, SHIFT(380), + [597] = {.count = 1, .reusable = false}, SHIFT(381), + [599] = {.count = 1, .reusable = false}, SHIFT(382), + [601] = {.count = 1, .reusable = false}, SHIFT(383), + [603] = {.count = 1, .reusable = false}, SHIFT(384), + [605] = {.count = 1, .reusable = true}, SHIFT(377), + [607] = {.count = 1, .reusable = true}, SHIFT(388), + [609] = {.count = 1, .reusable = false}, SHIFT(391), [611] = {.count = 1, .reusable = false}, SHIFT(392), - [613] = {.count = 1, .reusable = false}, SHIFT(393), - [615] = {.count = 1, .reusable = false}, SHIFT(394), - [617] = {.count = 1, .reusable = false}, SHIFT(398), - [619] = {.count = 1, .reusable = true}, SHIFT(399), - [621] = {.count = 1, .reusable = false}, SHIFT(400), - [623] = {.count = 1, .reusable = false}, SHIFT(401), - [625] = {.count = 1, .reusable = false}, SHIFT(402), - [627] = {.count = 1, .reusable = false}, SHIFT(403), - [629] = {.count = 1, .reusable = false}, SHIFT(404), - [631] = {.count = 1, .reusable = true}, SHIFT(405), - [633] = {.count = 1, .reusable = false}, SHIFT(406), - [635] = {.count = 1, .reusable = false}, SHIFT(407), - [637] = {.count = 1, .reusable = true}, SHIFT(400), - [639] = {.count = 1, .reusable = true}, SHIFT(413), - [641] = {.count = 1, .reusable = true}, SHIFT(414), - [643] = {.count = 1, .reusable = false}, SHIFT(415), - [645] = {.count = 1, .reusable = false}, SHIFT(416), - [647] = {.count = 1, .reusable = true}, SHIFT(417), - [649] = {.count = 1, .reusable = false}, SHIFT(418), - [651] = {.count = 1, .reusable = false}, SHIFT(419), - [653] = {.count = 1, .reusable = false}, SHIFT(420), - [655] = {.count = 1, .reusable = false}, SHIFT(421), - [657] = {.count = 1, .reusable = true}, SHIFT(422), - [659] = {.count = 1, .reusable = false}, SHIFT(423), - [661] = {.count = 1, .reusable = true}, SHIFT(416), - [663] = {.count = 1, .reusable = false}, SHIFT(424), - [665] = {.count = 1, .reusable = true}, REDUCE(sym_expr, 1), - [667] = {.count = 1, .reusable = false}, REDUCE(sym_expr, 1), - [669] = {.count = 1, .reusable = false}, REDUCE(sym_let, 1), - [671] = {.count = 1, .reusable = false}, SHIFT(431), - [673] = {.count = 1, .reusable = true}, SHIFT(429), - [675] = {.count = 1, .reusable = false}, SHIFT(430), + [613] = {.count = 1, .reusable = false}, SHIFT(395), + [615] = {.count = 1, .reusable = false}, SHIFT(401), + [617] = {.count = 1, .reusable = false}, SHIFT(402), + [619] = {.count = 1, .reusable = false}, SHIFT(403), + [621] = {.count = 1, .reusable = true}, SHIFT(404), + [623] = {.count = 1, .reusable = false}, SHIFT(405), + [625] = {.count = 1, .reusable = false}, SHIFT(406), + [627] = {.count = 1, .reusable = true}, SHIFT(396), + [629] = {.count = 1, .reusable = false}, SHIFT(397), + [631] = {.count = 1, .reusable = false}, SHIFT(398), + [633] = {.count = 1, .reusable = false}, SHIFT(399), + [635] = {.count = 1, .reusable = false}, SHIFT(400), + [637] = {.count = 1, .reusable = false}, SHIFT(340), + [639] = {.count = 1, .reusable = false}, SHIFT(407), + [641] = {.count = 1, .reusable = false}, SHIFT(408), + [643] = {.count = 1, .reusable = false}, SHIFT(409), + [645] = {.count = 1, .reusable = true}, SHIFT(398), + [647] = {.count = 1, .reusable = true}, SHIFT(416), + [649] = {.count = 1, .reusable = false}, SHIFT(417), + [651] = {.count = 1, .reusable = false}, SHIFT(418), + [653] = {.count = 1, .reusable = false}, SHIFT(419), + [655] = {.count = 1, .reusable = false}, SHIFT(420), + [657] = {.count = 1, .reusable = false}, SHIFT(423), + [659] = {.count = 1, .reusable = false}, SHIFT(424), + [661] = {.count = 1, .reusable = true}, SHIFT(427), + [663] = {.count = 1, .reusable = false}, SHIFT(421), + [665] = {.count = 1, .reusable = false}, SHIFT(422), + [667] = {.count = 1, .reusable = false}, SHIFT(425), + [669] = {.count = 1, .reusable = false}, SHIFT(426), + [671] = {.count = 1, .reusable = true}, SHIFT(433), + [673] = {.count = 1, .reusable = true}, SHIFT(434), + [675] = {.count = 1, .reusable = true}, SHIFT(435), [677] = {.count = 1, .reusable = false}, SHIFT(432), - [679] = {.count = 1, .reusable = true}, SHIFT(436), - [681] = {.count = 1, .reusable = true}, SHIFT(437), - [683] = {.count = 1, .reusable = true}, SHIFT(438), - [685] = {.count = 1, .reusable = false}, SHIFT(435), - [687] = {.count = 1, .reusable = true}, SHIFT(55), - [689] = {.count = 1, .reusable = true}, REDUCE(sym__typed_bindings1, 1), - [691] = {.count = 1, .reusable = false}, REDUCE(sym__with_expr, 1), - [693] = {.count = 1, .reusable = false}, SHIFT(440), - [695] = {.count = 1, .reusable = true}, SHIFT(441), - [697] = {.count = 1, .reusable = false}, SHIFT(442), - [699] = {.count = 1, .reusable = false}, SHIFT(443), - [701] = {.count = 1, .reusable = false}, SHIFT(444), - [703] = {.count = 1, .reusable = true}, SHIFT(445), - [705] = {.count = 1, .reusable = false}, SHIFT(446), - [707] = {.count = 1, .reusable = true}, SHIFT(444), - [709] = {.count = 1, .reusable = false}, SHIFT(447), - [711] = {.count = 1, .reusable = false}, SHIFT(451), - [713] = {.count = 1, .reusable = true}, REDUCE(sym_primitive, 2), - [715] = {.count = 1, .reusable = true}, SHIFT(454), - [717] = {.count = 1, .reusable = true}, REDUCE(sym_abstract, 2), - [719] = {.count = 1, .reusable = false}, SHIFT(457), - [721] = {.count = 1, .reusable = false}, SHIFT(458), - [723] = {.count = 1, .reusable = false}, SHIFT(459), - [725] = {.count = 1, .reusable = false}, SHIFT(460), - [727] = {.count = 1, .reusable = false}, SHIFT(461), - [729] = {.count = 1, .reusable = true}, SHIFT(462), - [731] = {.count = 1, .reusable = false}, SHIFT(463), - [733] = {.count = 1, .reusable = false}, SHIFT(464), - [735] = {.count = 1, .reusable = false}, SHIFT(465), - [737] = {.count = 1, .reusable = false}, SHIFT(466), - [739] = {.count = 1, .reusable = true}, SHIFT(467), - [741] = {.count = 1, .reusable = false}, SHIFT(468), - [743] = {.count = 1, .reusable = false}, SHIFT(469), - [745] = {.count = 1, .reusable = true}, SHIFT(460), - [747] = {.count = 1, .reusable = false}, SHIFT(470), - [749] = {.count = 1, .reusable = false}, SHIFT(471), - [751] = {.count = 1, .reusable = true}, SHIFT(479), - [753] = {.count = 1, .reusable = false}, SHIFT(482), + [679] = {.count = 1, .reusable = true}, SHIFT(61), + [681] = {.count = 1, .reusable = true}, REDUCE(sym__typed_bindings1, 1), + [683] = {.count = 1, .reusable = false}, REDUCE(sym_let, 1), + [685] = {.count = 1, .reusable = true}, SHIFT(437), + [687] = {.count = 1, .reusable = false}, SHIFT(440), + [689] = {.count = 1, .reusable = true}, SHIFT(438), + [691] = {.count = 1, .reusable = false}, SHIFT(439), + [693] = {.count = 1, .reusable = false}, SHIFT(441), + [695] = {.count = 1, .reusable = true}, SHIFT(444), + [697] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 1), + [699] = {.count = 1, .reusable = true}, REDUCE(sym_expr, 1), + [701] = {.count = 1, .reusable = false}, REDUCE(sym_expr, 1), + [703] = {.count = 1, .reusable = false}, REDUCE(sym__with_expr, 1), + [705] = {.count = 1, .reusable = false}, SHIFT(445), + [707] = {.count = 1, .reusable = false}, SHIFT(446), + [709] = {.count = 1, .reusable = true}, SHIFT(447), + [711] = {.count = 1, .reusable = false}, SHIFT(448), + [713] = {.count = 1, .reusable = true}, SHIFT(449), + [715] = {.count = 1, .reusable = false}, SHIFT(450), + [717] = {.count = 1, .reusable = false}, SHIFT(451), + [719] = {.count = 1, .reusable = false}, SHIFT(452), + [721] = {.count = 1, .reusable = false}, SHIFT(453), + [723] = {.count = 1, .reusable = false}, SHIFT(454), + [725] = {.count = 1, .reusable = true}, SHIFT(446), + [727] = {.count = 1, .reusable = true}, SHIFT(459), + [729] = {.count = 1, .reusable = false}, SHIFT(464), + [731] = {.count = 1, .reusable = false}, SHIFT(459), + [733] = {.count = 1, .reusable = true}, SHIFT(467), + [735] = {.count = 1, .reusable = true}, REDUCE(sym__atoms1, 1), + [737] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 2), + [739] = {.count = 1, .reusable = true}, SHIFT(470), + [741] = {.count = 1, .reusable = false}, SHIFT(471), + [743] = {.count = 1, .reusable = false}, SHIFT(473), + [745] = {.count = 1, .reusable = true}, SHIFT(474), + [747] = {.count = 1, .reusable = false}, SHIFT(475), + [749] = {.count = 1, .reusable = false}, SHIFT(476), + [751] = {.count = 1, .reusable = true}, SHIFT(477), + [753] = {.count = 1, .reusable = false}, SHIFT(478), [755] = {.count = 1, .reusable = false}, SHIFT(479), - [757] = {.count = 1, .reusable = false}, SHIFT(485), - [759] = {.count = 1, .reusable = false}, SHIFT(489), - [761] = {.count = 1, .reusable = true}, SHIFT(490), - [763] = {.count = 1, .reusable = false}, REDUCE(sym__record_name, 1, .alias_sequence_id = 2), - [765] = {.count = 1, .reusable = true}, REDUCE(sym__record_name, 1, .alias_sequence_id = 2), - [767] = {.count = 1, .reusable = false}, SHIFT(494), - [769] = {.count = 1, .reusable = false}, SHIFT(495), - [771] = {.count = 1, .reusable = true}, SHIFT(496), - [773] = {.count = 1, .reusable = false}, SHIFT(497), - [775] = {.count = 1, .reusable = false}, SHIFT(498), - [777] = {.count = 1, .reusable = true}, SHIFT(499), - [779] = {.count = 1, .reusable = false}, SHIFT(500), - [781] = {.count = 1, .reusable = false}, SHIFT(501), - [783] = {.count = 1, .reusable = true}, SHIFT(498), - [785] = {.count = 1, .reusable = false}, SHIFT(502), - [787] = {.count = 1, .reusable = true}, SHIFT(506), - [789] = {.count = 1, .reusable = true}, SHIFT(508), - [791] = {.count = 1, .reusable = false}, SHIFT(511), - [793] = {.count = 1, .reusable = true}, SHIFT(512), - [795] = {.count = 1, .reusable = false}, SHIFT(513), - [797] = {.count = 1, .reusable = false}, SHIFT(514), - [799] = {.count = 1, .reusable = true}, SHIFT(515), - [801] = {.count = 1, .reusable = false}, SHIFT(516), - [803] = {.count = 1, .reusable = true}, SHIFT(514), - [805] = {.count = 1, .reusable = false}, SHIFT(517), - [807] = {.count = 1, .reusable = false}, SHIFT(522), - [809] = {.count = 1, .reusable = false}, REDUCE(sym__atom_no_curly, 2), - [811] = {.count = 1, .reusable = true}, REDUCE(sym__atom_no_curly, 2), - [813] = {.count = 1, .reusable = false}, SHIFT(523), - [815] = {.count = 1, .reusable = false}, SHIFT(506), + [757] = {.count = 1, .reusable = false}, SHIFT(480), + [759] = {.count = 1, .reusable = false}, SHIFT(481), + [761] = {.count = 1, .reusable = false}, SHIFT(482), + [763] = {.count = 1, .reusable = true}, SHIFT(475), + [765] = {.count = 1, .reusable = true}, SHIFT(486), + [767] = {.count = 1, .reusable = false}, SHIFT(489), + [769] = {.count = 1, .reusable = false}, SHIFT(492), + [771] = {.count = 1, .reusable = false}, SHIFT(496), + [773] = {.count = 1, .reusable = false}, SHIFT(498), + [775] = {.count = 1, .reusable = false}, SHIFT(500), + [777] = {.count = 1, .reusable = false}, SHIFT(499), + [779] = {.count = 1, .reusable = false}, SHIFT(501), + [781] = {.count = 1, .reusable = false}, SHIFT(503), + [783] = {.count = 1, .reusable = true}, SHIFT(504), + [785] = {.count = 1, .reusable = false}, SHIFT(505), + [787] = {.count = 1, .reusable = false}, SHIFT(506), + [789] = {.count = 1, .reusable = true}, SHIFT(507), + [791] = {.count = 1, .reusable = false}, SHIFT(508), + [793] = {.count = 1, .reusable = true}, SHIFT(506), + [795] = {.count = 1, .reusable = false}, SHIFT(509), + [797] = {.count = 1, .reusable = true}, SHIFT(492), + [799] = {.count = 1, .reusable = false}, SHIFT(515), + [801] = {.count = 1, .reusable = true}, SHIFT(516), + [803] = {.count = 1, .reusable = false}, SHIFT(519), + [805] = {.count = 1, .reusable = false}, SHIFT(520), + [807] = {.count = 1, .reusable = true}, SHIFT(521), + [809] = {.count = 1, .reusable = false}, SHIFT(522), + [811] = {.count = 1, .reusable = false}, SHIFT(523), + [813] = {.count = 1, .reusable = true}, SHIFT(524), + [815] = {.count = 1, .reusable = false}, SHIFT(525), [817] = {.count = 1, .reusable = true}, SHIFT(526), [819] = {.count = 1, .reusable = false}, SHIFT(527), [821] = {.count = 1, .reusable = false}, SHIFT(528), [823] = {.count = 1, .reusable = false}, SHIFT(529), [825] = {.count = 1, .reusable = false}, SHIFT(530), - [827] = {.count = 1, .reusable = true}, SHIFT(532), - [829] = {.count = 1, .reusable = false}, SHIFT(534), - [831] = {.count = 1, .reusable = true}, SHIFT(535), - [833] = {.count = 1, .reusable = false}, SHIFT(536), - [835] = {.count = 1, .reusable = false}, SHIFT(537), - [837] = {.count = 1, .reusable = false}, SHIFT(538), - [839] = {.count = 1, .reusable = false}, SHIFT(539), - [841] = {.count = 1, .reusable = false}, SHIFT(540), - [843] = {.count = 1, .reusable = true}, SHIFT(541), - [845] = {.count = 1, .reusable = false}, SHIFT(542), - [847] = {.count = 1, .reusable = false}, SHIFT(543), - [849] = {.count = 1, .reusable = true}, SHIFT(536), - [851] = {.count = 1, .reusable = true}, SHIFT(549), - [853] = {.count = 1, .reusable = false}, SHIFT(550), - [855] = {.count = 1, .reusable = false}, SHIFT(551), - [857] = {.count = 1, .reusable = true}, SHIFT(552), - [859] = {.count = 1, .reusable = false}, SHIFT(553), - [861] = {.count = 1, .reusable = false}, SHIFT(554), - [863] = {.count = 1, .reusable = false}, SHIFT(555), - [865] = {.count = 1, .reusable = false}, SHIFT(556), - [867] = {.count = 1, .reusable = true}, SHIFT(557), - [869] = {.count = 1, .reusable = false}, SHIFT(558), - [871] = {.count = 1, .reusable = true}, SHIFT(551), - [873] = {.count = 1, .reusable = false}, SHIFT(559), - [875] = {.count = 1, .reusable = false}, SHIFT(565), - [877] = {.count = 1, .reusable = true}, SHIFT(563), - [879] = {.count = 1, .reusable = false}, SHIFT(564), - [881] = {.count = 1, .reusable = false}, SHIFT(566), - [883] = {.count = 1, .reusable = false}, SHIFT(567), - [885] = {.count = 1, .reusable = false}, SHIFT(571), - [887] = {.count = 1, .reusable = true}, SHIFT(569), - [889] = {.count = 1, .reusable = false}, SHIFT(570), - [891] = {.count = 1, .reusable = true}, SHIFT(568), - [893] = {.count = 1, .reusable = true}, REDUCE(sym_instance, 2), - [895] = {.count = 1, .reusable = false}, REDUCE(sym_integer, 1), - [897] = {.count = 1, .reusable = false}, SHIFT(573), - [899] = {.count = 1, .reusable = false}, SHIFT(574), - [901] = {.count = 1, .reusable = true}, REDUCE(sym_macro, 2), - [903] = {.count = 1, .reusable = true}, SHIFT(576), - [905] = {.count = 1, .reusable = false}, SHIFT(577), - [907] = {.count = 1, .reusable = false}, SHIFT(578), - [909] = {.count = 1, .reusable = false}, SHIFT(579), - [911] = {.count = 1, .reusable = false}, SHIFT(580), - [913] = {.count = 1, .reusable = false}, SHIFT(581), - [915] = {.count = 1, .reusable = true}, SHIFT(579), - [917] = {.count = 1, .reusable = false}, SHIFT(582), - [919] = {.count = 1, .reusable = true}, REDUCE(sym_field, 2), - [921] = {.count = 1, .reusable = true}, REDUCE(sym_private, 2), - [923] = {.count = 1, .reusable = true}, REDUCE(sym_generalize, 2), - [925] = {.count = 1, .reusable = false}, SHIFT(588), - [927] = {.count = 1, .reusable = false}, SHIFT(589), - [929] = {.count = 1, .reusable = false}, SHIFT(590), - [931] = {.count = 1, .reusable = false}, SHIFT(592), - [933] = {.count = 1, .reusable = false}, SHIFT(596), - [935] = {.count = 1, .reusable = true}, SHIFT(598), - [937] = {.count = 1, .reusable = false}, SHIFT(601), - [939] = {.count = 1, .reusable = true}, SHIFT(602), - [941] = {.count = 1, .reusable = false}, SHIFT(603), - [943] = {.count = 1, .reusable = false}, SHIFT(604), - [945] = {.count = 1, .reusable = true}, SHIFT(605), - [947] = {.count = 1, .reusable = false}, SHIFT(606), - [949] = {.count = 1, .reusable = true}, SHIFT(604), - [951] = {.count = 1, .reusable = false}, SHIFT(607), - [953] = {.count = 1, .reusable = false}, SHIFT(612), - [955] = {.count = 1, .reusable = false}, SHIFT(611), - [957] = {.count = 1, .reusable = false}, SHIFT(613), - [959] = {.count = 1, .reusable = true}, SHIFT(592), - [961] = {.count = 1, .reusable = false}, SHIFT(617), - [963] = {.count = 1, .reusable = true}, SHIFT(619), - [965] = {.count = 1, .reusable = false}, SHIFT(622), - [967] = {.count = 1, .reusable = true}, SHIFT(623), - [969] = {.count = 1, .reusable = false}, SHIFT(624), - [971] = {.count = 1, .reusable = false}, SHIFT(625), - [973] = {.count = 1, .reusable = false}, SHIFT(626), - [975] = {.count = 1, .reusable = false}, SHIFT(627), - [977] = {.count = 1, .reusable = false}, SHIFT(628), - [979] = {.count = 1, .reusable = true}, SHIFT(629), - [981] = {.count = 1, .reusable = false}, SHIFT(630), - [983] = {.count = 1, .reusable = false}, SHIFT(631), - [985] = {.count = 1, .reusable = true}, SHIFT(624), - [987] = {.count = 1, .reusable = false}, SHIFT(635), - [989] = {.count = 1, .reusable = false}, SHIFT(636), - [991] = {.count = 1, .reusable = true}, SHIFT(637), - [993] = {.count = 1, .reusable = true}, SHIFT(639), - [995] = {.count = 1, .reusable = true}, SHIFT(638), - [997] = {.count = 1, .reusable = false}, SHIFT(641), - [999] = {.count = 1, .reusable = false}, SHIFT(642), - [1001] = {.count = 1, .reusable = true}, SHIFT(643), - [1003] = {.count = 1, .reusable = false}, SHIFT(644), - [1005] = {.count = 1, .reusable = false}, SHIFT(645), - [1007] = {.count = 1, .reusable = false}, SHIFT(646), - [1009] = {.count = 1, .reusable = false}, SHIFT(647), - [1011] = {.count = 1, .reusable = true}, SHIFT(648), - [1013] = {.count = 1, .reusable = false}, SHIFT(649), - [1015] = {.count = 1, .reusable = true}, SHIFT(642), - [1017] = {.count = 1, .reusable = false}, SHIFT(650), - [1019] = {.count = 1, .reusable = true}, SHIFT(655), - [1021] = {.count = 1, .reusable = true}, SHIFT(656), - [1023] = {.count = 1, .reusable = false}, SHIFT(658), - [1025] = {.count = 1, .reusable = false}, SHIFT(657), - [1027] = {.count = 1, .reusable = true}, REDUCE(sym_anonymous_name, 1), - [1029] = {.count = 1, .reusable = false}, REDUCE(sym_anonymous_name, 1), - [1031] = {.count = 1, .reusable = false}, SHIFT(660), - [1033] = {.count = 1, .reusable = false}, SHIFT(661), - [1035] = {.count = 1, .reusable = true}, SHIFT(662), - [1037] = {.count = 1, .reusable = false}, SHIFT(663), - [1039] = {.count = 1, .reusable = false}, SHIFT(664), - [1041] = {.count = 1, .reusable = false}, SHIFT(665), - [1043] = {.count = 1, .reusable = false}, SHIFT(666), - [1045] = {.count = 1, .reusable = true}, SHIFT(667), - [1047] = {.count = 1, .reusable = false}, SHIFT(668), - [1049] = {.count = 1, .reusable = true}, SHIFT(661), - [1051] = {.count = 1, .reusable = false}, SHIFT(669), - [1053] = {.count = 1, .reusable = true}, SHIFT(670), - [1055] = {.count = 1, .reusable = false}, SHIFT(675), - [1057] = {.count = 1, .reusable = false}, SHIFT(676), - [1059] = {.count = 1, .reusable = true}, SHIFT(677), - [1061] = {.count = 1, .reusable = false}, SHIFT(678), - [1063] = {.count = 1, .reusable = false}, SHIFT(670), - [1065] = {.count = 1, .reusable = false}, SHIFT(679), - [1067] = {.count = 1, .reusable = false}, SHIFT(680), - [1069] = {.count = 1, .reusable = false}, SHIFT(681), - [1071] = {.count = 1, .reusable = true}, SHIFT(682), - [1073] = {.count = 1, .reusable = false}, SHIFT(683), - [1075] = {.count = 1, .reusable = true}, SHIFT(676), - [1077] = {.count = 1, .reusable = false}, SHIFT(684), - [1079] = {.count = 1, .reusable = true}, SHIFT(690), - [1081] = {.count = 1, .reusable = false}, SHIFT(692), - [1083] = {.count = 1, .reusable = true}, SHIFT(691), - [1085] = {.count = 1, .reusable = false}, SHIFT(689), - [1087] = {.count = 1, .reusable = false}, SHIFT(696), - [1089] = {.count = 1, .reusable = false}, SHIFT(694), - [1091] = {.count = 1, .reusable = false}, SHIFT(695), - [1093] = {.count = 1, .reusable = false}, SHIFT(697), - [1095] = {.count = 1, .reusable = false}, SHIFT(698), - [1097] = {.count = 1, .reusable = false}, SHIFT(699), - [1099] = {.count = 1, .reusable = false}, SHIFT(707), - [1101] = {.count = 1, .reusable = false}, SHIFT(703), - [1103] = {.count = 1, .reusable = false}, SHIFT(710), - [1105] = {.count = 1, .reusable = false}, SHIFT(711), - [1107] = {.count = 1, .reusable = false}, SHIFT(712), - [1109] = {.count = 1, .reusable = false}, SHIFT(717), - [1111] = {.count = 1, .reusable = false}, SHIFT(704), - [1113] = {.count = 1, .reusable = false}, SHIFT(705), - [1115] = {.count = 1, .reusable = false}, SHIFT(706), - [1117] = {.count = 1, .reusable = true}, SHIFT(708), - [1119] = {.count = 1, .reusable = false}, SHIFT(709), - [1121] = {.count = 1, .reusable = false}, SHIFT(713), - [1123] = {.count = 1, .reusable = true}, SHIFT(714), - [1125] = {.count = 1, .reusable = false}, SHIFT(715), - [1127] = {.count = 1, .reusable = false}, SHIFT(716), - [1129] = {.count = 1, .reusable = true}, SHIFT(706), - [1131] = {.count = 1, .reusable = false}, SHIFT(718), - [1133] = {.count = 1, .reusable = false}, SHIFT(719), - [1135] = {.count = 1, .reusable = true}, SHIFT(727), - [1137] = {.count = 1, .reusable = true}, REDUCE(sym__binding_name, 1, .alias_sequence_id = 3), - [1139] = {.count = 1, .reusable = false}, REDUCE(sym__binding_name, 1, .alias_sequence_id = 3), - [1141] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_binding, 1), - [1143] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_binding, 1), - [1145] = {.count = 1, .reusable = false}, SHIFT(729), - [1147] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 2), - [1149] = {.count = 1, .reusable = true}, SHIFT(730), - [1151] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 1), - [1153] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 1), - [1155] = {.count = 1, .reusable = true}, REDUCE(sym__module_name, 1, .alias_sequence_id = 4), - [1157] = {.count = 1, .reusable = false}, REDUCE(sym__module_name, 1, .alias_sequence_id = 4), - [1159] = {.count = 1, .reusable = false}, SHIFT(732), - [1161] = {.count = 1, .reusable = true}, REDUCE(sym_open, 2), - [1163] = {.count = 1, .reusable = false}, SHIFT(733), - [1165] = {.count = 1, .reusable = true}, SHIFT(734), - [1167] = {.count = 1, .reusable = false}, SHIFT(735), - [1169] = {.count = 1, .reusable = false}, SHIFT(736), - [1171] = {.count = 1, .reusable = false}, SHIFT(737), - [1173] = {.count = 1, .reusable = false}, SHIFT(738), - [1175] = {.count = 1, .reusable = false}, SHIFT(739), - [1177] = {.count = 1, .reusable = false}, SHIFT(740), - [1179] = {.count = 1, .reusable = false}, SHIFT(741), - [1181] = {.count = 1, .reusable = false}, SHIFT(742), - [1183] = {.count = 1, .reusable = true}, SHIFT(743), - [1185] = {.count = 1, .reusable = false}, SHIFT(744), - [1187] = {.count = 1, .reusable = true}, SHIFT(735), - [1189] = {.count = 1, .reusable = false}, SHIFT(745), - [1191] = {.count = 1, .reusable = false}, SHIFT(746), - [1193] = {.count = 1, .reusable = true}, SHIFT(752), - [1195] = {.count = 1, .reusable = true}, SHIFT(754), - [1197] = {.count = 1, .reusable = true}, SHIFT(757), - [1199] = {.count = 1, .reusable = false}, SHIFT(758), - [1201] = {.count = 1, .reusable = true}, SHIFT(759), - [1203] = {.count = 1, .reusable = false}, SHIFT(760), - [1205] = {.count = 1, .reusable = false}, SHIFT(764), - [1207] = {.count = 1, .reusable = false}, SHIFT(765), - [1209] = {.count = 1, .reusable = false}, SHIFT(752), - [1211] = {.count = 1, .reusable = true}, SHIFT(768), - [1213] = {.count = 1, .reusable = false}, SHIFT(769), - [1215] = {.count = 1, .reusable = false}, SHIFT(770), - [1217] = {.count = 1, .reusable = false}, SHIFT(771), - [1219] = {.count = 1, .reusable = false}, SHIFT(772), - [1221] = {.count = 1, .reusable = true}, SHIFT(774), - [1223] = {.count = 1, .reusable = false}, SHIFT(776), - [1225] = {.count = 1, .reusable = true}, SHIFT(777), - [1227] = {.count = 1, .reusable = false}, SHIFT(778), - [1229] = {.count = 1, .reusable = false}, SHIFT(779), - [1231] = {.count = 1, .reusable = false}, SHIFT(780), - [1233] = {.count = 1, .reusable = false}, SHIFT(781), - [1235] = {.count = 1, .reusable = false}, SHIFT(782), - [1237] = {.count = 1, .reusable = true}, SHIFT(783), - [1239] = {.count = 1, .reusable = false}, SHIFT(784), - [1241] = {.count = 1, .reusable = false}, SHIFT(785), - [1243] = {.count = 1, .reusable = true}, SHIFT(778), - [1245] = {.count = 1, .reusable = true}, SHIFT(791), + [827] = {.count = 1, .reusable = false}, SHIFT(531), + [829] = {.count = 1, .reusable = true}, SHIFT(523), + [831] = {.count = 1, .reusable = true}, SHIFT(534), + [833] = {.count = 1, .reusable = true}, SHIFT(535), + [835] = {.count = 1, .reusable = true}, SHIFT(537), + [837] = {.count = 1, .reusable = true}, SHIFT(536), + [839] = {.count = 1, .reusable = true}, SHIFT(541), + [841] = {.count = 1, .reusable = false}, SHIFT(543), + [843] = {.count = 1, .reusable = false}, SHIFT(542), + [845] = {.count = 1, .reusable = true}, SHIFT(545), + [847] = {.count = 1, .reusable = false}, SHIFT(550), + [849] = {.count = 1, .reusable = false}, SHIFT(545), + [851] = {.count = 1, .reusable = false}, SHIFT(553), + [853] = {.count = 1, .reusable = false}, SHIFT(555), + [855] = {.count = 1, .reusable = true}, SHIFT(556), + [857] = {.count = 1, .reusable = false}, REDUCE(sym__record_name, 1, .alias_sequence_id = 2), + [859] = {.count = 1, .reusable = true}, REDUCE(sym__record_name, 1, .alias_sequence_id = 2), + [861] = {.count = 1, .reusable = false}, SHIFT(560), + [863] = {.count = 1, .reusable = false}, SHIFT(561), + [865] = {.count = 1, .reusable = true}, SHIFT(562), + [867] = {.count = 1, .reusable = false}, SHIFT(563), + [869] = {.count = 1, .reusable = false}, SHIFT(564), + [871] = {.count = 1, .reusable = true}, SHIFT(565), + [873] = {.count = 1, .reusable = false}, SHIFT(566), + [875] = {.count = 1, .reusable = false}, SHIFT(567), + [877] = {.count = 1, .reusable = true}, SHIFT(564), + [879] = {.count = 1, .reusable = false}, SHIFT(568), + [881] = {.count = 1, .reusable = true}, SHIFT(572), + [883] = {.count = 1, .reusable = false}, SHIFT(574), + [885] = {.count = 1, .reusable = false}, SHIFT(575), + [887] = {.count = 1, .reusable = true}, SHIFT(576), + [889] = {.count = 1, .reusable = false}, SHIFT(577), + [891] = {.count = 1, .reusable = false}, SHIFT(578), + [893] = {.count = 1, .reusable = true}, SHIFT(579), + [895] = {.count = 1, .reusable = false}, SHIFT(580), + [897] = {.count = 1, .reusable = true}, SHIFT(578), + [899] = {.count = 1, .reusable = false}, SHIFT(581), + [901] = {.count = 1, .reusable = false}, SHIFT(586), + [903] = {.count = 1, .reusable = true}, SHIFT(587), + [905] = {.count = 1, .reusable = false}, SHIFT(588), + [907] = {.count = 1, .reusable = false}, SHIFT(589), + [909] = {.count = 1, .reusable = true}, SHIFT(590), + [911] = {.count = 1, .reusable = false}, SHIFT(591), + [913] = {.count = 1, .reusable = false}, SHIFT(592), + [915] = {.count = 1, .reusable = false}, SHIFT(593), + [917] = {.count = 1, .reusable = false}, SHIFT(594), + [919] = {.count = 1, .reusable = false}, SHIFT(595), + [921] = {.count = 1, .reusable = true}, SHIFT(588), + [923] = {.count = 1, .reusable = true}, SHIFT(599), + [925] = {.count = 1, .reusable = false}, SHIFT(602), + [927] = {.count = 1, .reusable = false}, SHIFT(572), + [929] = {.count = 1, .reusable = true}, SHIFT(607), + [931] = {.count = 1, .reusable = false}, SHIFT(608), + [933] = {.count = 1, .reusable = false}, SHIFT(609), + [935] = {.count = 1, .reusable = false}, SHIFT(610), + [937] = {.count = 1, .reusable = false}, SHIFT(611), + [939] = {.count = 1, .reusable = true}, SHIFT(612), + [941] = {.count = 1, .reusable = false}, SHIFT(617), + [943] = {.count = 1, .reusable = true}, SHIFT(615), + [945] = {.count = 1, .reusable = false}, SHIFT(616), + [947] = {.count = 1, .reusable = false}, SHIFT(618), + [949] = {.count = 1, .reusable = true}, SHIFT(619), + [951] = {.count = 1, .reusable = false}, SHIFT(620), + [953] = {.count = 1, .reusable = false}, SHIFT(621), + [955] = {.count = 1, .reusable = true}, SHIFT(622), + [957] = {.count = 1, .reusable = false}, SHIFT(623), + [959] = {.count = 1, .reusable = true}, SHIFT(624), + [961] = {.count = 1, .reusable = false}, SHIFT(625), + [963] = {.count = 1, .reusable = false}, SHIFT(626), + [965] = {.count = 1, .reusable = false}, SHIFT(627), + [967] = {.count = 1, .reusable = false}, SHIFT(628), + [969] = {.count = 1, .reusable = false}, SHIFT(629), + [971] = {.count = 1, .reusable = true}, SHIFT(621), + [973] = {.count = 1, .reusable = true}, SHIFT(633), + [975] = {.count = 1, .reusable = false}, SHIFT(635), + [977] = {.count = 1, .reusable = false}, SHIFT(636), + [979] = {.count = 1, .reusable = true}, SHIFT(637), + [981] = {.count = 1, .reusable = false}, SHIFT(638), + [983] = {.count = 1, .reusable = false}, SHIFT(639), + [985] = {.count = 1, .reusable = true}, SHIFT(640), + [987] = {.count = 1, .reusable = false}, SHIFT(641), + [989] = {.count = 1, .reusable = true}, SHIFT(639), + [991] = {.count = 1, .reusable = false}, SHIFT(642), + [993] = {.count = 1, .reusable = false}, REDUCE(sym__atom_no_curly, 2), + [995] = {.count = 1, .reusable = true}, REDUCE(sym__atom_no_curly, 2), + [997] = {.count = 1, .reusable = false}, SHIFT(647), + [999] = {.count = 1, .reusable = true}, SHIFT(648), + [1001] = {.count = 1, .reusable = false}, SHIFT(649), + [1003] = {.count = 1, .reusable = false}, SHIFT(650), + [1005] = {.count = 1, .reusable = true}, SHIFT(651), + [1007] = {.count = 1, .reusable = false}, SHIFT(652), + [1009] = {.count = 1, .reusable = false}, SHIFT(653), + [1011] = {.count = 1, .reusable = false}, SHIFT(654), + [1013] = {.count = 1, .reusable = false}, SHIFT(655), + [1015] = {.count = 1, .reusable = false}, SHIFT(656), + [1017] = {.count = 1, .reusable = true}, SHIFT(649), + [1019] = {.count = 1, .reusable = true}, SHIFT(660), + [1021] = {.count = 1, .reusable = false}, SHIFT(663), + [1023] = {.count = 1, .reusable = false}, SHIFT(633), + [1025] = {.count = 1, .reusable = true}, SHIFT(668), + [1027] = {.count = 1, .reusable = false}, SHIFT(669), + [1029] = {.count = 1, .reusable = false}, SHIFT(670), + [1031] = {.count = 1, .reusable = false}, SHIFT(671), + [1033] = {.count = 1, .reusable = false}, SHIFT(672), + [1035] = {.count = 1, .reusable = true}, SHIFT(673), + [1037] = {.count = 1, .reusable = false}, SHIFT(678), + [1039] = {.count = 1, .reusable = true}, SHIFT(676), + [1041] = {.count = 1, .reusable = false}, SHIFT(677), + [1043] = {.count = 1, .reusable = false}, SHIFT(679), + [1045] = {.count = 1, .reusable = true}, SHIFT(680), + [1047] = {.count = 1, .reusable = false}, SHIFT(681), + [1049] = {.count = 1, .reusable = false}, SHIFT(682), + [1051] = {.count = 1, .reusable = true}, SHIFT(683), + [1053] = {.count = 1, .reusable = false}, SHIFT(684), + [1055] = {.count = 1, .reusable = true}, SHIFT(685), + [1057] = {.count = 1, .reusable = false}, SHIFT(686), + [1059] = {.count = 1, .reusable = false}, SHIFT(687), + [1061] = {.count = 1, .reusable = false}, SHIFT(688), + [1063] = {.count = 1, .reusable = false}, SHIFT(689), + [1065] = {.count = 1, .reusable = false}, SHIFT(690), + [1067] = {.count = 1, .reusable = true}, SHIFT(682), + [1069] = {.count = 1, .reusable = false}, SHIFT(694), + [1071] = {.count = 1, .reusable = false}, SHIFT(698), + [1073] = {.count = 1, .reusable = true}, SHIFT(696), + [1075] = {.count = 1, .reusable = false}, SHIFT(697), + [1077] = {.count = 1, .reusable = true}, SHIFT(695), + [1079] = {.count = 1, .reusable = true}, REDUCE(sym_instance, 2), + [1081] = {.count = 1, .reusable = false}, REDUCE(sym_integer, 1), + [1083] = {.count = 1, .reusable = false}, SHIFT(700), + [1085] = {.count = 1, .reusable = false}, SHIFT(701), + [1087] = {.count = 1, .reusable = true}, REDUCE(sym_macro, 2), + [1089] = {.count = 1, .reusable = true}, SHIFT(703), + [1091] = {.count = 1, .reusable = false}, SHIFT(704), + [1093] = {.count = 1, .reusable = false}, SHIFT(705), + [1095] = {.count = 1, .reusable = false}, SHIFT(706), + [1097] = {.count = 1, .reusable = false}, SHIFT(707), + [1099] = {.count = 1, .reusable = false}, SHIFT(708), + [1101] = {.count = 1, .reusable = true}, SHIFT(706), + [1103] = {.count = 1, .reusable = false}, SHIFT(709), + [1105] = {.count = 1, .reusable = true}, REDUCE(sym_field, 2), + [1107] = {.count = 1, .reusable = true}, REDUCE(sym_private, 2), + [1109] = {.count = 1, .reusable = true}, REDUCE(sym_generalize, 2), + [1111] = {.count = 1, .reusable = false}, SHIFT(714), + [1113] = {.count = 1, .reusable = false}, SHIFT(715), + [1115] = {.count = 1, .reusable = false}, SHIFT(716), + [1117] = {.count = 1, .reusable = false}, SHIFT(717), + [1119] = {.count = 1, .reusable = true}, SHIFT(718), + [1121] = {.count = 1, .reusable = false}, SHIFT(719), + [1123] = {.count = 1, .reusable = true}, SHIFT(720), + [1125] = {.count = 1, .reusable = false}, SHIFT(721), + [1127] = {.count = 1, .reusable = false}, SHIFT(722), + [1129] = {.count = 1, .reusable = false}, SHIFT(723), + [1131] = {.count = 1, .reusable = false}, SHIFT(724), + [1133] = {.count = 1, .reusable = false}, SHIFT(725), + [1135] = {.count = 1, .reusable = false}, SHIFT(726), + [1137] = {.count = 1, .reusable = false}, SHIFT(727), + [1139] = {.count = 1, .reusable = false}, SHIFT(728), + [1141] = {.count = 1, .reusable = true}, SHIFT(716), + [1143] = {.count = 1, .reusable = true}, SHIFT(736), + [1145] = {.count = 1, .reusable = true}, REDUCE(sym__module_name, 1, .alias_sequence_id = 3), + [1147] = {.count = 1, .reusable = false}, REDUCE(sym__module_name, 1, .alias_sequence_id = 3), + [1149] = {.count = 1, .reusable = false}, SHIFT(738), + [1151] = {.count = 1, .reusable = true}, REDUCE(sym_open, 2), + [1153] = {.count = 1, .reusable = false}, SHIFT(739), + [1155] = {.count = 1, .reusable = true}, SHIFT(740), + [1157] = {.count = 1, .reusable = false}, SHIFT(741), + [1159] = {.count = 1, .reusable = false}, SHIFT(742), + [1161] = {.count = 1, .reusable = false}, SHIFT(743), + [1163] = {.count = 1, .reusable = true}, SHIFT(744), + [1165] = {.count = 1, .reusable = false}, SHIFT(745), + [1167] = {.count = 1, .reusable = false}, SHIFT(746), + [1169] = {.count = 1, .reusable = false}, SHIFT(747), + [1171] = {.count = 1, .reusable = false}, SHIFT(748), + [1173] = {.count = 1, .reusable = false}, SHIFT(749), + [1175] = {.count = 1, .reusable = false}, SHIFT(750), + [1177] = {.count = 1, .reusable = false}, SHIFT(751), + [1179] = {.count = 1, .reusable = true}, SHIFT(741), + [1181] = {.count = 1, .reusable = false}, SHIFT(752), + [1183] = {.count = 1, .reusable = true}, REDUCE(sym_anonymous_name, 1), + [1185] = {.count = 1, .reusable = false}, REDUCE(sym_anonymous_name, 1), + [1187] = {.count = 1, .reusable = false}, SHIFT(758), + [1189] = {.count = 1, .reusable = false}, SHIFT(759), + [1191] = {.count = 1, .reusable = true}, SHIFT(760), + [1193] = {.count = 1, .reusable = false}, SHIFT(761), + [1195] = {.count = 1, .reusable = true}, SHIFT(762), + [1197] = {.count = 1, .reusable = false}, SHIFT(763), + [1199] = {.count = 1, .reusable = false}, SHIFT(764), + [1201] = {.count = 1, .reusable = false}, SHIFT(765), + [1203] = {.count = 1, .reusable = false}, SHIFT(766), + [1205] = {.count = 1, .reusable = false}, SHIFT(767), + [1207] = {.count = 1, .reusable = true}, SHIFT(759), + [1209] = {.count = 1, .reusable = true}, SHIFT(768), + [1211] = {.count = 1, .reusable = false}, SHIFT(773), + [1213] = {.count = 1, .reusable = false}, SHIFT(774), + [1215] = {.count = 1, .reusable = true}, SHIFT(775), + [1217] = {.count = 1, .reusable = false}, SHIFT(776), + [1219] = {.count = 1, .reusable = false}, SHIFT(768), + [1221] = {.count = 1, .reusable = true}, SHIFT(777), + [1223] = {.count = 1, .reusable = false}, SHIFT(778), + [1225] = {.count = 1, .reusable = false}, SHIFT(779), + [1227] = {.count = 1, .reusable = false}, SHIFT(780), + [1229] = {.count = 1, .reusable = false}, SHIFT(781), + [1231] = {.count = 1, .reusable = false}, SHIFT(782), + [1233] = {.count = 1, .reusable = true}, SHIFT(774), + [1235] = {.count = 1, .reusable = true}, SHIFT(788), + [1237] = {.count = 1, .reusable = false}, SHIFT(790), + [1239] = {.count = 1, .reusable = true}, SHIFT(789), + [1241] = {.count = 1, .reusable = false}, SHIFT(787), + [1243] = {.count = 1, .reusable = false}, SHIFT(794), + [1245] = {.count = 1, .reusable = false}, SHIFT(795), [1247] = {.count = 1, .reusable = false}, SHIFT(792), [1249] = {.count = 1, .reusable = false}, SHIFT(793), - [1251] = {.count = 1, .reusable = true}, SHIFT(794), - [1253] = {.count = 1, .reusable = false}, SHIFT(795), - [1255] = {.count = 1, .reusable = false}, SHIFT(796), - [1257] = {.count = 1, .reusable = false}, SHIFT(797), - [1259] = {.count = 1, .reusable = false}, SHIFT(798), - [1261] = {.count = 1, .reusable = true}, SHIFT(799), - [1263] = {.count = 1, .reusable = false}, SHIFT(800), - [1265] = {.count = 1, .reusable = true}, SHIFT(793), - [1267] = {.count = 1, .reusable = false}, SHIFT(801), - [1269] = {.count = 1, .reusable = false}, SHIFT(807), - [1271] = {.count = 1, .reusable = true}, SHIFT(805), - [1273] = {.count = 1, .reusable = false}, SHIFT(806), - [1275] = {.count = 1, .reusable = false}, SHIFT(808), - [1277] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 1), - [1279] = {.count = 1, .reusable = true}, SHIFT(809), - [1281] = {.count = 1, .reusable = false}, SHIFT(814), + [1251] = {.count = 1, .reusable = false}, SHIFT(796), + [1253] = {.count = 1, .reusable = false}, SHIFT(797), + [1255] = {.count = 1, .reusable = false}, SHIFT(805), + [1257] = {.count = 1, .reusable = true}, SHIFT(808), + [1259] = {.count = 1, .reusable = false}, SHIFT(801), + [1261] = {.count = 1, .reusable = false}, SHIFT(809), + [1263] = {.count = 1, .reusable = false}, SHIFT(810), + [1265] = {.count = 1, .reusable = false}, SHIFT(811), + [1267] = {.count = 1, .reusable = false}, SHIFT(812), + [1269] = {.count = 1, .reusable = false}, SHIFT(813), + [1271] = {.count = 1, .reusable = false}, SHIFT(814), + [1273] = {.count = 1, .reusable = false}, SHIFT(802), + [1275] = {.count = 1, .reusable = false}, SHIFT(803), + [1277] = {.count = 1, .reusable = false}, SHIFT(804), + [1279] = {.count = 1, .reusable = true}, SHIFT(806), + [1281] = {.count = 1, .reusable = false}, SHIFT(807), [1283] = {.count = 1, .reusable = false}, SHIFT(815), [1285] = {.count = 1, .reusable = false}, SHIFT(816), - [1287] = {.count = 1, .reusable = true}, SHIFT(820), - [1289] = {.count = 1, .reusable = false}, SHIFT(821), - [1291] = {.count = 1, .reusable = false}, SHIFT(823), - [1293] = {.count = 1, .reusable = false}, SHIFT(824), - [1295] = {.count = 1, .reusable = false}, SHIFT(825), - [1297] = {.count = 1, .reusable = true}, REDUCE(sym_postulate, 2), - [1299] = {.count = 1, .reusable = true}, REDUCE(sym_mutual, 2), - [1301] = {.count = 1, .reusable = true}, SHIFT(828), - [1303] = {.count = 1, .reusable = true}, SHIFT(830), - [1305] = {.count = 1, .reusable = false}, SHIFT(833), - [1307] = {.count = 1, .reusable = true}, SHIFT(834), - [1309] = {.count = 1, .reusable = false}, SHIFT(835), - [1311] = {.count = 1, .reusable = false}, SHIFT(836), - [1313] = {.count = 1, .reusable = true}, SHIFT(837), - [1315] = {.count = 1, .reusable = false}, SHIFT(838), - [1317] = {.count = 1, .reusable = true}, SHIFT(836), - [1319] = {.count = 1, .reusable = false}, SHIFT(839), - [1321] = {.count = 1, .reusable = false}, SHIFT(844), - [1323] = {.count = 1, .reusable = false}, SHIFT(845), - [1325] = {.count = 1, .reusable = false}, SHIFT(828), - [1327] = {.count = 1, .reusable = true}, SHIFT(848), - [1329] = {.count = 1, .reusable = false}, SHIFT(849), - [1331] = {.count = 1, .reusable = false}, SHIFT(850), - [1333] = {.count = 1, .reusable = false}, SHIFT(851), - [1335] = {.count = 1, .reusable = false}, SHIFT(852), - [1337] = {.count = 1, .reusable = true}, SHIFT(854), - [1339] = {.count = 1, .reusable = false}, SHIFT(856), - [1341] = {.count = 1, .reusable = true}, SHIFT(857), - [1343] = {.count = 1, .reusable = false}, SHIFT(858), - [1345] = {.count = 1, .reusable = false}, SHIFT(859), - [1347] = {.count = 1, .reusable = false}, SHIFT(860), - [1349] = {.count = 1, .reusable = false}, SHIFT(861), - [1351] = {.count = 1, .reusable = false}, SHIFT(862), - [1353] = {.count = 1, .reusable = true}, SHIFT(863), - [1355] = {.count = 1, .reusable = false}, SHIFT(864), - [1357] = {.count = 1, .reusable = false}, SHIFT(865), - [1359] = {.count = 1, .reusable = true}, SHIFT(858), - [1361] = {.count = 1, .reusable = true}, SHIFT(871), - [1363] = {.count = 1, .reusable = false}, SHIFT(872), - [1365] = {.count = 1, .reusable = false}, SHIFT(873), - [1367] = {.count = 1, .reusable = true}, SHIFT(874), - [1369] = {.count = 1, .reusable = false}, SHIFT(875), - [1371] = {.count = 1, .reusable = false}, SHIFT(876), - [1373] = {.count = 1, .reusable = false}, SHIFT(877), - [1375] = {.count = 1, .reusable = false}, SHIFT(878), - [1377] = {.count = 1, .reusable = true}, SHIFT(879), - [1379] = {.count = 1, .reusable = false}, SHIFT(880), - [1381] = {.count = 1, .reusable = true}, SHIFT(873), - [1383] = {.count = 1, .reusable = false}, SHIFT(881), - [1385] = {.count = 1, .reusable = false}, SHIFT(887), - [1387] = {.count = 1, .reusable = true}, SHIFT(885), - [1389] = {.count = 1, .reusable = false}, SHIFT(886), - [1391] = {.count = 1, .reusable = false}, SHIFT(888), - [1393] = {.count = 1, .reusable = true}, SHIFT(889), - [1395] = {.count = 1, .reusable = false}, SHIFT(894), - [1397] = {.count = 1, .reusable = false}, REDUCE(sym__atom_curly, 2), - [1399] = {.count = 1, .reusable = true}, REDUCE(sym__atom_curly, 2), + [1287] = {.count = 1, .reusable = false}, SHIFT(817), + [1289] = {.count = 1, .reusable = true}, SHIFT(803), + [1291] = {.count = 1, .reusable = true}, SHIFT(825), + [1293] = {.count = 1, .reusable = true}, REDUCE(sym__binding_name, 1, .alias_sequence_id = 4), + [1295] = {.count = 1, .reusable = false}, REDUCE(sym__binding_name, 1, .alias_sequence_id = 4), + [1297] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_binding, 1), + [1299] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_binding, 1), + [1301] = {.count = 1, .reusable = false}, SHIFT(827), + [1303] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 2), + [1305] = {.count = 1, .reusable = true}, SHIFT(828), + [1307] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 1), + [1309] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 1), + [1311] = {.count = 1, .reusable = true}, SHIFT(829), + [1313] = {.count = 1, .reusable = false}, SHIFT(831), + [1315] = {.count = 1, .reusable = true}, SHIFT(832), + [1317] = {.count = 1, .reusable = false}, SHIFT(833), + [1319] = {.count = 1, .reusable = true}, SHIFT(834), + [1321] = {.count = 1, .reusable = false}, SHIFT(835), + [1323] = {.count = 1, .reusable = false}, SHIFT(839), + [1325] = {.count = 1, .reusable = true}, SHIFT(840), + [1327] = {.count = 1, .reusable = false}, SHIFT(841), + [1329] = {.count = 1, .reusable = false}, SHIFT(842), + [1331] = {.count = 1, .reusable = true}, SHIFT(843), + [1333] = {.count = 1, .reusable = false}, SHIFT(844), + [1335] = {.count = 1, .reusable = false}, SHIFT(845), + [1337] = {.count = 1, .reusable = false}, SHIFT(846), + [1339] = {.count = 1, .reusable = false}, SHIFT(847), + [1341] = {.count = 1, .reusable = false}, SHIFT(848), + [1343] = {.count = 1, .reusable = true}, SHIFT(841), + [1345] = {.count = 1, .reusable = true}, SHIFT(852), + [1347] = {.count = 1, .reusable = false}, SHIFT(855), + [1349] = {.count = 1, .reusable = false}, SHIFT(829), + [1351] = {.count = 1, .reusable = true}, SHIFT(860), + [1353] = {.count = 1, .reusable = false}, SHIFT(861), + [1355] = {.count = 1, .reusable = false}, SHIFT(862), + [1357] = {.count = 1, .reusable = false}, SHIFT(863), + [1359] = {.count = 1, .reusable = false}, SHIFT(864), + [1361] = {.count = 1, .reusable = true}, SHIFT(865), + [1363] = {.count = 1, .reusable = false}, SHIFT(870), + [1365] = {.count = 1, .reusable = true}, SHIFT(868), + [1367] = {.count = 1, .reusable = false}, SHIFT(869), + [1369] = {.count = 1, .reusable = false}, SHIFT(871), + [1371] = {.count = 1, .reusable = true}, SHIFT(872), + [1373] = {.count = 1, .reusable = false}, SHIFT(873), + [1375] = {.count = 1, .reusable = false}, SHIFT(874), + [1377] = {.count = 1, .reusable = true}, SHIFT(875), + [1379] = {.count = 1, .reusable = false}, SHIFT(876), + [1381] = {.count = 1, .reusable = true}, SHIFT(877), + [1383] = {.count = 1, .reusable = false}, SHIFT(878), + [1385] = {.count = 1, .reusable = false}, SHIFT(879), + [1387] = {.count = 1, .reusable = false}, SHIFT(880), + [1389] = {.count = 1, .reusable = false}, SHIFT(881), + [1391] = {.count = 1, .reusable = false}, SHIFT(882), + [1393] = {.count = 1, .reusable = true}, SHIFT(874), + [1395] = {.count = 1, .reusable = false}, SHIFT(886), + [1397] = {.count = 1, .reusable = false}, SHIFT(889), + [1399] = {.count = 1, .reusable = true}, SHIFT(892), [1401] = {.count = 1, .reusable = false}, SHIFT(895), - [1403] = {.count = 1, .reusable = false}, SHIFT(896), - [1405] = {.count = 1, .reusable = true}, SHIFT(900), - [1407] = {.count = 1, .reusable = true}, SHIFT(901), - [1409] = {.count = 1, .reusable = false}, SHIFT(902), - [1411] = {.count = 1, .reusable = true}, SHIFT(907), - [1413] = {.count = 1, .reusable = false}, SHIFT(909), - [1415] = {.count = 1, .reusable = true}, SHIFT(908), - [1417] = {.count = 1, .reusable = false}, SHIFT(906), - [1419] = {.count = 1, .reusable = false}, SHIFT(913), - [1421] = {.count = 1, .reusable = true}, SHIFT(916), - [1423] = {.count = 1, .reusable = false}, REDUCE(sym__typed_untyped_binding1, 1), - [1425] = {.count = 1, .reusable = false}, SHIFT(918), - [1427] = {.count = 1, .reusable = true}, SHIFT(919), - [1429] = {.count = 1, .reusable = false}, SHIFT(920), - [1431] = {.count = 1, .reusable = false}, SHIFT(921), - [1433] = {.count = 1, .reusable = false}, SHIFT(922), - [1435] = {.count = 1, .reusable = false}, SHIFT(923), - [1437] = {.count = 1, .reusable = false}, SHIFT(924), - [1439] = {.count = 1, .reusable = true}, SHIFT(925), - [1441] = {.count = 1, .reusable = false}, SHIFT(926), - [1443] = {.count = 1, .reusable = true}, SHIFT(920), - [1445] = {.count = 1, .reusable = false}, SHIFT(927), - [1447] = {.count = 1, .reusable = true}, SHIFT(935), - [1449] = {.count = 1, .reusable = false}, SHIFT(938), - [1451] = {.count = 1, .reusable = false}, SHIFT(935), - [1453] = {.count = 1, .reusable = true}, SHIFT(942), - [1455] = {.count = 1, .reusable = true}, REDUCE(sym__atoms1, 1), - [1457] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 2), - [1459] = {.count = 1, .reusable = true}, SHIFT(946), - [1461] = {.count = 1, .reusable = false}, SHIFT(947), - [1463] = {.count = 1, .reusable = false}, SHIFT(949), - [1465] = {.count = 1, .reusable = true}, SHIFT(950), - [1467] = {.count = 1, .reusable = false}, SHIFT(951), - [1469] = {.count = 1, .reusable = false}, SHIFT(952), - [1471] = {.count = 1, .reusable = false}, SHIFT(953), - [1473] = {.count = 1, .reusable = true}, SHIFT(954), - [1475] = {.count = 1, .reusable = false}, SHIFT(955), - [1477] = {.count = 1, .reusable = false}, SHIFT(956), - [1479] = {.count = 1, .reusable = true}, SHIFT(953), + [1403] = {.count = 1, .reusable = true}, SHIFT(897), + [1405] = {.count = 1, .reusable = false}, SHIFT(898), + [1407] = {.count = 1, .reusable = false}, SHIFT(900), + [1409] = {.count = 1, .reusable = false}, SHIFT(901), + [1411] = {.count = 1, .reusable = false}, SHIFT(902), + [1413] = {.count = 1, .reusable = true}, REDUCE(sym_postulate, 2), + [1415] = {.count = 1, .reusable = true}, REDUCE(sym_mutual, 2), + [1417] = {.count = 1, .reusable = false}, SHIFT(905), + [1419] = {.count = 1, .reusable = false}, SHIFT(908), + [1421] = {.count = 1, .reusable = true}, SHIFT(911), + [1423] = {.count = 1, .reusable = false}, SHIFT(914), + [1425] = {.count = 1, .reusable = false}, REDUCE(sym__atom_curly, 2), + [1427] = {.count = 1, .reusable = true}, REDUCE(sym__atom_curly, 2), + [1429] = {.count = 1, .reusable = true}, SHIFT(916), + [1431] = {.count = 1, .reusable = true}, SHIFT(917), + [1433] = {.count = 1, .reusable = false}, SHIFT(918), + [1435] = {.count = 1, .reusable = true}, SHIFT(923), + [1437] = {.count = 1, .reusable = false}, SHIFT(925), + [1439] = {.count = 1, .reusable = true}, SHIFT(924), + [1441] = {.count = 1, .reusable = false}, SHIFT(922), + [1443] = {.count = 1, .reusable = false}, SHIFT(929), + [1445] = {.count = 1, .reusable = true}, SHIFT(932), + [1447] = {.count = 1, .reusable = false}, REDUCE(sym__typed_untyped_binding1, 1), + [1449] = {.count = 1, .reusable = false}, SHIFT(934), + [1451] = {.count = 1, .reusable = true}, SHIFT(935), + [1453] = {.count = 1, .reusable = false}, SHIFT(936), + [1455] = {.count = 1, .reusable = false}, SHIFT(937), + [1457] = {.count = 1, .reusable = false}, SHIFT(938), + [1459] = {.count = 1, .reusable = true}, SHIFT(939), + [1461] = {.count = 1, .reusable = false}, SHIFT(940), + [1463] = {.count = 1, .reusable = false}, SHIFT(941), + [1465] = {.count = 1, .reusable = false}, SHIFT(942), + [1467] = {.count = 1, .reusable = false}, SHIFT(943), + [1469] = {.count = 1, .reusable = true}, SHIFT(936), + [1471] = {.count = 1, .reusable = false}, SHIFT(951), + [1473] = {.count = 1, .reusable = false}, SHIFT(953), + [1475] = {.count = 1, .reusable = true}, SHIFT(954), + [1477] = {.count = 1, .reusable = false}, SHIFT(955), + [1479] = {.count = 1, .reusable = false}, SHIFT(956), [1481] = {.count = 1, .reusable = false}, SHIFT(957), - [1483] = {.count = 1, .reusable = true}, SHIFT(961), - [1485] = {.count = 1, .reusable = false}, SHIFT(962), - [1487] = {.count = 1, .reusable = false}, SHIFT(963), - [1489] = {.count = 1, .reusable = true}, SHIFT(964), - [1491] = {.count = 1, .reusable = false}, SHIFT(965), - [1493] = {.count = 1, .reusable = true}, SHIFT(963), + [1483] = {.count = 1, .reusable = true}, SHIFT(958), + [1485] = {.count = 1, .reusable = false}, SHIFT(959), + [1487] = {.count = 1, .reusable = false}, SHIFT(960), + [1489] = {.count = 1, .reusable = true}, SHIFT(957), + [1491] = {.count = 1, .reusable = false}, SHIFT(961), + [1493] = {.count = 1, .reusable = true}, SHIFT(965), [1495] = {.count = 1, .reusable = false}, SHIFT(966), - [1497] = {.count = 1, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), - [1499] = {.count = 1, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), - [1501] = {.count = 1, .reusable = false}, SHIFT(970), - [1503] = {.count = 1, .reusable = false}, SHIFT(971), - [1505] = {.count = 1, .reusable = false}, SHIFT(972), - [1507] = {.count = 1, .reusable = false}, SHIFT(973), - [1509] = {.count = 1, .reusable = false}, SHIFT(974), - [1511] = {.count = 1, .reusable = true}, SHIFT(975), - [1513] = {.count = 1, .reusable = false}, SHIFT(976), - [1515] = {.count = 1, .reusable = false}, SHIFT(977), - [1517] = {.count = 1, .reusable = false}, SHIFT(978), - [1519] = {.count = 1, .reusable = false}, SHIFT(979), - [1521] = {.count = 1, .reusable = true}, SHIFT(980), - [1523] = {.count = 1, .reusable = false}, SHIFT(981), - [1525] = {.count = 1, .reusable = false}, SHIFT(982), - [1527] = {.count = 1, .reusable = true}, SHIFT(973), - [1529] = {.count = 1, .reusable = false}, SHIFT(983), - [1531] = {.count = 1, .reusable = false}, SHIFT(984), - [1533] = {.count = 1, .reusable = false}, SHIFT(990), - [1535] = {.count = 1, .reusable = true}, SHIFT(991), - [1537] = {.count = 1, .reusable = false}, SHIFT(992), - [1539] = {.count = 1, .reusable = false}, SHIFT(993), - [1541] = {.count = 1, .reusable = false}, SHIFT(994), - [1543] = {.count = 1, .reusable = false}, SHIFT(995), - [1545] = {.count = 1, .reusable = false}, SHIFT(996), - [1547] = {.count = 1, .reusable = false}, SHIFT(997), - [1549] = {.count = 1, .reusable = false}, SHIFT(998), - [1551] = {.count = 1, .reusable = false}, SHIFT(999), - [1553] = {.count = 1, .reusable = true}, SHIFT(1000), - [1555] = {.count = 1, .reusable = false}, SHIFT(1001), - [1557] = {.count = 1, .reusable = false}, SHIFT(1002), - [1559] = {.count = 1, .reusable = true}, SHIFT(994), - [1561] = {.count = 1, .reusable = false}, SHIFT(1003), - [1563] = {.count = 1, .reusable = false}, SHIFT(1004), - [1565] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 2), - [1567] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2), - [1570] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), - [1573] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), - [1576] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [1579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [1582] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), - [1585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), - [1588] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [1591] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10), - [1594] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(11), - [1597] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(12), - [1600] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(13), - [1603] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), - [1606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(15), - [1609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), - [1612] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), - [1615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [1618] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [1621] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [1624] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [1630] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [1633] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [1636] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), - [1639] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), - [1642] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), - [1645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), - [1648] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [1651] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(30), - [1654] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [1657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(32), - [1660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [1663] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), - [1666] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), - [1669] = {.count = 1, .reusable = true}, SHIFT(1013), - [1671] = {.count = 1, .reusable = false}, SHIFT(1016), - [1673] = {.count = 1, .reusable = false}, SHIFT(1013), - [1675] = {.count = 1, .reusable = true}, SHIFT(1020), - [1677] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(792), - [1680] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(794), - [1683] = {.count = 1, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), - [1685] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(793), - [1688] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(795), - [1691] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(796), - [1694] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(797), - [1697] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1023), - [1700] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(799), - [1703] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(800), - [1706] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(793), - [1709] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(801), - [1712] = {.count = 1, .reusable = true}, REDUCE(sym__application, 2), - [1714] = {.count = 1, .reusable = false}, SHIFT(1024), - [1716] = {.count = 1, .reusable = true}, SHIFT(1025), - [1718] = {.count = 1, .reusable = false}, SHIFT(1026), - [1720] = {.count = 1, .reusable = false}, SHIFT(1027), - [1722] = {.count = 1, .reusable = false}, SHIFT(1028), - [1724] = {.count = 1, .reusable = false}, SHIFT(1029), - [1726] = {.count = 1, .reusable = false}, SHIFT(1030), - [1728] = {.count = 1, .reusable = false}, SHIFT(1031), - [1730] = {.count = 1, .reusable = false}, SHIFT(1032), - [1732] = {.count = 1, .reusable = false}, SHIFT(1033), - [1734] = {.count = 1, .reusable = true}, SHIFT(1034), - [1736] = {.count = 1, .reusable = false}, SHIFT(1035), - [1738] = {.count = 1, .reusable = false}, SHIFT(1036), - [1740] = {.count = 1, .reusable = true}, SHIFT(1028), - [1742] = {.count = 1, .reusable = false}, SHIFT(1037), - [1744] = {.count = 1, .reusable = false}, SHIFT(1038), - [1746] = {.count = 1, .reusable = false}, SHIFT(1047), - [1748] = {.count = 1, .reusable = false}, SHIFT(1048), - [1750] = {.count = 1, .reusable = true}, REDUCE(sym_function_clause, 2), - [1752] = {.count = 1, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), - [1754] = {.count = 1, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), - [1756] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(776), - [1759] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(777), - [1762] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(778), - [1765] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(779), - [1768] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(780), - [1771] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(781), - [1774] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(1050), - [1777] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(783), - [1780] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(784), - [1783] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(778), - [1786] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(785), - [1789] = {.count = 1, .reusable = true}, REDUCE(sym__with_expr, 2), - [1791] = {.count = 1, .reusable = false}, SHIFT(1053), - [1793] = {.count = 1, .reusable = false}, SHIFT(1054), - [1795] = {.count = 1, .reusable = false}, SHIFT(1055), - [1797] = {.count = 1, .reusable = false}, SHIFT(1056), - [1799] = {.count = 1, .reusable = false}, SHIFT(1057), - [1801] = {.count = 1, .reusable = true}, SHIFT(1058), - [1803] = {.count = 1, .reusable = false}, SHIFT(1059), - [1805] = {.count = 1, .reusable = false}, SHIFT(1060), - [1807] = {.count = 1, .reusable = false}, SHIFT(1061), - [1809] = {.count = 1, .reusable = false}, SHIFT(1062), - [1811] = {.count = 1, .reusable = true}, SHIFT(1063), - [1813] = {.count = 1, .reusable = false}, SHIFT(1064), - [1815] = {.count = 1, .reusable = false}, SHIFT(1065), - [1817] = {.count = 1, .reusable = true}, SHIFT(1056), - [1819] = {.count = 1, .reusable = false}, SHIFT(1066), - [1821] = {.count = 1, .reusable = false}, SHIFT(1067), - [1823] = {.count = 1, .reusable = false}, SHIFT(1072), - [1825] = {.count = 1, .reusable = true}, SHIFT(1073), - [1827] = {.count = 1, .reusable = false}, SHIFT(1074), - [1829] = {.count = 1, .reusable = false}, SHIFT(1075), - [1831] = {.count = 1, .reusable = false}, SHIFT(1076), - [1833] = {.count = 1, .reusable = false}, SHIFT(1077), - [1835] = {.count = 1, .reusable = false}, SHIFT(1078), - [1837] = {.count = 1, .reusable = false}, SHIFT(1079), - [1839] = {.count = 1, .reusable = false}, SHIFT(1080), - [1841] = {.count = 1, .reusable = false}, SHIFT(1081), - [1843] = {.count = 1, .reusable = true}, SHIFT(1082), - [1845] = {.count = 1, .reusable = false}, SHIFT(1083), - [1847] = {.count = 1, .reusable = false}, SHIFT(1084), - [1849] = {.count = 1, .reusable = true}, SHIFT(1076), - [1851] = {.count = 1, .reusable = false}, SHIFT(1085), - [1853] = {.count = 1, .reusable = false}, SHIFT(1086), - [1855] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 2, .alias_sequence_id = 1), - [1857] = {.count = 1, .reusable = true}, SHIFT(303), - [1859] = {.count = 1, .reusable = true}, SHIFT(1094), - [1861] = {.count = 1, .reusable = true}, SHIFT(1096), - [1863] = {.count = 1, .reusable = false}, SHIFT(1099), - [1865] = {.count = 1, .reusable = true}, SHIFT(1100), - [1867] = {.count = 1, .reusable = false}, SHIFT(1101), - [1869] = {.count = 1, .reusable = false}, SHIFT(1102), - [1871] = {.count = 1, .reusable = true}, SHIFT(1103), - [1873] = {.count = 1, .reusable = false}, SHIFT(1104), - [1875] = {.count = 1, .reusable = true}, SHIFT(1102), - [1877] = {.count = 1, .reusable = false}, SHIFT(1105), - [1879] = {.count = 1, .reusable = false}, SHIFT(1110), - [1881] = {.count = 1, .reusable = false}, SHIFT(1111), - [1883] = {.count = 1, .reusable = false}, SHIFT(1094), - [1885] = {.count = 1, .reusable = true}, SHIFT(1114), - [1887] = {.count = 1, .reusable = false}, SHIFT(1115), - [1889] = {.count = 1, .reusable = false}, SHIFT(1116), - [1891] = {.count = 1, .reusable = false}, SHIFT(1117), - [1893] = {.count = 1, .reusable = false}, SHIFT(1118), - [1895] = {.count = 1, .reusable = true}, SHIFT(1120), - [1897] = {.count = 1, .reusable = false}, SHIFT(1122), - [1899] = {.count = 1, .reusable = true}, SHIFT(1123), - [1901] = {.count = 1, .reusable = false}, SHIFT(1124), - [1903] = {.count = 1, .reusable = false}, SHIFT(1125), - [1905] = {.count = 1, .reusable = false}, SHIFT(1126), - [1907] = {.count = 1, .reusable = false}, SHIFT(1127), - [1909] = {.count = 1, .reusable = false}, SHIFT(1128), - [1911] = {.count = 1, .reusable = true}, SHIFT(1129), - [1913] = {.count = 1, .reusable = false}, SHIFT(1130), - [1915] = {.count = 1, .reusable = false}, SHIFT(1131), - [1917] = {.count = 1, .reusable = true}, SHIFT(1124), - [1919] = {.count = 1, .reusable = true}, SHIFT(1137), - [1921] = {.count = 1, .reusable = false}, SHIFT(1140), - [1923] = {.count = 1, .reusable = true}, SHIFT(1138), - [1925] = {.count = 1, .reusable = false}, SHIFT(1139), - [1927] = {.count = 1, .reusable = false}, SHIFT(1141), - [1929] = {.count = 1, .reusable = true}, SHIFT(1142), - [1931] = {.count = 1, .reusable = true}, SHIFT(1145), - [1933] = {.count = 1, .reusable = true}, SHIFT(1147), - [1935] = {.count = 1, .reusable = false}, SHIFT(1147), - [1937] = {.count = 1, .reusable = true}, SHIFT(1151), - [1939] = {.count = 1, .reusable = false}, SHIFT(1153), - [1941] = {.count = 1, .reusable = true}, SHIFT(1152), - [1943] = {.count = 1, .reusable = false}, SHIFT(1150), - [1945] = {.count = 1, .reusable = true}, SHIFT(1159), - [1947] = {.count = 1, .reusable = false}, SHIFT(1161), - [1949] = {.count = 1, .reusable = true}, SHIFT(1162), - [1951] = {.count = 1, .reusable = false}, SHIFT(1163), - [1953] = {.count = 1, .reusable = true}, SHIFT(1164), - [1955] = {.count = 1, .reusable = false}, SHIFT(1170), - [1957] = {.count = 1, .reusable = false}, SHIFT(1169), - [1959] = {.count = 1, .reusable = false}, SHIFT(1172), - [1961] = {.count = 1, .reusable = false}, SHIFT(1173), - [1963] = {.count = 1, .reusable = true}, SHIFT(1177), - [1965] = {.count = 1, .reusable = true}, SHIFT(1178), - [1967] = {.count = 1, .reusable = true}, SHIFT(1179), - [1969] = {.count = 1, .reusable = true}, SHIFT(1185), - [1971] = {.count = 1, .reusable = false}, SHIFT(1187), - [1973] = {.count = 1, .reusable = true}, SHIFT(1188), - [1975] = {.count = 1, .reusable = true}, SHIFT(1190), - [1977] = {.count = 1, .reusable = false}, SHIFT(1193), - [1979] = {.count = 1, .reusable = true}, SHIFT(1194), - [1981] = {.count = 1, .reusable = false}, SHIFT(1195), - [1983] = {.count = 1, .reusable = false}, SHIFT(1196), - [1985] = {.count = 1, .reusable = true}, SHIFT(1197), - [1987] = {.count = 1, .reusable = false}, SHIFT(1198), - [1989] = {.count = 1, .reusable = true}, SHIFT(1196), - [1991] = {.count = 1, .reusable = false}, SHIFT(1199), - [1993] = {.count = 1, .reusable = false}, SHIFT(1204), - [1995] = {.count = 1, .reusable = false}, SHIFT(1205), - [1997] = {.count = 1, .reusable = false}, SHIFT(1188), - [1999] = {.count = 1, .reusable = true}, SHIFT(1208), - [2001] = {.count = 1, .reusable = false}, SHIFT(1209), - [2003] = {.count = 1, .reusable = false}, SHIFT(1210), - [2005] = {.count = 1, .reusable = false}, SHIFT(1211), - [2007] = {.count = 1, .reusable = false}, SHIFT(1212), - [2009] = {.count = 1, .reusable = true}, SHIFT(1214), - [2011] = {.count = 1, .reusable = false}, SHIFT(1216), - [2013] = {.count = 1, .reusable = true}, SHIFT(1217), - [2015] = {.count = 1, .reusable = false}, SHIFT(1218), - [2017] = {.count = 1, .reusable = false}, SHIFT(1219), - [2019] = {.count = 1, .reusable = false}, SHIFT(1220), - [2021] = {.count = 1, .reusable = false}, SHIFT(1221), - [2023] = {.count = 1, .reusable = false}, SHIFT(1222), - [2025] = {.count = 1, .reusable = true}, SHIFT(1223), - [2027] = {.count = 1, .reusable = false}, SHIFT(1224), - [2029] = {.count = 1, .reusable = false}, SHIFT(1225), - [2031] = {.count = 1, .reusable = true}, SHIFT(1218), - [2033] = {.count = 1, .reusable = false}, SHIFT(1233), - [2035] = {.count = 1, .reusable = true}, SHIFT(1231), - [2037] = {.count = 1, .reusable = false}, SHIFT(1232), - [2039] = {.count = 1, .reusable = false}, SHIFT(1234), - [2041] = {.count = 1, .reusable = true}, SHIFT(1235), - [2043] = {.count = 1, .reusable = true}, SHIFT(1240), - [2045] = {.count = 1, .reusable = false}, SHIFT(1245), - [2047] = {.count = 1, .reusable = false}, SHIFT(1246), - [2049] = {.count = 1, .reusable = false}, SHIFT(1247), - [2051] = {.count = 1, .reusable = true}, SHIFT(1251), - [2053] = {.count = 1, .reusable = true}, SHIFT(1252), - [2055] = {.count = 1, .reusable = true}, SHIFT(1253), - [2057] = {.count = 1, .reusable = false}, SHIFT(1256), - [2059] = {.count = 1, .reusable = false}, SHIFT(1253), - [2061] = {.count = 1, .reusable = true}, SHIFT(1260), - [2063] = {.count = 1, .reusable = true}, SHIFT(1264), - [2065] = {.count = 1, .reusable = false}, REDUCE(sym__atom_no_curly, 3), - [2067] = {.count = 1, .reusable = true}, REDUCE(sym__atom_no_curly, 3), - [2069] = {.count = 1, .reusable = true}, SHIFT(1267), - [2071] = {.count = 1, .reusable = false}, SHIFT(1270), - [2073] = {.count = 1, .reusable = false}, SHIFT(1267), - [2075] = {.count = 1, .reusable = true}, SHIFT(1274), - [2077] = {.count = 1, .reusable = false}, REDUCE(sym__with_expr, 2), - [2079] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(174), - [2082] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(181), - [2085] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(807), - [2088] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(805), - [2091] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(178), - [2094] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(806), - [2097] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1277), - [2100] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(184), - [2103] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(808), - [2106] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(178), - [2109] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(188), - [2112] = {.count = 1, .reusable = false}, REDUCE(sym__application, 2), - [2114] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(436), - [2117] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(437), - [2120] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(55), - [2123] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(438), - [2126] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(435), - [2129] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(55), - [2132] = {.count = 1, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), - [2134] = {.count = 1, .reusable = false}, SHIFT(1284), - [2136] = {.count = 1, .reusable = true}, SHIFT(1285), - [2138] = {.count = 1, .reusable = false}, SHIFT(1286), - [2140] = {.count = 1, .reusable = false}, SHIFT(1287), - [2142] = {.count = 1, .reusable = false}, SHIFT(1288), - [2144] = {.count = 1, .reusable = false}, SHIFT(1289), - [2146] = {.count = 1, .reusable = false}, SHIFT(1290), - [2148] = {.count = 1, .reusable = false}, SHIFT(1291), - [2150] = {.count = 1, .reusable = false}, SHIFT(1292), - [2152] = {.count = 1, .reusable = false}, SHIFT(1293), - [2154] = {.count = 1, .reusable = true}, SHIFT(1294), - [2156] = {.count = 1, .reusable = false}, SHIFT(1295), - [2158] = {.count = 1, .reusable = false}, SHIFT(1296), - [2160] = {.count = 1, .reusable = true}, SHIFT(1288), - [2162] = {.count = 1, .reusable = false}, SHIFT(1297), - [2164] = {.count = 1, .reusable = false}, SHIFT(1298), - [2166] = {.count = 1, .reusable = true}, SHIFT(1307), - [2168] = {.count = 1, .reusable = false}, SHIFT(1309), - [2170] = {.count = 1, .reusable = true}, SHIFT(1308), - [2172] = {.count = 1, .reusable = false}, SHIFT(1306), - [2174] = {.count = 1, .reusable = true}, SHIFT(1314), - [2176] = {.count = 1, .reusable = false}, SHIFT(1315), - [2178] = {.count = 1, .reusable = false}, SHIFT(1316), - [2180] = {.count = 1, .reusable = true}, SHIFT(1317), - [2182] = {.count = 1, .reusable = true}, SHIFT(1318), - [2184] = {.count = 1, .reusable = true}, SHIFT(1321), - [2186] = {.count = 1, .reusable = true}, SHIFT(1322), - [2188] = {.count = 1, .reusable = true}, SHIFT(1324), - [2190] = {.count = 1, .reusable = false}, SHIFT(1327), - [2192] = {.count = 1, .reusable = true}, SHIFT(1328), - [2194] = {.count = 1, .reusable = false}, SHIFT(1329), - [2196] = {.count = 1, .reusable = false}, SHIFT(1330), - [2198] = {.count = 1, .reusable = true}, SHIFT(1331), - [2200] = {.count = 1, .reusable = false}, SHIFT(1332), - [2202] = {.count = 1, .reusable = true}, SHIFT(1330), - [2204] = {.count = 1, .reusable = false}, SHIFT(1333), - [2206] = {.count = 1, .reusable = false}, SHIFT(1337), - [2208] = {.count = 1, .reusable = true}, SHIFT(1338), - [2210] = {.count = 1, .reusable = false}, SHIFT(1341), - [2212] = {.count = 1, .reusable = false}, SHIFT(1338), - [2214] = {.count = 1, .reusable = true}, SHIFT(1345), - [2216] = {.count = 1, .reusable = false}, SHIFT(1347), - [2218] = {.count = 1, .reusable = true}, SHIFT(1348), - [2220] = {.count = 1, .reusable = false}, SHIFT(1349), - [2222] = {.count = 1, .reusable = false}, SHIFT(1350), - [2224] = {.count = 1, .reusable = false}, SHIFT(1351), - [2226] = {.count = 1, .reusable = false}, SHIFT(1352), - [2228] = {.count = 1, .reusable = false}, SHIFT(1353), - [2230] = {.count = 1, .reusable = true}, SHIFT(1354), - [2232] = {.count = 1, .reusable = false}, SHIFT(1355), - [2234] = {.count = 1, .reusable = false}, SHIFT(1356), - [2236] = {.count = 1, .reusable = true}, SHIFT(1349), - [2238] = {.count = 1, .reusable = true}, REDUCE(sym__do_stmt, 1, .alias_sequence_id = 5), - [2240] = {.count = 1, .reusable = true}, SHIFT(1362), - [2242] = {.count = 1, .reusable = true}, SHIFT(1363), - [2244] = {.count = 1, .reusable = true}, SHIFT(1364), - [2246] = {.count = 1, .reusable = true}, SHIFT(1366), - [2248] = {.count = 1, .reusable = true}, SHIFT(1367), - [2250] = {.count = 1, .reusable = false}, SHIFT(1369), - [2252] = {.count = 1, .reusable = true}, SHIFT(1370), - [2254] = {.count = 1, .reusable = false}, SHIFT(1372), - [2256] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 3), - [2258] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 3), - [2260] = {.count = 1, .reusable = true}, SHIFT(1373), - [2262] = {.count = 1, .reusable = true}, REDUCE(sym__record_assignments1, 1), - [2264] = {.count = 1, .reusable = false}, SHIFT(1375), - [2266] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 1), - [2268] = {.count = 1, .reusable = true}, SHIFT(1376), - [2270] = {.count = 1, .reusable = false}, SHIFT(1377), - [2272] = {.count = 1, .reusable = false}, SHIFT(1378), - [2274] = {.count = 1, .reusable = false}, SHIFT(1380), - [2276] = {.count = 1, .reusable = false}, SHIFT(1379), - [2278] = {.count = 1, .reusable = false}, SHIFT(1381), - [2280] = {.count = 1, .reusable = false}, SHIFT(1382), - [2282] = {.count = 1, .reusable = false}, SHIFT(1383), - [2284] = {.count = 1, .reusable = true}, SHIFT(1384), - [2286] = {.count = 1, .reusable = false}, SHIFT(1385), - [2288] = {.count = 1, .reusable = true}, SHIFT(1377), - [2290] = {.count = 1, .reusable = false}, SHIFT(1386), - [2292] = {.count = 1, .reusable = false}, SHIFT(1387), - [2294] = {.count = 1, .reusable = true}, SHIFT(1392), - [2296] = {.count = 1, .reusable = false}, SHIFT(1393), - [2298] = {.count = 1, .reusable = true}, SHIFT(1394), - [2300] = {.count = 1, .reusable = false}, SHIFT(1395), - [2302] = {.count = 1, .reusable = false}, SHIFT(1396), - [2304] = {.count = 1, .reusable = false}, SHIFT(1397), - [2306] = {.count = 1, .reusable = false}, SHIFT(1398), - [2308] = {.count = 1, .reusable = false}, SHIFT(1399), - [2310] = {.count = 1, .reusable = true}, SHIFT(1400), - [2312] = {.count = 1, .reusable = false}, SHIFT(1401), - [2314] = {.count = 1, .reusable = true}, SHIFT(1395), - [2316] = {.count = 1, .reusable = false}, SHIFT(1402), - [2318] = {.count = 1, .reusable = true}, SHIFT(1412), - [2320] = {.count = 1, .reusable = false}, SHIFT(1414), - [2322] = {.count = 1, .reusable = true}, SHIFT(1413), - [2324] = {.count = 1, .reusable = false}, SHIFT(1411), - [2326] = {.count = 1, .reusable = false}, SHIFT(1418), - [2328] = {.count = 1, .reusable = true}, REDUCE(sym_record, 3), - [2330] = {.count = 1, .reusable = true}, SHIFT(1422), - [2332] = {.count = 1, .reusable = true}, SHIFT(1424), - [2334] = {.count = 1, .reusable = true}, SHIFT(1425), - [2336] = {.count = 1, .reusable = true}, SHIFT(1427), - [2338] = {.count = 1, .reusable = true}, SHIFT(1430), - [2340] = {.count = 1, .reusable = true}, SHIFT(1435), - [2342] = {.count = 1, .reusable = false}, SHIFT(1437), - [2344] = {.count = 1, .reusable = true}, SHIFT(1436), - [2346] = {.count = 1, .reusable = false}, SHIFT(1434), - [2348] = {.count = 1, .reusable = false}, SHIFT(1442), - [2350] = {.count = 1, .reusable = true}, SHIFT(1443), - [2352] = {.count = 1, .reusable = true}, SHIFT(1444), - [2354] = {.count = 1, .reusable = true}, SHIFT(1445), - [2356] = {.count = 1, .reusable = false}, SHIFT(1447), - [2358] = {.count = 1, .reusable = true}, SHIFT(1448), - [2360] = {.count = 1, .reusable = true}, SHIFT(1449), - [2362] = {.count = 1, .reusable = false}, SHIFT(1452), - [2364] = {.count = 1, .reusable = false}, SHIFT(1449), - [2366] = {.count = 1, .reusable = true}, SHIFT(1456), - [2368] = {.count = 1, .reusable = true}, SHIFT(1460), - [2370] = {.count = 1, .reusable = true}, SHIFT(1461), - [2372] = {.count = 1, .reusable = false}, SHIFT(1464), - [2374] = {.count = 1, .reusable = false}, SHIFT(1461), - [2376] = {.count = 1, .reusable = true}, SHIFT(1468), - [2378] = {.count = 1, .reusable = false}, SHIFT(1471), - [2380] = {.count = 1, .reusable = false}, SHIFT(1472), - [2382] = {.count = 1, .reusable = true}, SHIFT(1474), - [2384] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 1), - [2386] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 1), - [2388] = {.count = 1, .reusable = false}, SHIFT(1477), - [2390] = {.count = 1, .reusable = true}, REDUCE(sym_infix, 3), - [2392] = {.count = 1, .reusable = true}, SHIFT(1480), - [2394] = {.count = 1, .reusable = false}, SHIFT(1480), - [2396] = {.count = 1, .reusable = false}, SHIFT(1481), - [2398] = {.count = 1, .reusable = true}, SHIFT(1484), - [2400] = {.count = 1, .reusable = false}, SHIFT(1484), - [2402] = {.count = 1, .reusable = false}, SHIFT(1485), - [2404] = {.count = 1, .reusable = false}, SHIFT(1487), - [2406] = {.count = 1, .reusable = true}, SHIFT(1488), - [2408] = {.count = 1, .reusable = false}, SHIFT(1489), - [2410] = {.count = 1, .reusable = false}, REDUCE(sym__field_name, 1, .alias_sequence_id = 6), - [2412] = {.count = 1, .reusable = true}, REDUCE(sym__field_name, 1, .alias_sequence_id = 6), - [2414] = {.count = 1, .reusable = true}, SHIFT(1493), - [2416] = {.count = 1, .reusable = true}, SHIFT(1494), - [2418] = {.count = 1, .reusable = true}, SHIFT(1496), - [2420] = {.count = 1, .reusable = false}, REDUCE(sym__arg_names, 1), - [2422] = {.count = 1, .reusable = true}, SHIFT(1498), - [2424] = {.count = 1, .reusable = false}, SHIFT(1499), - [2426] = {.count = 1, .reusable = true}, SHIFT(1501), - [2428] = {.count = 1, .reusable = true}, SHIFT(1502), - [2430] = {.count = 1, .reusable = false}, SHIFT(1504), - [2432] = {.count = 1, .reusable = false}, SHIFT(1505), - [2434] = {.count = 1, .reusable = true}, SHIFT(1507), - [2436] = {.count = 1, .reusable = true}, SHIFT(1508), - [2438] = {.count = 1, .reusable = false}, SHIFT(1511), - [2440] = {.count = 1, .reusable = false}, SHIFT(1512), - [2442] = {.count = 1, .reusable = true}, SHIFT(1516), - [2444] = {.count = 1, .reusable = true}, SHIFT(1521), - [2446] = {.count = 1, .reusable = false}, SHIFT(1523), - [2448] = {.count = 1, .reusable = true}, SHIFT(1522), - [2450] = {.count = 1, .reusable = false}, SHIFT(1520), - [2452] = {.count = 1, .reusable = false}, SHIFT(1528), - [2454] = {.count = 1, .reusable = true}, SHIFT(1529), - [2456] = {.count = 1, .reusable = false}, SHIFT(1531), - [2458] = {.count = 1, .reusable = false}, SHIFT(1532), - [2460] = {.count = 1, .reusable = true}, SHIFT(1533), - [2462] = {.count = 1, .reusable = false}, REDUCE(sym_open, 2), - [2464] = {.count = 1, .reusable = false}, SHIFT(1534), - [2466] = {.count = 1, .reusable = false}, SHIFT(1535), - [2468] = {.count = 1, .reusable = false}, SHIFT(1536), - [2470] = {.count = 1, .reusable = false}, SHIFT(1537), - [2472] = {.count = 1, .reusable = false}, SHIFT(1538), - [2474] = {.count = 1, .reusable = false}, SHIFT(1539), - [2476] = {.count = 1, .reusable = true}, SHIFT(1540), - [2478] = {.count = 1, .reusable = false}, SHIFT(1541), - [2480] = {.count = 1, .reusable = true}, SHIFT(1534), - [2482] = {.count = 1, .reusable = false}, SHIFT(1542), - [2484] = {.count = 1, .reusable = true}, SHIFT(1549), - [2486] = {.count = 1, .reusable = false}, SHIFT(1550), - [2488] = {.count = 1, .reusable = true}, SHIFT(1551), - [2490] = {.count = 1, .reusable = false}, SHIFT(1552), - [2492] = {.count = 1, .reusable = false}, SHIFT(1553), - [2494] = {.count = 1, .reusable = false}, SHIFT(1554), - [2496] = {.count = 1, .reusable = false}, SHIFT(1555), - [2498] = {.count = 1, .reusable = false}, SHIFT(1556), - [2500] = {.count = 1, .reusable = true}, SHIFT(1557), - [2502] = {.count = 1, .reusable = false}, SHIFT(1558), - [2504] = {.count = 1, .reusable = true}, SHIFT(1552), - [2506] = {.count = 1, .reusable = false}, SHIFT(1559), - [2508] = {.count = 1, .reusable = true}, SHIFT(1565), - [2510] = {.count = 1, .reusable = false}, SHIFT(1568), - [2512] = {.count = 1, .reusable = false}, SHIFT(1565), - [2514] = {.count = 1, .reusable = true}, SHIFT(1572), - [2516] = {.count = 1, .reusable = true}, SHIFT(1576), - [2518] = {.count = 1, .reusable = false}, SHIFT(1577), - [2520] = {.count = 1, .reusable = false}, SHIFT(1579), - [2522] = {.count = 1, .reusable = false}, SHIFT(1582), - [2524] = {.count = 1, .reusable = false}, SHIFT(1583), - [2526] = {.count = 1, .reusable = false}, SHIFT(1584), - [2528] = {.count = 1, .reusable = false}, SHIFT(1585), - [2530] = {.count = 1, .reusable = false}, SHIFT(1586), - [2532] = {.count = 1, .reusable = true}, SHIFT(1587), - [2534] = {.count = 1, .reusable = false}, SHIFT(1588), - [2536] = {.count = 1, .reusable = false}, SHIFT(1589), - [2538] = {.count = 1, .reusable = false}, SHIFT(1590), - [2540] = {.count = 1, .reusable = false}, SHIFT(1591), - [2542] = {.count = 1, .reusable = true}, SHIFT(1592), - [2544] = {.count = 1, .reusable = false}, SHIFT(1593), - [2546] = {.count = 1, .reusable = false}, SHIFT(1594), - [2548] = {.count = 1, .reusable = true}, SHIFT(1585), - [2550] = {.count = 1, .reusable = false}, SHIFT(1595), - [2552] = {.count = 1, .reusable = false}, SHIFT(1596), - [2554] = {.count = 1, .reusable = false}, SHIFT(1601), - [2556] = {.count = 1, .reusable = true}, SHIFT(1602), - [2558] = {.count = 1, .reusable = false}, SHIFT(1603), - [2560] = {.count = 1, .reusable = false}, SHIFT(1604), - [2562] = {.count = 1, .reusable = false}, SHIFT(1605), - [2564] = {.count = 1, .reusable = false}, SHIFT(1606), - [2566] = {.count = 1, .reusable = false}, SHIFT(1607), - [2568] = {.count = 1, .reusable = false}, SHIFT(1608), - [2570] = {.count = 1, .reusable = false}, SHIFT(1609), - [2572] = {.count = 1, .reusable = false}, SHIFT(1610), - [2574] = {.count = 1, .reusable = true}, SHIFT(1611), - [2576] = {.count = 1, .reusable = false}, SHIFT(1612), - [2578] = {.count = 1, .reusable = false}, SHIFT(1613), - [2580] = {.count = 1, .reusable = true}, SHIFT(1605), - [2582] = {.count = 1, .reusable = false}, SHIFT(1614), - [2584] = {.count = 1, .reusable = false}, SHIFT(1615), - [2586] = {.count = 1, .reusable = true}, SHIFT(1622), - [2588] = {.count = 1, .reusable = false}, SHIFT(1625), - [2590] = {.count = 1, .reusable = false}, SHIFT(1622), - [2592] = {.count = 1, .reusable = true}, SHIFT(1629), - [2594] = {.count = 1, .reusable = false}, SHIFT(1632), - [2596] = {.count = 1, .reusable = true}, SHIFT(1633), - [2598] = {.count = 1, .reusable = false}, SHIFT(1634), - [2600] = {.count = 1, .reusable = false}, SHIFT(1635), - [2602] = {.count = 1, .reusable = false}, SHIFT(1636), - [2604] = {.count = 1, .reusable = false}, SHIFT(1637), - [2606] = {.count = 1, .reusable = false}, SHIFT(1638), - [2608] = {.count = 1, .reusable = false}, SHIFT(1639), - [2610] = {.count = 1, .reusable = false}, SHIFT(1640), - [2612] = {.count = 1, .reusable = false}, SHIFT(1641), - [2614] = {.count = 1, .reusable = true}, SHIFT(1642), - [2616] = {.count = 1, .reusable = false}, SHIFT(1643), - [2618] = {.count = 1, .reusable = false}, SHIFT(1644), - [2620] = {.count = 1, .reusable = true}, SHIFT(1636), - [2622] = {.count = 1, .reusable = false}, SHIFT(1645), - [2624] = {.count = 1, .reusable = false}, SHIFT(1646), - [2626] = {.count = 1, .reusable = false}, SHIFT(1653), - [2628] = {.count = 1, .reusable = false}, SHIFT(1654), - [2630] = {.count = 1, .reusable = false}, SHIFT(1655), - [2632] = {.count = 1, .reusable = false}, SHIFT(1656), - [2634] = {.count = 1, .reusable = false}, SHIFT(1657), - [2636] = {.count = 1, .reusable = true}, SHIFT(1658), - [2638] = {.count = 1, .reusable = false}, SHIFT(1659), - [2640] = {.count = 1, .reusable = false}, SHIFT(1660), - [2642] = {.count = 1, .reusable = false}, SHIFT(1661), - [2644] = {.count = 1, .reusable = false}, SHIFT(1662), - [2646] = {.count = 1, .reusable = true}, SHIFT(1663), - [2648] = {.count = 1, .reusable = false}, SHIFT(1664), - [2650] = {.count = 1, .reusable = false}, SHIFT(1665), - [2652] = {.count = 1, .reusable = true}, SHIFT(1656), - [2654] = {.count = 1, .reusable = false}, SHIFT(1666), - [2656] = {.count = 1, .reusable = false}, SHIFT(1667), - [2658] = {.count = 1, .reusable = false}, SHIFT(1672), - [2660] = {.count = 1, .reusable = true}, SHIFT(1673), - [2662] = {.count = 1, .reusable = false}, SHIFT(1674), - [2664] = {.count = 1, .reusable = false}, SHIFT(1675), - [2666] = {.count = 1, .reusable = false}, SHIFT(1676), - [2668] = {.count = 1, .reusable = false}, SHIFT(1677), - [2670] = {.count = 1, .reusable = false}, SHIFT(1678), - [2672] = {.count = 1, .reusable = false}, SHIFT(1679), - [2674] = {.count = 1, .reusable = false}, SHIFT(1680), - [2676] = {.count = 1, .reusable = false}, SHIFT(1681), - [2678] = {.count = 1, .reusable = true}, SHIFT(1682), - [2680] = {.count = 1, .reusable = false}, SHIFT(1683), - [2682] = {.count = 1, .reusable = false}, SHIFT(1684), - [2684] = {.count = 1, .reusable = true}, SHIFT(1676), - [2686] = {.count = 1, .reusable = false}, SHIFT(1685), - [2688] = {.count = 1, .reusable = false}, SHIFT(1686), - [2690] = {.count = 1, .reusable = true}, SHIFT(658), - [2692] = {.count = 1, .reusable = true}, SHIFT(1693), - [2694] = {.count = 1, .reusable = false}, SHIFT(1696), - [2696] = {.count = 1, .reusable = false}, SHIFT(1693), - [2698] = {.count = 1, .reusable = true}, SHIFT(1700), - [2700] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_binding, 2), - [2702] = {.count = 1, .reusable = true}, SHIFT(1704), - [2704] = {.count = 1, .reusable = true}, SHIFT(1705), - [2706] = {.count = 1, .reusable = true}, SHIFT(1706), - [2708] = {.count = 1, .reusable = false}, SHIFT(1709), - [2710] = {.count = 1, .reusable = false}, SHIFT(1706), - [2712] = {.count = 1, .reusable = true}, SHIFT(1713), - [2714] = {.count = 1, .reusable = true}, SHIFT(1716), - [2716] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 2), - [2718] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 2), - [2720] = {.count = 1, .reusable = true}, SHIFT(1721), - [2722] = {.count = 1, .reusable = false}, SHIFT(1726), - [2724] = {.count = 1, .reusable = false}, SHIFT(1727), - [2726] = {.count = 1, .reusable = true}, SHIFT(1731), - [2728] = {.count = 1, .reusable = true}, SHIFT(1732), - [2730] = {.count = 1, .reusable = true}, SHIFT(1733), - [2732] = {.count = 1, .reusable = false}, SHIFT(1736), - [2734] = {.count = 1, .reusable = true}, SHIFT(1737), - [2736] = {.count = 1, .reusable = false}, SHIFT(1738), - [2738] = {.count = 1, .reusable = false}, SHIFT(1739), - [2740] = {.count = 1, .reusable = true}, SHIFT(1740), - [2742] = {.count = 1, .reusable = false}, SHIFT(1741), - [2744] = {.count = 1, .reusable = true}, SHIFT(1739), - [2746] = {.count = 1, .reusable = false}, SHIFT(1742), - [2748] = {.count = 1, .reusable = false}, SHIFT(1746), - [2750] = {.count = 1, .reusable = true}, SHIFT(1747), - [2752] = {.count = 1, .reusable = false}, SHIFT(1750), - [2754] = {.count = 1, .reusable = false}, SHIFT(1751), - [2756] = {.count = 1, .reusable = false}, SHIFT(1752), - [2758] = {.count = 1, .reusable = false}, SHIFT(1753), - [2760] = {.count = 1, .reusable = false}, SHIFT(1754), - [2762] = {.count = 1, .reusable = false}, SHIFT(1755), - [2764] = {.count = 1, .reusable = false}, SHIFT(1761), - [2766] = {.count = 1, .reusable = false}, SHIFT(1747), - [2768] = {.count = 1, .reusable = true}, SHIFT(1765), - [2770] = {.count = 1, .reusable = false}, SHIFT(1767), - [2772] = {.count = 1, .reusable = true}, SHIFT(1770), - [2774] = {.count = 1, .reusable = true}, SHIFT(1773), - [2776] = {.count = 1, .reusable = false}, SHIFT(1774), - [2778] = {.count = 1, .reusable = false}, SHIFT(1776), - [2780] = {.count = 1, .reusable = false}, SHIFT(1777), - [2782] = {.count = 1, .reusable = false}, SHIFT(1778), - [2784] = {.count = 1, .reusable = false}, SHIFT(1779), - [2786] = {.count = 1, .reusable = false}, SHIFT(1780), - [2788] = {.count = 1, .reusable = true}, SHIFT(1781), - [2790] = {.count = 1, .reusable = false}, SHIFT(1782), - [2792] = {.count = 1, .reusable = false}, SHIFT(1783), - [2794] = {.count = 1, .reusable = false}, SHIFT(1784), - [2796] = {.count = 1, .reusable = false}, SHIFT(1785), - [2798] = {.count = 1, .reusable = true}, SHIFT(1786), - [2800] = {.count = 1, .reusable = false}, SHIFT(1787), - [2802] = {.count = 1, .reusable = false}, SHIFT(1788), - [2804] = {.count = 1, .reusable = true}, SHIFT(1779), - [2806] = {.count = 1, .reusable = false}, SHIFT(1789), - [2808] = {.count = 1, .reusable = false}, SHIFT(1790), - [2810] = {.count = 1, .reusable = true}, SHIFT(1795), - [2812] = {.count = 1, .reusable = true}, SHIFT(1796), - [2814] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause_absurd, 1), - [2816] = {.count = 1, .reusable = false}, SHIFT(1797), - [2818] = {.count = 1, .reusable = false}, SHIFT(1801), - [2820] = {.count = 1, .reusable = false}, SHIFT(1802), - [2822] = {.count = 1, .reusable = false}, SHIFT(1803), - [2824] = {.count = 1, .reusable = false}, SHIFT(1798), - [2826] = {.count = 1, .reusable = true}, SHIFT(1799), - [2828] = {.count = 1, .reusable = false}, SHIFT(1800), - [2830] = {.count = 1, .reusable = false}, SHIFT(1804), - [2832] = {.count = 1, .reusable = true}, SHIFT(1805), - [2834] = {.count = 1, .reusable = false}, SHIFT(1806), - [2836] = {.count = 1, .reusable = true}, SHIFT(1798), - [2838] = {.count = 1, .reusable = false}, SHIFT(1807), - [2840] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 3), - [2842] = {.count = 1, .reusable = true}, REDUCE(sym_open, 3), - [2844] = {.count = 1, .reusable = true}, SHIFT(1819), - [2846] = {.count = 1, .reusable = false}, SHIFT(1820), - [2848] = {.count = 1, .reusable = false}, SHIFT(1821), - [2850] = {.count = 1, .reusable = true}, SHIFT(1822), - [2852] = {.count = 1, .reusable = false}, SHIFT(1823), - [2854] = {.count = 1, .reusable = true}, SHIFT(1826), - [2856] = {.count = 1, .reusable = false}, SHIFT(1829), - [2858] = {.count = 1, .reusable = true}, SHIFT(1831), - [2860] = {.count = 1, .reusable = false}, SHIFT(1832), - [2862] = {.count = 1, .reusable = true}, SHIFT(1834), - [2864] = {.count = 1, .reusable = false}, SHIFT(1826), - [2866] = {.count = 1, .reusable = true}, SHIFT(1837), - [2868] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 1), - [2870] = {.count = 1, .reusable = true}, SHIFT(740), - [2872] = {.count = 1, .reusable = true}, SHIFT(746), - [2874] = {.count = 1, .reusable = true}, SHIFT(738), - [2876] = {.count = 1, .reusable = true}, REDUCE(sym__open_args1, 1), - [2878] = {.count = 1, .reusable = false}, REDUCE(sym__open_args1, 1), - [2880] = {.count = 1, .reusable = true}, SHIFT(1842), - [2882] = {.count = 1, .reusable = true}, SHIFT(1845), - [2884] = {.count = 1, .reusable = false}, SHIFT(1848), - [2886] = {.count = 1, .reusable = true}, SHIFT(1849), - [2888] = {.count = 1, .reusable = true}, SHIFT(1850), - [2890] = {.count = 1, .reusable = true}, SHIFT(1851), - [2892] = {.count = 1, .reusable = false}, SHIFT(1853), - [2894] = {.count = 1, .reusable = true}, SHIFT(1854), - [2896] = {.count = 1, .reusable = true}, SHIFT(1855), - [2898] = {.count = 1, .reusable = false}, SHIFT(1858), - [2900] = {.count = 1, .reusable = false}, SHIFT(1855), - [2902] = {.count = 1, .reusable = true}, SHIFT(1862), - [2904] = {.count = 1, .reusable = true}, SHIFT(1866), - [2906] = {.count = 1, .reusable = true}, SHIFT(1867), - [2908] = {.count = 1, .reusable = false}, SHIFT(1870), - [2910] = {.count = 1, .reusable = false}, SHIFT(1867), - [2912] = {.count = 1, .reusable = true}, SHIFT(1874), - [2914] = {.count = 1, .reusable = true}, SHIFT(1879), - [2916] = {.count = 1, .reusable = true}, SHIFT(1881), - [2918] = {.count = 1, .reusable = true}, SHIFT(1882), - [2920] = {.count = 1, .reusable = true}, SHIFT(1884), - [2922] = {.count = 1, .reusable = false}, SHIFT(1885), - [2924] = {.count = 1, .reusable = true}, SHIFT(1886), - [2926] = {.count = 1, .reusable = false}, SHIFT(1887), - [2928] = {.count = 1, .reusable = false}, SHIFT(1888), - [2930] = {.count = 1, .reusable = false}, SHIFT(1889), - [2932] = {.count = 1, .reusable = false}, SHIFT(1890), - [2934] = {.count = 1, .reusable = false}, SHIFT(1891), - [2936] = {.count = 1, .reusable = false}, SHIFT(1892), - [2938] = {.count = 1, .reusable = false}, SHIFT(1893), - [2940] = {.count = 1, .reusable = false}, SHIFT(1894), - [2942] = {.count = 1, .reusable = true}, SHIFT(1895), - [2944] = {.count = 1, .reusable = false}, SHIFT(1896), - [2946] = {.count = 1, .reusable = false}, SHIFT(1897), - [2948] = {.count = 1, .reusable = true}, SHIFT(1889), - [2950] = {.count = 1, .reusable = false}, SHIFT(1898), - [2952] = {.count = 1, .reusable = false}, SHIFT(1899), - [2954] = {.count = 1, .reusable = true}, REDUCE(sym_data, 3, .alias_sequence_id = 7), - [2956] = {.count = 1, .reusable = true}, SHIFT(1908), - [2958] = {.count = 1, .reusable = true}, SHIFT(1909), - [2960] = {.count = 1, .reusable = false}, SHIFT(1910), - [2962] = {.count = 1, .reusable = true}, SHIFT(1911), - [2964] = {.count = 1, .reusable = true}, SHIFT(1914), - [2966] = {.count = 1, .reusable = true}, SHIFT(1919), - [2968] = {.count = 1, .reusable = false}, SHIFT(1921), - [2970] = {.count = 1, .reusable = true}, SHIFT(1920), - [2972] = {.count = 1, .reusable = false}, SHIFT(1918), - [2974] = {.count = 1, .reusable = false}, SHIFT(1926), - [2976] = {.count = 1, .reusable = true}, SHIFT(1927), - [2978] = {.count = 1, .reusable = true}, SHIFT(1928), - [2980] = {.count = 1, .reusable = true}, SHIFT(1929), - [2982] = {.count = 1, .reusable = false}, SHIFT(1931), - [2984] = {.count = 1, .reusable = true}, SHIFT(1932), - [2986] = {.count = 1, .reusable = true}, SHIFT(1933), - [2988] = {.count = 1, .reusable = false}, SHIFT(1936), - [2990] = {.count = 1, .reusable = false}, SHIFT(1933), - [2992] = {.count = 1, .reusable = true}, SHIFT(1940), - [2994] = {.count = 1, .reusable = false}, SHIFT(1944), - [2996] = {.count = 1, .reusable = true}, SHIFT(1945), - [2998] = {.count = 1, .reusable = false}, SHIFT(1948), - [3000] = {.count = 1, .reusable = false}, SHIFT(1945), - [3002] = {.count = 1, .reusable = true}, SHIFT(1952), - [3004] = {.count = 1, .reusable = true}, SHIFT(1957), - [3006] = {.count = 1, .reusable = true}, SHIFT(1959), - [3008] = {.count = 1, .reusable = true}, SHIFT(1960), - [3010] = {.count = 1, .reusable = true}, SHIFT(1962), - [3012] = {.count = 1, .reusable = false}, REDUCE(sym__atom_curly, 3), - [3014] = {.count = 1, .reusable = true}, REDUCE(sym__atom_curly, 3), - [3016] = {.count = 1, .reusable = true}, SHIFT(1963), - [3018] = {.count = 1, .reusable = true}, SHIFT(1964), - [3020] = {.count = 1, .reusable = true}, SHIFT(1965), - [3022] = {.count = 1, .reusable = true}, SHIFT(1970), - [3024] = {.count = 1, .reusable = true}, SHIFT(1971), - [3026] = {.count = 1, .reusable = true}, SHIFT(1972), - [3028] = {.count = 1, .reusable = false}, REDUCE(sym_forall_bindings, 2), - [3030] = {.count = 1, .reusable = true}, REDUCE(sym_forall_bindings, 2), - [3032] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(245), - [3035] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(246), - [3038] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(247), - [3041] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(248), - [3044] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(249), - [3047] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(250), - [3050] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(248), - [3053] = {.count = 1, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), - [3055] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(251), - [3058] = {.count = 1, .reusable = true}, SHIFT(1973), - [3060] = {.count = 1, .reusable = false}, SHIFT(1976), - [3062] = {.count = 1, .reusable = false}, SHIFT(1973), - [3064] = {.count = 1, .reusable = true}, SHIFT(1979), - [3066] = {.count = 1, .reusable = false}, SHIFT(1980), - [3068] = {.count = 1, .reusable = false}, SHIFT(1981), - [3070] = {.count = 1, .reusable = false}, SHIFT(1982), - [3072] = {.count = 1, .reusable = false}, SHIFT(1983), - [3074] = {.count = 1, .reusable = true}, SHIFT(1985), - [3076] = {.count = 1, .reusable = true}, SHIFT(1988), - [3078] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 3), - [3080] = {.count = 1, .reusable = false}, SHIFT(1991), - [3082] = {.count = 1, .reusable = true}, SHIFT(1989), - [3084] = {.count = 1, .reusable = false}, SHIFT(1990), - [3086] = {.count = 1, .reusable = false}, SHIFT(1992), - [3088] = {.count = 1, .reusable = true}, SHIFT(1993), - [3090] = {.count = 1, .reusable = true}, SHIFT(1994), - [3092] = {.count = 1, .reusable = false}, SHIFT(1996), - [3094] = {.count = 1, .reusable = true}, SHIFT(1997), - [3096] = {.count = 1, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), - [3098] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(256), - [3101] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(257), - [3104] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(258), - [3107] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(259), - [3110] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(260), - [3113] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(261), - [3116] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(262), - [3119] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(264), - [3122] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(263), - [3125] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(258), - [3128] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(265), - [3131] = {.count = 1, .reusable = true}, SHIFT(1999), - [3133] = {.count = 1, .reusable = false}, SHIFT(2002), - [3135] = {.count = 1, .reusable = true}, SHIFT(2005), - [3137] = {.count = 1, .reusable = false}, SHIFT(2007), - [3139] = {.count = 1, .reusable = true}, SHIFT(2006), - [3141] = {.count = 1, .reusable = false}, SHIFT(2004), - [3143] = {.count = 1, .reusable = true}, REDUCE(sym_module, 3, .alias_sequence_id = 8), - [3145] = {.count = 1, .reusable = true}, SHIFT(2013), - [3147] = {.count = 1, .reusable = true}, SHIFT(1821), - [3149] = {.count = 1, .reusable = true}, SHIFT(2018), - [3151] = {.count = 1, .reusable = false}, SHIFT(2020), - [3153] = {.count = 1, .reusable = true}, SHIFT(2019), - [3155] = {.count = 1, .reusable = false}, SHIFT(2017), - [3157] = {.count = 1, .reusable = true}, SHIFT(2026), - [3159] = {.count = 1, .reusable = false}, SHIFT(2029), - [3161] = {.count = 1, .reusable = true}, SHIFT(2030), - [3163] = {.count = 1, .reusable = false}, SHIFT(2031), - [3165] = {.count = 1, .reusable = false}, SHIFT(2032), - [3167] = {.count = 1, .reusable = true}, SHIFT(2033), - [3169] = {.count = 1, .reusable = false}, SHIFT(2034), - [3171] = {.count = 1, .reusable = true}, SHIFT(2032), - [3173] = {.count = 1, .reusable = false}, SHIFT(2035), - [3175] = {.count = 1, .reusable = false}, SHIFT(2039), - [3177] = {.count = 1, .reusable = true}, SHIFT(2040), - [3179] = {.count = 1, .reusable = false}, SHIFT(2043), - [3181] = {.count = 1, .reusable = false}, SHIFT(2040), - [3183] = {.count = 1, .reusable = true}, SHIFT(2047), - [3185] = {.count = 1, .reusable = false}, SHIFT(2049), - [3187] = {.count = 1, .reusable = true}, SHIFT(2050), - [3189] = {.count = 1, .reusable = false}, SHIFT(2051), - [3191] = {.count = 1, .reusable = false}, SHIFT(2052), - [3193] = {.count = 1, .reusable = false}, SHIFT(2053), - [3195] = {.count = 1, .reusable = false}, SHIFT(2054), - [3197] = {.count = 1, .reusable = false}, SHIFT(2055), - [3199] = {.count = 1, .reusable = true}, SHIFT(2056), - [3201] = {.count = 1, .reusable = false}, SHIFT(2057), - [3203] = {.count = 1, .reusable = false}, SHIFT(2058), - [3205] = {.count = 1, .reusable = true}, SHIFT(2051), - [3207] = {.count = 1, .reusable = true}, REDUCE(sym_rewrite_equations, 2), - [3209] = {.count = 1, .reusable = true}, SHIFT(2064), - [3211] = {.count = 1, .reusable = true}, SHIFT(2066), - [3213] = {.count = 1, .reusable = false}, SHIFT(2069), - [3215] = {.count = 1, .reusable = true}, SHIFT(2070), - [3217] = {.count = 1, .reusable = false}, SHIFT(2071), - [3219] = {.count = 1, .reusable = false}, SHIFT(2072), - [3221] = {.count = 1, .reusable = true}, SHIFT(2073), - [3223] = {.count = 1, .reusable = false}, SHIFT(2074), - [3225] = {.count = 1, .reusable = true}, SHIFT(2072), - [3227] = {.count = 1, .reusable = false}, SHIFT(2075), - [3229] = {.count = 1, .reusable = false}, SHIFT(2080), - [3231] = {.count = 1, .reusable = false}, SHIFT(2081), - [3233] = {.count = 1, .reusable = false}, SHIFT(2064), - [3235] = {.count = 1, .reusable = true}, SHIFT(2084), - [3237] = {.count = 1, .reusable = false}, SHIFT(2085), - [3239] = {.count = 1, .reusable = false}, SHIFT(2086), - [3241] = {.count = 1, .reusable = false}, SHIFT(2087), - [3243] = {.count = 1, .reusable = false}, SHIFT(2088), - [3245] = {.count = 1, .reusable = true}, SHIFT(2090), - [3247] = {.count = 1, .reusable = false}, SHIFT(2092), - [3249] = {.count = 1, .reusable = true}, SHIFT(2093), - [3251] = {.count = 1, .reusable = false}, SHIFT(2094), - [3253] = {.count = 1, .reusable = false}, SHIFT(2095), - [3255] = {.count = 1, .reusable = false}, SHIFT(2096), - [3257] = {.count = 1, .reusable = false}, SHIFT(2097), - [3259] = {.count = 1, .reusable = false}, SHIFT(2098), - [3261] = {.count = 1, .reusable = true}, SHIFT(2099), - [3263] = {.count = 1, .reusable = false}, SHIFT(2100), - [3265] = {.count = 1, .reusable = false}, SHIFT(2101), - [3267] = {.count = 1, .reusable = true}, SHIFT(2094), - [3269] = {.count = 1, .reusable = true}, SHIFT(2107), - [3271] = {.count = 1, .reusable = true}, REDUCE(sym_with_expressions, 2), - [3273] = {.count = 1, .reusable = false}, SHIFT(2108), - [3275] = {.count = 1, .reusable = false}, SHIFT(2109), - [3277] = {.count = 1, .reusable = true}, SHIFT(2110), - [3279] = {.count = 1, .reusable = false}, SHIFT(2111), - [3281] = {.count = 1, .reusable = false}, SHIFT(2112), - [3283] = {.count = 1, .reusable = false}, SHIFT(2113), - [3285] = {.count = 1, .reusable = false}, SHIFT(2114), - [3287] = {.count = 1, .reusable = true}, SHIFT(2115), - [3289] = {.count = 1, .reusable = false}, SHIFT(2116), - [3291] = {.count = 1, .reusable = true}, SHIFT(2109), - [3293] = {.count = 1, .reusable = false}, SHIFT(2117), - [3295] = {.count = 1, .reusable = false}, SHIFT(2123), - [3297] = {.count = 1, .reusable = true}, SHIFT(2121), - [3299] = {.count = 1, .reusable = false}, SHIFT(2122), - [3301] = {.count = 1, .reusable = false}, SHIFT(2124), - [3303] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 3), - [3305] = {.count = 1, .reusable = true}, SHIFT(2125), - [3307] = {.count = 1, .reusable = true}, SHIFT(2126), - [3309] = {.count = 1, .reusable = false}, SHIFT(2128), - [3311] = {.count = 1, .reusable = true}, SHIFT(2129), - [3313] = {.count = 1, .reusable = false}, SHIFT(1023), - [3315] = {.count = 1, .reusable = true}, SHIFT(2130), - [3317] = {.count = 1, .reusable = true}, SHIFT(2132), - [3319] = {.count = 1, .reusable = false}, SHIFT(2135), - [3321] = {.count = 1, .reusable = true}, SHIFT(2136), - [3323] = {.count = 1, .reusable = false}, SHIFT(2137), - [3325] = {.count = 1, .reusable = false}, SHIFT(2138), - [3327] = {.count = 1, .reusable = true}, SHIFT(2139), - [3329] = {.count = 1, .reusable = false}, SHIFT(2140), - [3331] = {.count = 1, .reusable = true}, SHIFT(2138), - [3333] = {.count = 1, .reusable = false}, SHIFT(2141), - [3335] = {.count = 1, .reusable = false}, SHIFT(2146), - [3337] = {.count = 1, .reusable = false}, SHIFT(2147), - [3339] = {.count = 1, .reusable = false}, SHIFT(2130), - [3341] = {.count = 1, .reusable = true}, SHIFT(2150), - [3343] = {.count = 1, .reusable = false}, SHIFT(2151), - [3345] = {.count = 1, .reusable = false}, SHIFT(2152), - [3347] = {.count = 1, .reusable = false}, SHIFT(2153), - [3349] = {.count = 1, .reusable = false}, SHIFT(2154), - [3351] = {.count = 1, .reusable = true}, SHIFT(2156), - [3353] = {.count = 1, .reusable = false}, SHIFT(2158), - [3355] = {.count = 1, .reusable = true}, SHIFT(2159), - [3357] = {.count = 1, .reusable = false}, SHIFT(2160), - [3359] = {.count = 1, .reusable = false}, SHIFT(2161), - [3361] = {.count = 1, .reusable = false}, SHIFT(2162), - [3363] = {.count = 1, .reusable = false}, SHIFT(2163), - [3365] = {.count = 1, .reusable = false}, SHIFT(2164), - [3367] = {.count = 1, .reusable = true}, SHIFT(2165), - [3369] = {.count = 1, .reusable = false}, SHIFT(2166), - [3371] = {.count = 1, .reusable = false}, SHIFT(2167), - [3373] = {.count = 1, .reusable = true}, SHIFT(2160), - [3375] = {.count = 1, .reusable = true}, SHIFT(2173), - [3377] = {.count = 1, .reusable = true}, REDUCE(sym_rhs_decl, 2), - [3379] = {.count = 1, .reusable = false}, SHIFT(2174), - [3381] = {.count = 1, .reusable = false}, SHIFT(2175), - [3383] = {.count = 1, .reusable = true}, SHIFT(2176), - [3385] = {.count = 1, .reusable = false}, SHIFT(2177), - [3387] = {.count = 1, .reusable = false}, SHIFT(2178), - [3389] = {.count = 1, .reusable = false}, SHIFT(2179), - [3391] = {.count = 1, .reusable = false}, SHIFT(2180), - [3393] = {.count = 1, .reusable = true}, SHIFT(2181), - [3395] = {.count = 1, .reusable = false}, SHIFT(2182), - [3397] = {.count = 1, .reusable = true}, SHIFT(2175), - [3399] = {.count = 1, .reusable = false}, SHIFT(2183), - [3401] = {.count = 1, .reusable = false}, SHIFT(2189), - [3403] = {.count = 1, .reusable = true}, SHIFT(2187), - [3405] = {.count = 1, .reusable = false}, SHIFT(2188), - [3407] = {.count = 1, .reusable = false}, SHIFT(2190), - [3409] = {.count = 1, .reusable = true}, REDUCE(sym_where_clause, 2), - [3411] = {.count = 1, .reusable = true}, SHIFT(2191), - [3413] = {.count = 1, .reusable = true}, REDUCE(sym_function_clause, 3), - [3415] = {.count = 1, .reusable = false}, SHIFT(1050), - [3417] = {.count = 1, .reusable = true}, REDUCE(sym_rhs_defn, 2), - [3419] = {.count = 1, .reusable = true}, SHIFT(2193), - [3421] = {.count = 1, .reusable = false}, SHIFT(2196), - [3423] = {.count = 1, .reusable = true}, SHIFT(2197), - [3425] = {.count = 1, .reusable = false}, SHIFT(2198), - [3427] = {.count = 1, .reusable = false}, SHIFT(2199), - [3429] = {.count = 1, .reusable = true}, SHIFT(2200), - [3431] = {.count = 1, .reusable = false}, SHIFT(2201), - [3433] = {.count = 1, .reusable = true}, SHIFT(2199), - [3435] = {.count = 1, .reusable = false}, SHIFT(2202), - [3437] = {.count = 1, .reusable = false}, SHIFT(2206), - [3439] = {.count = 1, .reusable = true}, SHIFT(2207), - [3441] = {.count = 1, .reusable = false}, SHIFT(2210), - [3443] = {.count = 1, .reusable = false}, SHIFT(2207), - [3445] = {.count = 1, .reusable = true}, SHIFT(2214), - [3447] = {.count = 1, .reusable = false}, SHIFT(2216), - [3449] = {.count = 1, .reusable = true}, SHIFT(2217), - [3451] = {.count = 1, .reusable = false}, SHIFT(2218), - [3453] = {.count = 1, .reusable = false}, SHIFT(2219), - [3455] = {.count = 1, .reusable = false}, SHIFT(2220), - [3457] = {.count = 1, .reusable = false}, SHIFT(2221), - [3459] = {.count = 1, .reusable = false}, SHIFT(2222), - [3461] = {.count = 1, .reusable = true}, SHIFT(2223), - [3463] = {.count = 1, .reusable = false}, SHIFT(2224), - [3465] = {.count = 1, .reusable = false}, SHIFT(2225), - [3467] = {.count = 1, .reusable = true}, SHIFT(2218), - [3469] = {.count = 1, .reusable = true}, SHIFT(2231), - [3471] = {.count = 1, .reusable = true}, SHIFT(2233), - [3473] = {.count = 1, .reusable = false}, SHIFT(2236), - [3475] = {.count = 1, .reusable = true}, SHIFT(2237), - [3477] = {.count = 1, .reusable = false}, SHIFT(2238), - [3479] = {.count = 1, .reusable = false}, SHIFT(2239), - [3481] = {.count = 1, .reusable = true}, SHIFT(2240), - [3483] = {.count = 1, .reusable = false}, SHIFT(2241), - [3485] = {.count = 1, .reusable = true}, SHIFT(2239), - [3487] = {.count = 1, .reusable = false}, SHIFT(2242), - [3489] = {.count = 1, .reusable = false}, SHIFT(2247), - [3491] = {.count = 1, .reusable = false}, SHIFT(2248), - [3493] = {.count = 1, .reusable = false}, SHIFT(2231), - [3495] = {.count = 1, .reusable = true}, SHIFT(2251), - [3497] = {.count = 1, .reusable = false}, SHIFT(2252), - [3499] = {.count = 1, .reusable = false}, SHIFT(2253), - [3501] = {.count = 1, .reusable = false}, SHIFT(2254), - [3503] = {.count = 1, .reusable = false}, SHIFT(2255), - [3505] = {.count = 1, .reusable = true}, SHIFT(2257), - [3507] = {.count = 1, .reusable = false}, SHIFT(2259), - [3509] = {.count = 1, .reusable = true}, SHIFT(2260), - [3511] = {.count = 1, .reusable = false}, SHIFT(2261), - [3513] = {.count = 1, .reusable = false}, SHIFT(2262), - [3515] = {.count = 1, .reusable = false}, SHIFT(2263), - [3517] = {.count = 1, .reusable = false}, SHIFT(2264), - [3519] = {.count = 1, .reusable = false}, SHIFT(2265), - [3521] = {.count = 1, .reusable = true}, SHIFT(2266), - [3523] = {.count = 1, .reusable = false}, SHIFT(2267), - [3525] = {.count = 1, .reusable = false}, SHIFT(2268), - [3527] = {.count = 1, .reusable = true}, SHIFT(2261), - [3529] = {.count = 1, .reusable = true}, SHIFT(2274), - [3531] = {.count = 1, .reusable = false}, SHIFT(2275), - [3533] = {.count = 1, .reusable = false}, SHIFT(2276), - [3535] = {.count = 1, .reusable = true}, SHIFT(2277), - [3537] = {.count = 1, .reusable = false}, SHIFT(2278), - [3539] = {.count = 1, .reusable = false}, SHIFT(2279), - [3541] = {.count = 1, .reusable = false}, SHIFT(2280), - [3543] = {.count = 1, .reusable = false}, SHIFT(2281), - [3545] = {.count = 1, .reusable = true}, SHIFT(2282), - [3547] = {.count = 1, .reusable = false}, SHIFT(2283), - [3549] = {.count = 1, .reusable = true}, SHIFT(2276), - [3551] = {.count = 1, .reusable = false}, SHIFT(2284), - [3553] = {.count = 1, .reusable = false}, SHIFT(2290), - [3555] = {.count = 1, .reusable = true}, SHIFT(2288), - [3557] = {.count = 1, .reusable = false}, SHIFT(2289), - [3559] = {.count = 1, .reusable = false}, SHIFT(2291), - [3561] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 3, .alias_sequence_id = 1), - [3563] = {.count = 1, .reusable = true}, SHIFT(2292), - [3565] = {.count = 1, .reusable = true}, SHIFT(2295), - [3567] = {.count = 1, .reusable = true}, SHIFT(2300), - [3569] = {.count = 1, .reusable = false}, SHIFT(2302), - [3571] = {.count = 1, .reusable = true}, SHIFT(2301), - [3573] = {.count = 1, .reusable = false}, SHIFT(2299), - [3575] = {.count = 1, .reusable = false}, SHIFT(2307), - [3577] = {.count = 1, .reusable = true}, SHIFT(2308), - [3579] = {.count = 1, .reusable = true}, SHIFT(2309), - [3581] = {.count = 1, .reusable = true}, SHIFT(2310), - [3583] = {.count = 1, .reusable = false}, SHIFT(2312), - [3585] = {.count = 1, .reusable = true}, SHIFT(2313), - [3587] = {.count = 1, .reusable = true}, SHIFT(2314), - [3589] = {.count = 1, .reusable = false}, SHIFT(2317), - [3591] = {.count = 1, .reusable = false}, SHIFT(2314), - [3593] = {.count = 1, .reusable = true}, SHIFT(2321), - [3595] = {.count = 1, .reusable = true}, SHIFT(2325), - [3597] = {.count = 1, .reusable = true}, SHIFT(2330), - [3599] = {.count = 1, .reusable = true}, SHIFT(2331), - [3601] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_binding, 2), - [3603] = {.count = 1, .reusable = true}, SHIFT(2334), - [3605] = {.count = 1, .reusable = true}, SHIFT(2335), - [3607] = {.count = 1, .reusable = true}, SHIFT(2336), - [3609] = {.count = 1, .reusable = true}, SHIFT(2341), - [3611] = {.count = 1, .reusable = true}, SHIFT(2342), - [3613] = {.count = 1, .reusable = true}, SHIFT(2343), - [3615] = {.count = 1, .reusable = true}, SHIFT(2344), - [3617] = {.count = 1, .reusable = false}, REDUCE(sym_lambda, 3), - [3619] = {.count = 1, .reusable = true}, SHIFT(2347), - [3621] = {.count = 1, .reusable = true}, SHIFT(2350), - [3623] = {.count = 1, .reusable = true}, SHIFT(2352), - [3625] = {.count = 1, .reusable = false}, SHIFT(2354), - [3627] = {.count = 1, .reusable = false}, SHIFT(2355), - [3629] = {.count = 1, .reusable = true}, SHIFT(2361), - [3631] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 3), - [3633] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 3), - [3635] = {.count = 1, .reusable = true}, SHIFT(2367), - [3637] = {.count = 1, .reusable = true}, SHIFT(2368), - [3639] = {.count = 1, .reusable = true}, SHIFT(2369), - [3641] = {.count = 1, .reusable = true}, SHIFT(2370), - [3643] = {.count = 1, .reusable = true}, SHIFT(2371), - [3645] = {.count = 1, .reusable = true}, SHIFT(2372), - [3647] = {.count = 1, .reusable = false}, SHIFT(2373), - [3649] = {.count = 1, .reusable = true}, SHIFT(2375), - [3651] = {.count = 1, .reusable = true}, SHIFT(2378), - [3653] = {.count = 1, .reusable = true}, SHIFT(2383), - [3655] = {.count = 1, .reusable = false}, SHIFT(2385), - [3657] = {.count = 1, .reusable = true}, SHIFT(2384), - [3659] = {.count = 1, .reusable = false}, SHIFT(2382), - [3661] = {.count = 1, .reusable = false}, SHIFT(2390), - [3663] = {.count = 1, .reusable = true}, SHIFT(2391), - [3665] = {.count = 1, .reusable = true}, SHIFT(2392), - [3667] = {.count = 1, .reusable = true}, SHIFT(2393), - [3669] = {.count = 1, .reusable = false}, SHIFT(2395), - [3671] = {.count = 1, .reusable = true}, SHIFT(2396), - [3673] = {.count = 1, .reusable = true}, SHIFT(2397), - [3675] = {.count = 1, .reusable = false}, SHIFT(2400), - [3677] = {.count = 1, .reusable = false}, SHIFT(2397), - [3679] = {.count = 1, .reusable = true}, SHIFT(2404), - [3681] = {.count = 1, .reusable = true}, SHIFT(2408), - [3683] = {.count = 1, .reusable = true}, SHIFT(2415), - [3685] = {.count = 1, .reusable = true}, SHIFT(2417), - [3687] = {.count = 1, .reusable = true}, SHIFT(2418), - [3689] = {.count = 1, .reusable = true}, SHIFT(2420), - [3691] = {.count = 1, .reusable = true}, SHIFT(2425), - [3693] = {.count = 1, .reusable = true}, SHIFT(2426), - [3695] = {.count = 1, .reusable = false}, SHIFT(2428), - [3697] = {.count = 1, .reusable = true}, SHIFT(2429), - [3699] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(398), - [3702] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(399), - [3705] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(400), - [3708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(401), - [3711] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(402), - [3714] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(403), - [3717] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(404), - [3720] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(405), - [3723] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(406), - [3726] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(407), - [3729] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(400), - [3732] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 3), - [3734] = {.count = 1, .reusable = true}, REDUCE(sym_expr, 3), - [3736] = {.count = 1, .reusable = false}, REDUCE(sym_expr, 3), - [3738] = {.count = 1, .reusable = true}, SHIFT(2430), - [3740] = {.count = 1, .reusable = true}, SHIFT(2431), - [3742] = {.count = 1, .reusable = false}, SHIFT(2433), - [3744] = {.count = 1, .reusable = true}, SHIFT(2434), - [3746] = {.count = 1, .reusable = false}, SHIFT(1277), - [3748] = {.count = 1, .reusable = true}, SHIFT(2435), - [3750] = {.count = 1, .reusable = true}, SHIFT(2436), - [3752] = {.count = 1, .reusable = true}, SHIFT(2437), - [3754] = {.count = 1, .reusable = true}, SHIFT(2438), - [3756] = {.count = 1, .reusable = true}, SHIFT(2440), - [3758] = {.count = 1, .reusable = false}, SHIFT(2443), - [3760] = {.count = 1, .reusable = true}, SHIFT(2444), - [3762] = {.count = 1, .reusable = false}, SHIFT(2445), - [3764] = {.count = 1, .reusable = false}, SHIFT(2446), - [3766] = {.count = 1, .reusable = true}, SHIFT(2447), - [3768] = {.count = 1, .reusable = false}, SHIFT(2448), - [3770] = {.count = 1, .reusable = true}, SHIFT(2446), - [3772] = {.count = 1, .reusable = false}, SHIFT(2449), - [3774] = {.count = 1, .reusable = false}, SHIFT(2454), - [3776] = {.count = 1, .reusable = false}, SHIFT(2455), - [3778] = {.count = 1, .reusable = false}, SHIFT(2438), - [3780] = {.count = 1, .reusable = true}, SHIFT(2458), - [3782] = {.count = 1, .reusable = false}, SHIFT(2459), - [3784] = {.count = 1, .reusable = false}, SHIFT(2460), - [3786] = {.count = 1, .reusable = false}, SHIFT(2461), - [3788] = {.count = 1, .reusable = false}, SHIFT(2462), - [3790] = {.count = 1, .reusable = true}, SHIFT(2464), - [3792] = {.count = 1, .reusable = false}, SHIFT(2466), - [3794] = {.count = 1, .reusable = true}, SHIFT(2467), - [3796] = {.count = 1, .reusable = false}, SHIFT(2468), - [3798] = {.count = 1, .reusable = false}, SHIFT(2469), - [3800] = {.count = 1, .reusable = false}, SHIFT(2470), - [3802] = {.count = 1, .reusable = false}, SHIFT(2471), - [3804] = {.count = 1, .reusable = false}, SHIFT(2472), - [3806] = {.count = 1, .reusable = true}, SHIFT(2473), - [3808] = {.count = 1, .reusable = false}, SHIFT(2474), - [3810] = {.count = 1, .reusable = false}, SHIFT(2475), - [3812] = {.count = 1, .reusable = true}, SHIFT(2468), - [3814] = {.count = 1, .reusable = true}, SHIFT(2481), - [3816] = {.count = 1, .reusable = true}, REDUCE(sym_pattern, 4), - [3818] = {.count = 1, .reusable = false}, SHIFT(2482), - [3820] = {.count = 1, .reusable = false}, SHIFT(2483), - [3822] = {.count = 1, .reusable = true}, SHIFT(2484), - [3824] = {.count = 1, .reusable = false}, SHIFT(2485), - [3826] = {.count = 1, .reusable = false}, SHIFT(2486), - [3828] = {.count = 1, .reusable = false}, SHIFT(2487), - [3830] = {.count = 1, .reusable = false}, SHIFT(2488), - [3832] = {.count = 1, .reusable = true}, SHIFT(2489), - [3834] = {.count = 1, .reusable = false}, SHIFT(2490), - [3836] = {.count = 1, .reusable = true}, SHIFT(2483), - [3838] = {.count = 1, .reusable = false}, SHIFT(2491), - [3840] = {.count = 1, .reusable = false}, SHIFT(2497), - [3842] = {.count = 1, .reusable = true}, SHIFT(2495), - [3844] = {.count = 1, .reusable = false}, SHIFT(2496), - [3846] = {.count = 1, .reusable = false}, SHIFT(2498), - [3848] = {.count = 1, .reusable = true}, SHIFT(2503), - [3850] = {.count = 1, .reusable = true}, SHIFT(2504), - [3852] = {.count = 1, .reusable = true}, SHIFT(2505), - [3854] = {.count = 1, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), - [3856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(1316), - [3859] = {.count = 1, .reusable = true}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), - [3861] = {.count = 1, .reusable = false}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), - [3863] = {.count = 1, .reusable = true}, REDUCE(sym__simple_type_sig_block, 3), - [3865] = {.count = 2, .reusable = false}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), SHIFT_REPEAT(451), - [3868] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 4), - [3870] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_block, 3), - [3872] = {.count = 1, .reusable = true}, SHIFT(2510), - [3874] = {.count = 1, .reusable = true}, SHIFT(2515), - [3876] = {.count = 1, .reusable = false}, SHIFT(2517), - [3878] = {.count = 1, .reusable = true}, SHIFT(2516), - [3880] = {.count = 1, .reusable = false}, SHIFT(2514), - [3882] = {.count = 1, .reusable = false}, SHIFT(2522), - [3884] = {.count = 1, .reusable = true}, SHIFT(2523), - [3886] = {.count = 1, .reusable = true}, SHIFT(2524), - [3888] = {.count = 1, .reusable = true}, SHIFT(2525), - [3890] = {.count = 1, .reusable = true}, SHIFT(2526), - [3892] = {.count = 1, .reusable = false}, SHIFT(2528), - [3894] = {.count = 1, .reusable = true}, SHIFT(2529), - [3896] = {.count = 1, .reusable = true}, SHIFT(2530), - [3898] = {.count = 1, .reusable = false}, SHIFT(2533), - [3900] = {.count = 1, .reusable = false}, SHIFT(2530), - [3902] = {.count = 1, .reusable = true}, SHIFT(2537), - [3904] = {.count = 1, .reusable = true}, SHIFT(2541), - [3906] = {.count = 1, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), - [3908] = {.count = 1, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), - [3910] = {.count = 1, .reusable = true}, REDUCE(sym_do, 4), - [3912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(457), - [3915] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(462), - [3918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(459), - [3921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(458), - [3924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(460), - [3927] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(463), - [3930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(461), - [3933] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(8), - [3936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(464), - [3939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(465), - [3942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(466), - [3945] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(467), - [3948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(468), - [3951] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(470), - [3954] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(460), - [3957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(469), - [3960] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(471), - [3963] = {.count = 1, .reusable = true}, SHIFT(2543), - [3965] = {.count = 1, .reusable = true}, SHIFT(2545), - [3967] = {.count = 1, .reusable = true}, REDUCE(sym__record_assignments1, 2), - [3969] = {.count = 1, .reusable = true}, SHIFT(2549), - [3971] = {.count = 1, .reusable = true}, SHIFT(2552), - [3973] = {.count = 1, .reusable = false}, SHIFT(2553), - [3975] = {.count = 1, .reusable = true}, SHIFT(2555), - [3977] = {.count = 1, .reusable = false}, SHIFT(2549), - [3979] = {.count = 1, .reusable = true}, SHIFT(2558), - [3981] = {.count = 1, .reusable = true}, SHIFT(1381), - [3983] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 2), - [3985] = {.count = 1, .reusable = true}, SHIFT(1387), - [3987] = {.count = 1, .reusable = true}, SHIFT(1379), - [3989] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 4), - [3991] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 4), - [3993] = {.count = 1, .reusable = true}, SHIFT(2564), - [3995] = {.count = 1, .reusable = false}, SHIFT(2567), - [3997] = {.count = 1, .reusable = false}, SHIFT(2564), - [3999] = {.count = 1, .reusable = true}, SHIFT(2570), - [4001] = {.count = 1, .reusable = false}, SHIFT(2571), - [4003] = {.count = 1, .reusable = false}, SHIFT(2572), - [4005] = {.count = 1, .reusable = false}, SHIFT(2573), - [4007] = {.count = 1, .reusable = false}, SHIFT(2574), - [4009] = {.count = 1, .reusable = true}, SHIFT(2576), - [4011] = {.count = 1, .reusable = true}, SHIFT(2579), - [4013] = {.count = 1, .reusable = true}, REDUCE(sym_record_signature_only, 4), - [4015] = {.count = 1, .reusable = true}, SHIFT(2580), - [4017] = {.count = 1, .reusable = false}, SHIFT(2583), - [4019] = {.count = 1, .reusable = true}, SHIFT(2581), - [4021] = {.count = 1, .reusable = false}, SHIFT(2582), - [4023] = {.count = 1, .reusable = false}, SHIFT(2584), - [4025] = {.count = 1, .reusable = true}, SHIFT(2585), - [4027] = {.count = 1, .reusable = true}, SHIFT(2586), - [4029] = {.count = 1, .reusable = true}, SHIFT(2587), - [4031] = {.count = 1, .reusable = true}, SHIFT(2592), - [4033] = {.count = 1, .reusable = true}, SHIFT(2593), - [4035] = {.count = 1, .reusable = true}, SHIFT(2594), - [4037] = {.count = 1, .reusable = true}, SHIFT(2595), - [4039] = {.count = 1, .reusable = true}, REDUCE(sym__field_assignments1, 1), - [4041] = {.count = 1, .reusable = true}, SHIFT(2597), - [4043] = {.count = 1, .reusable = false}, SHIFT(2598), - [4045] = {.count = 1, .reusable = false}, SHIFT(2599), - [4047] = {.count = 1, .reusable = false}, SHIFT(2600), - [4049] = {.count = 1, .reusable = true}, SHIFT(2601), - [4051] = {.count = 1, .reusable = false}, SHIFT(2602), - [4053] = {.count = 1, .reusable = true}, REDUCE(sym_record, 4), - [4055] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(495), - [4058] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(496), - [4061] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(497), - [4064] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(498), - [4067] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(499), - [4070] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(824), - [4073] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(498), - [4076] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(502), - [4079] = {.count = 1, .reusable = true}, SHIFT(2608), - [4081] = {.count = 1, .reusable = true}, SHIFT(2610), - [4083] = {.count = 1, .reusable = true}, SHIFT(2611), - [4085] = {.count = 1, .reusable = true}, SHIFT(2612), - [4087] = {.count = 1, .reusable = true}, SHIFT(2617), - [4089] = {.count = 1, .reusable = true}, SHIFT(2618), - [4091] = {.count = 1, .reusable = true}, SHIFT(2619), - [4093] = {.count = 1, .reusable = true}, SHIFT(2621), - [4095] = {.count = 1, .reusable = true}, SHIFT(2623), - [4097] = {.count = 1, .reusable = true}, SHIFT(2624), - [4099] = {.count = 1, .reusable = false}, SHIFT(2626), - [4101] = {.count = 1, .reusable = true}, SHIFT(2627), - [4103] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(534), - [4106] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(535), - [4109] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(536), - [4112] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(537), - [4115] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(538), - [4118] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(539), - [4121] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(540), - [4124] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(541), - [4127] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(542), - [4130] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(543), - [4133] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(536), - [4136] = {.count = 1, .reusable = true}, SHIFT(2628), - [4138] = {.count = 1, .reusable = true}, SHIFT(2629), - [4140] = {.count = 1, .reusable = false}, SHIFT(2631), - [4142] = {.count = 1, .reusable = true}, SHIFT(2632), - [4144] = {.count = 1, .reusable = false}, SHIFT(2633), - [4146] = {.count = 1, .reusable = true}, REDUCE(sym_simple_hole, 1), - [4148] = {.count = 1, .reusable = false}, REDUCE(sym_simple_hole, 1), - [4150] = {.count = 1, .reusable = true}, SHIFT(2634), - [4152] = {.count = 1, .reusable = true}, SHIFT(2635), - [4154] = {.count = 1, .reusable = false}, SHIFT(2636), - [4156] = {.count = 1, .reusable = true}, SHIFT(2637), - [4158] = {.count = 1, .reusable = true}, SHIFT(2638), - [4160] = {.count = 1, .reusable = false}, SHIFT(2639), - [4162] = {.count = 2, .reusable = true}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(569), - [4165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(570), - [4168] = {.count = 1, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), - [4170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(568), - [4173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(567), - [4176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(571), - [4179] = {.count = 1, .reusable = true}, REDUCE(aux_sym_infix_repeat1, 2), - [4181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(573), - [4184] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(574), - [4187] = {.count = 1, .reusable = true}, SHIFT(2641), - [4189] = {.count = 1, .reusable = true}, SHIFT(2643), - [4191] = {.count = 1, .reusable = false}, SHIFT(2641), - [4193] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 2), - [4195] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 2), - [4197] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig_instance, 2), - [4199] = {.count = 1, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), - [4201] = {.count = 1, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), - [4203] = {.count = 1, .reusable = true}, REDUCE(sym__type_sig_block, 3), - [4205] = {.count = 2, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(576), - [4208] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(577), - [4211] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(578), - [4214] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(579), - [4217] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(580), - [4220] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(581), - [4223] = {.count = 2, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(579), - [4226] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(582), - [4229] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), - [4231] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(576), - [4234] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(578), - [4237] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(579), - [4240] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(580), - [4243] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(579), - [4246] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(582), - [4249] = {.count = 1, .reusable = false}, SHIFT(2651), - [4251] = {.count = 1, .reusable = true}, SHIFT(2652), - [4253] = {.count = 1, .reusable = false}, SHIFT(2653), - [4255] = {.count = 1, .reusable = false}, SHIFT(2654), - [4257] = {.count = 1, .reusable = false}, SHIFT(2655), - [4259] = {.count = 1, .reusable = false}, SHIFT(2656), - [4261] = {.count = 1, .reusable = false}, SHIFT(2657), - [4263] = {.count = 1, .reusable = false}, SHIFT(2658), - [4265] = {.count = 1, .reusable = false}, SHIFT(2659), - [4267] = {.count = 1, .reusable = false}, SHIFT(2660), - [4269] = {.count = 1, .reusable = true}, SHIFT(2661), - [4271] = {.count = 1, .reusable = false}, SHIFT(2662), - [4273] = {.count = 1, .reusable = false}, SHIFT(2663), - [4275] = {.count = 1, .reusable = true}, SHIFT(2655), - [4277] = {.count = 1, .reusable = false}, SHIFT(2664), - [4279] = {.count = 1, .reusable = false}, SHIFT(2665), - [4281] = {.count = 1, .reusable = true}, SHIFT(2672), - [4283] = {.count = 1, .reusable = true}, SHIFT(2673), - [4285] = {.count = 1, .reusable = false}, SHIFT(2674), - [4287] = {.count = 1, .reusable = true}, SHIFT(2675), - [4289] = {.count = 1, .reusable = false}, SHIFT(2676), - [4291] = {.count = 1, .reusable = false}, SHIFT(2677), - [4293] = {.count = 1, .reusable = false}, SHIFT(2678), - [4295] = {.count = 1, .reusable = false}, SHIFT(2679), - [4297] = {.count = 1, .reusable = false}, SHIFT(2680), - [4299] = {.count = 1, .reusable = false}, SHIFT(2681), - [4301] = {.count = 1, .reusable = false}, SHIFT(2682), - [4303] = {.count = 1, .reusable = false}, SHIFT(2683), - [4305] = {.count = 1, .reusable = true}, SHIFT(2684), - [4307] = {.count = 1, .reusable = false}, SHIFT(2685), - [4309] = {.count = 1, .reusable = false}, SHIFT(2686), - [4311] = {.count = 1, .reusable = true}, SHIFT(2678), - [4313] = {.count = 1, .reusable = false}, SHIFT(2687), - [4315] = {.count = 1, .reusable = false}, SHIFT(2688), - [4317] = {.count = 1, .reusable = true}, SHIFT(2696), - [4319] = {.count = 1, .reusable = true}, REDUCE(sym__let_only, 4), - [4321] = {.count = 1, .reusable = true}, SHIFT(2698), - [4323] = {.count = 1, .reusable = false}, SHIFT(2699), - [4325] = {.count = 1, .reusable = false}, REDUCE(sym_infix, 3), - [4327] = {.count = 1, .reusable = true}, SHIFT(2701), - [4329] = {.count = 1, .reusable = true}, SHIFT(2703), - [4331] = {.count = 1, .reusable = true}, SHIFT(2704), - [4333] = {.count = 1, .reusable = true}, SHIFT(2705), - [4335] = {.count = 1, .reusable = true}, SHIFT(2710), - [4337] = {.count = 1, .reusable = true}, SHIFT(2711), - [4339] = {.count = 1, .reusable = true}, SHIFT(2712), - [4341] = {.count = 1, .reusable = false}, REDUCE(sym_open, 3), - [4343] = {.count = 1, .reusable = false}, SHIFT(2717), - [4345] = {.count = 1, .reusable = true}, SHIFT(2719), - [4347] = {.count = 1, .reusable = false}, SHIFT(2722), - [4349] = {.count = 1, .reusable = false}, SHIFT(2724), - [4351] = {.count = 1, .reusable = false}, SHIFT(2719), - [4353] = {.count = 1, .reusable = true}, SHIFT(2728), - [4355] = {.count = 1, .reusable = false}, SHIFT(2733), - [4357] = {.count = 1, .reusable = true}, SHIFT(2734), - [4359] = {.count = 1, .reusable = false}, SHIFT(2737), - [4361] = {.count = 1, .reusable = false}, SHIFT(2734), - [4363] = {.count = 1, .reusable = true}, SHIFT(2740), - [4365] = {.count = 1, .reusable = false}, SHIFT(2741), - [4367] = {.count = 1, .reusable = false}, SHIFT(2742), - [4369] = {.count = 1, .reusable = false}, SHIFT(2743), - [4371] = {.count = 1, .reusable = false}, SHIFT(2744), - [4373] = {.count = 1, .reusable = true}, SHIFT(2746), - [4375] = {.count = 1, .reusable = true}, SHIFT(2749), - [4377] = {.count = 1, .reusable = false}, SHIFT(2752), - [4379] = {.count = 1, .reusable = true}, SHIFT(2750), - [4381] = {.count = 1, .reusable = false}, SHIFT(2751), - [4383] = {.count = 1, .reusable = false}, SHIFT(2753), - [4385] = {.count = 1, .reusable = true}, SHIFT(2754), - [4387] = {.count = 1, .reusable = true}, SHIFT(2755), - [4389] = {.count = 1, .reusable = false}, SHIFT(2757), - [4391] = {.count = 1, .reusable = true}, SHIFT(2758), - [4393] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(622), - [4396] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(626), - [4399] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(627), - [4402] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(623), - [4405] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(624), - [4408] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(625), - [4411] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(628), - [4414] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(629), - [4417] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(630), - [4420] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(631), - [4423] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(624), - [4426] = {.count = 1, .reusable = true}, SHIFT(2759), - [4428] = {.count = 1, .reusable = false}, SHIFT(2760), - [4430] = {.count = 1, .reusable = true}, SHIFT(2717), - [4432] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 4), - [4434] = {.count = 1, .reusable = true}, SHIFT(2762), - [4436] = {.count = 1, .reusable = false}, SHIFT(2765), - [4438] = {.count = 1, .reusable = true}, SHIFT(2766), - [4440] = {.count = 1, .reusable = false}, SHIFT(2767), - [4442] = {.count = 1, .reusable = false}, SHIFT(2768), - [4444] = {.count = 1, .reusable = true}, SHIFT(2769), - [4446] = {.count = 1, .reusable = false}, SHIFT(2770), - [4448] = {.count = 1, .reusable = true}, SHIFT(2768), - [4450] = {.count = 1, .reusable = false}, SHIFT(2771), - [4452] = {.count = 1, .reusable = false}, SHIFT(2775), - [4454] = {.count = 1, .reusable = true}, SHIFT(2776), - [4456] = {.count = 1, .reusable = false}, SHIFT(2779), - [4458] = {.count = 1, .reusable = false}, SHIFT(2776), - [4460] = {.count = 1, .reusable = true}, SHIFT(2783), - [4462] = {.count = 1, .reusable = false}, SHIFT(2785), - [4464] = {.count = 1, .reusable = true}, SHIFT(2786), - [4466] = {.count = 1, .reusable = false}, SHIFT(2787), - [4468] = {.count = 1, .reusable = false}, SHIFT(2788), - [4470] = {.count = 1, .reusable = false}, SHIFT(2789), - [4472] = {.count = 1, .reusable = false}, SHIFT(2790), - [4474] = {.count = 1, .reusable = false}, SHIFT(2791), - [4476] = {.count = 1, .reusable = true}, SHIFT(2792), - [4478] = {.count = 1, .reusable = false}, SHIFT(2793), - [4480] = {.count = 1, .reusable = false}, SHIFT(2794), - [4482] = {.count = 1, .reusable = true}, SHIFT(2787), - [4484] = {.count = 1, .reusable = true}, SHIFT(2800), - [4486] = {.count = 1, .reusable = true}, SHIFT(2802), - [4488] = {.count = 1, .reusable = false}, SHIFT(2805), - [4490] = {.count = 1, .reusable = true}, SHIFT(2806), - [4492] = {.count = 1, .reusable = false}, SHIFT(2807), - [4494] = {.count = 1, .reusable = false}, SHIFT(2808), - [4496] = {.count = 1, .reusable = true}, SHIFT(2809), - [4498] = {.count = 1, .reusable = false}, SHIFT(2810), - [4500] = {.count = 1, .reusable = true}, SHIFT(2808), - [4502] = {.count = 1, .reusable = false}, SHIFT(2811), - [4504] = {.count = 1, .reusable = false}, SHIFT(2816), - [4506] = {.count = 1, .reusable = false}, SHIFT(2817), - [4508] = {.count = 1, .reusable = false}, SHIFT(2800), - [4510] = {.count = 1, .reusable = true}, SHIFT(2820), - [4512] = {.count = 1, .reusable = false}, SHIFT(2821), - [4514] = {.count = 1, .reusable = false}, SHIFT(2822), - [4516] = {.count = 1, .reusable = false}, SHIFT(2823), - [4518] = {.count = 1, .reusable = false}, SHIFT(2824), - [4520] = {.count = 1, .reusable = true}, SHIFT(2826), - [4522] = {.count = 1, .reusable = false}, SHIFT(2828), - [4524] = {.count = 1, .reusable = true}, SHIFT(2829), - [4526] = {.count = 1, .reusable = false}, SHIFT(2830), - [4528] = {.count = 1, .reusable = false}, SHIFT(2831), - [4530] = {.count = 1, .reusable = false}, SHIFT(2832), - [4532] = {.count = 1, .reusable = false}, SHIFT(2833), - [4534] = {.count = 1, .reusable = false}, SHIFT(2834), - [4536] = {.count = 1, .reusable = true}, SHIFT(2835), - [4538] = {.count = 1, .reusable = false}, SHIFT(2836), - [4540] = {.count = 1, .reusable = false}, SHIFT(2837), - [4542] = {.count = 1, .reusable = true}, SHIFT(2830), - [4544] = {.count = 1, .reusable = true}, SHIFT(2843), - [4546] = {.count = 1, .reusable = false}, SHIFT(2844), - [4548] = {.count = 1, .reusable = false}, SHIFT(2845), - [4550] = {.count = 1, .reusable = true}, SHIFT(2846), - [4552] = {.count = 1, .reusable = false}, SHIFT(2847), - [4554] = {.count = 1, .reusable = false}, SHIFT(2848), - [4556] = {.count = 1, .reusable = false}, SHIFT(2849), - [4558] = {.count = 1, .reusable = false}, SHIFT(2850), - [4560] = {.count = 1, .reusable = true}, SHIFT(2851), - [4562] = {.count = 1, .reusable = false}, SHIFT(2852), - [4564] = {.count = 1, .reusable = true}, SHIFT(2845), - [4566] = {.count = 1, .reusable = false}, SHIFT(2853), - [4568] = {.count = 1, .reusable = false}, SHIFT(2859), - [4570] = {.count = 1, .reusable = true}, SHIFT(2857), - [4572] = {.count = 1, .reusable = false}, SHIFT(2858), - [4574] = {.count = 1, .reusable = false}, SHIFT(2860), - [4576] = {.count = 1, .reusable = true}, SHIFT(2861), - [4578] = {.count = 1, .reusable = true}, SHIFT(2862), - [4580] = {.count = 1, .reusable = false}, SHIFT(2864), - [4582] = {.count = 1, .reusable = true}, SHIFT(2865), - [4584] = {.count = 1, .reusable = true}, SHIFT(2866), - [4586] = {.count = 1, .reusable = true}, SHIFT(2868), - [4588] = {.count = 1, .reusable = false}, SHIFT(2871), - [4590] = {.count = 1, .reusable = true}, SHIFT(2872), - [4592] = {.count = 1, .reusable = false}, SHIFT(2873), - [4594] = {.count = 1, .reusable = false}, SHIFT(2874), - [4596] = {.count = 1, .reusable = true}, SHIFT(2875), - [4598] = {.count = 1, .reusable = false}, SHIFT(2876), - [4600] = {.count = 1, .reusable = true}, SHIFT(2874), - [4602] = {.count = 1, .reusable = false}, SHIFT(2877), - [4604] = {.count = 1, .reusable = false}, SHIFT(2882), - [4606] = {.count = 1, .reusable = false}, SHIFT(2883), - [4608] = {.count = 1, .reusable = false}, SHIFT(2866), - [4610] = {.count = 1, .reusable = true}, SHIFT(2886), - [4612] = {.count = 1, .reusable = false}, SHIFT(2887), - [4614] = {.count = 1, .reusable = false}, SHIFT(2888), - [4616] = {.count = 1, .reusable = false}, SHIFT(2889), - [4618] = {.count = 1, .reusable = false}, SHIFT(2890), - [4620] = {.count = 1, .reusable = true}, SHIFT(2892), - [4622] = {.count = 1, .reusable = false}, SHIFT(2894), - [4624] = {.count = 1, .reusable = true}, SHIFT(2895), - [4626] = {.count = 1, .reusable = false}, SHIFT(2896), - [4628] = {.count = 1, .reusable = false}, SHIFT(2897), - [4630] = {.count = 1, .reusable = false}, SHIFT(2898), - [4632] = {.count = 1, .reusable = false}, SHIFT(2899), - [4634] = {.count = 1, .reusable = false}, SHIFT(2900), - [4636] = {.count = 1, .reusable = true}, SHIFT(2901), - [4638] = {.count = 1, .reusable = false}, SHIFT(2902), - [4640] = {.count = 1, .reusable = false}, SHIFT(2903), - [4642] = {.count = 1, .reusable = true}, SHIFT(2896), - [4644] = {.count = 1, .reusable = true}, SHIFT(2909), - [4646] = {.count = 1, .reusable = false}, SHIFT(2910), - [4648] = {.count = 1, .reusable = false}, SHIFT(2911), - [4650] = {.count = 1, .reusable = true}, SHIFT(2912), - [4652] = {.count = 1, .reusable = false}, SHIFT(2913), - [4654] = {.count = 1, .reusable = false}, SHIFT(2914), - [4656] = {.count = 1, .reusable = false}, SHIFT(2915), - [4658] = {.count = 1, .reusable = false}, SHIFT(2916), - [4660] = {.count = 1, .reusable = true}, SHIFT(2917), - [4662] = {.count = 1, .reusable = false}, SHIFT(2918), - [4664] = {.count = 1, .reusable = true}, SHIFT(2911), - [4666] = {.count = 1, .reusable = false}, SHIFT(2919), - [4668] = {.count = 1, .reusable = false}, SHIFT(2925), - [4670] = {.count = 1, .reusable = true}, SHIFT(2923), - [4672] = {.count = 1, .reusable = false}, SHIFT(2924), - [4674] = {.count = 1, .reusable = false}, SHIFT(2926), - [4676] = {.count = 1, .reusable = true}, SHIFT(2927), - [4678] = {.count = 1, .reusable = false}, SHIFT(2930), - [4680] = {.count = 1, .reusable = true}, SHIFT(2931), - [4682] = {.count = 1, .reusable = false}, SHIFT(2932), - [4684] = {.count = 1, .reusable = false}, SHIFT(2933), - [4686] = {.count = 1, .reusable = true}, SHIFT(2934), - [4688] = {.count = 1, .reusable = false}, SHIFT(2935), - [4690] = {.count = 1, .reusable = true}, SHIFT(2933), - [4692] = {.count = 1, .reusable = false}, SHIFT(2936), - [4694] = {.count = 1, .reusable = false}, SHIFT(2940), - [4696] = {.count = 1, .reusable = true}, SHIFT(2941), - [4698] = {.count = 1, .reusable = false}, SHIFT(2944), - [4700] = {.count = 1, .reusable = false}, SHIFT(2941), - [4702] = {.count = 1, .reusable = true}, SHIFT(2948), - [4704] = {.count = 1, .reusable = false}, SHIFT(2950), - [4706] = {.count = 1, .reusable = true}, SHIFT(2951), - [4708] = {.count = 1, .reusable = false}, SHIFT(2952), - [4710] = {.count = 1, .reusable = false}, SHIFT(2953), - [4712] = {.count = 1, .reusable = false}, SHIFT(2954), - [4714] = {.count = 1, .reusable = false}, SHIFT(2955), - [4716] = {.count = 1, .reusable = false}, SHIFT(2956), - [4718] = {.count = 1, .reusable = true}, SHIFT(2957), - [4720] = {.count = 1, .reusable = false}, SHIFT(2958), - [4722] = {.count = 1, .reusable = false}, SHIFT(2959), - [4724] = {.count = 1, .reusable = true}, SHIFT(2952), - [4726] = {.count = 1, .reusable = true}, SHIFT(2965), - [4728] = {.count = 1, .reusable = true}, SHIFT(2967), - [4730] = {.count = 1, .reusable = false}, SHIFT(2970), - [4732] = {.count = 1, .reusable = true}, SHIFT(2971), - [4734] = {.count = 1, .reusable = false}, SHIFT(2972), - [4736] = {.count = 1, .reusable = false}, SHIFT(2973), - [4738] = {.count = 1, .reusable = true}, SHIFT(2974), - [4740] = {.count = 1, .reusable = false}, SHIFT(2975), - [4742] = {.count = 1, .reusable = true}, SHIFT(2973), - [4744] = {.count = 1, .reusable = false}, SHIFT(2976), - [4746] = {.count = 1, .reusable = false}, SHIFT(2981), - [4748] = {.count = 1, .reusable = false}, SHIFT(2982), - [4750] = {.count = 1, .reusable = false}, SHIFT(2965), - [4752] = {.count = 1, .reusable = true}, SHIFT(2985), - [4754] = {.count = 1, .reusable = false}, SHIFT(2986), - [4756] = {.count = 1, .reusable = false}, SHIFT(2987), - [4758] = {.count = 1, .reusable = false}, SHIFT(2988), - [4760] = {.count = 1, .reusable = false}, SHIFT(2989), - [4762] = {.count = 1, .reusable = true}, SHIFT(2991), - [4764] = {.count = 1, .reusable = false}, SHIFT(2993), - [4766] = {.count = 1, .reusable = true}, SHIFT(2994), - [4768] = {.count = 1, .reusable = false}, SHIFT(2995), - [4770] = {.count = 1, .reusable = false}, SHIFT(2996), - [4772] = {.count = 1, .reusable = false}, SHIFT(2997), - [4774] = {.count = 1, .reusable = false}, SHIFT(2998), - [4776] = {.count = 1, .reusable = false}, SHIFT(2999), - [4778] = {.count = 1, .reusable = true}, SHIFT(3000), - [4780] = {.count = 1, .reusable = false}, SHIFT(3001), - [4782] = {.count = 1, .reusable = false}, SHIFT(3002), - [4784] = {.count = 1, .reusable = true}, SHIFT(2995), - [4786] = {.count = 1, .reusable = true}, SHIFT(3008), - [4788] = {.count = 1, .reusable = false}, SHIFT(3009), - [4790] = {.count = 1, .reusable = false}, SHIFT(3010), - [4792] = {.count = 1, .reusable = true}, SHIFT(3011), - [4794] = {.count = 1, .reusable = false}, SHIFT(3012), - [4796] = {.count = 1, .reusable = false}, SHIFT(3013), - [4798] = {.count = 1, .reusable = false}, SHIFT(3014), - [4800] = {.count = 1, .reusable = false}, SHIFT(3015), - [4802] = {.count = 1, .reusable = true}, SHIFT(3016), - [4804] = {.count = 1, .reusable = false}, SHIFT(3017), - [4806] = {.count = 1, .reusable = true}, SHIFT(3010), - [4808] = {.count = 1, .reusable = false}, SHIFT(3018), - [4810] = {.count = 1, .reusable = false}, SHIFT(3024), - [4812] = {.count = 1, .reusable = true}, SHIFT(3022), - [4814] = {.count = 1, .reusable = false}, SHIFT(3023), - [4816] = {.count = 1, .reusable = false}, SHIFT(3025), - [4818] = {.count = 1, .reusable = true}, SHIFT(3026), - [4820] = {.count = 1, .reusable = true}, SHIFT(3027), - [4822] = {.count = 1, .reusable = false}, SHIFT(3029), - [4824] = {.count = 1, .reusable = true}, SHIFT(3030), - [4826] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3031), - [4829] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3032), - [4832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3033), - [4835] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3034), - [4838] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3035), - [4841] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3036), - [4844] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3037), - [4847] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3038), - [4850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3039), - [4853] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3033), - [4856] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3040), - [4859] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 3), - [4861] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 3), - [4863] = {.count = 1, .reusable = true}, SHIFT(3043), - [4865] = {.count = 1, .reusable = true}, SHIFT(3044), - [4867] = {.count = 1, .reusable = false}, SHIFT(3046), - [4869] = {.count = 1, .reusable = true}, SHIFT(3047), - [4871] = {.count = 1, .reusable = true}, SHIFT(3049), - [4873] = {.count = 1, .reusable = true}, SHIFT(3050), - [4875] = {.count = 1, .reusable = true}, SHIFT(3051), - [4877] = {.count = 1, .reusable = true}, SHIFT(3052), - [4879] = {.count = 1, .reusable = true}, SHIFT(3053), - [4881] = {.count = 1, .reusable = true}, SHIFT(3056), - [4883] = {.count = 1, .reusable = true}, SHIFT(3058), - [4885] = {.count = 1, .reusable = true}, SHIFT(3059), - [4887] = {.count = 1, .reusable = true}, SHIFT(3061), - [4889] = {.count = 1, .reusable = false}, SHIFT(3062), - [4891] = {.count = 1, .reusable = true}, SHIFT(3070), - [4893] = {.count = 1, .reusable = true}, SHIFT(3075), - [4895] = {.count = 1, .reusable = false}, SHIFT(3077), - [4897] = {.count = 1, .reusable = true}, SHIFT(3076), - [4899] = {.count = 1, .reusable = false}, SHIFT(3074), - [4901] = {.count = 1, .reusable = false}, SHIFT(3082), - [4903] = {.count = 1, .reusable = true}, SHIFT(3083), - [4905] = {.count = 1, .reusable = true}, SHIFT(3084), - [4907] = {.count = 1, .reusable = true}, SHIFT(3085), - [4909] = {.count = 1, .reusable = true}, SHIFT(3086), - [4911] = {.count = 1, .reusable = false}, SHIFT(3089), - [4913] = {.count = 1, .reusable = true}, SHIFT(3090), - [4915] = {.count = 1, .reusable = false}, SHIFT(3091), - [4917] = {.count = 1, .reusable = false}, SHIFT(3092), - [4919] = {.count = 1, .reusable = true}, SHIFT(3093), - [4921] = {.count = 1, .reusable = false}, SHIFT(3094), - [4923] = {.count = 1, .reusable = true}, SHIFT(3092), - [4925] = {.count = 1, .reusable = false}, SHIFT(3095), - [4927] = {.count = 1, .reusable = false}, SHIFT(3099), - [4929] = {.count = 1, .reusable = false}, SHIFT(3100), - [4931] = {.count = 1, .reusable = false}, SHIFT(3101), - [4933] = {.count = 1, .reusable = true}, SHIFT(3105), - [4935] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 2), - [4937] = {.count = 1, .reusable = false}, SHIFT(3106), - [4939] = {.count = 1, .reusable = true}, SHIFT(3108), - [4941] = {.count = 1, .reusable = false}, SHIFT(3110), - [4943] = {.count = 1, .reusable = true}, SHIFT(3111), - [4945] = {.count = 1, .reusable = true}, SHIFT(3113), - [4947] = {.count = 1, .reusable = true}, SHIFT(3114), - [4949] = {.count = 1, .reusable = false}, SHIFT(3115), - [4951] = {.count = 1, .reusable = false}, SHIFT(3120), - [4953] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1776), - [4956] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1781), - [4959] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1779), - [4962] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1782), - [4965] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1783), - [4968] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1784), - [4971] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3126), - [4974] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1786), - [4977] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1787), - [4980] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1779), - [4983] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1790), - [4986] = {.count = 1, .reusable = true}, SHIFT(3127), - [4988] = {.count = 1, .reusable = false}, SHIFT(3132), - [4990] = {.count = 1, .reusable = true}, SHIFT(3133), - [4992] = {.count = 1, .reusable = false}, SHIFT(3136), - [4994] = {.count = 1, .reusable = false}, SHIFT(3133), - [4996] = {.count = 1, .reusable = true}, SHIFT(3140), - [4998] = {.count = 1, .reusable = false}, SHIFT(3142), - [5000] = {.count = 1, .reusable = false}, SHIFT(3147), - [5002] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause_absurd, 2), - [5004] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 4), - [5006] = {.count = 1, .reusable = true}, SHIFT(3149), - [5008] = {.count = 1, .reusable = false}, SHIFT(3153), - [5010] = {.count = 1, .reusable = false}, SHIFT(3149), - [5012] = {.count = 1, .reusable = true}, SHIFT(3157), - [5014] = {.count = 1, .reusable = false}, SHIFT(3160), - [5016] = {.count = 1, .reusable = true}, SHIFT(3163), - [5018] = {.count = 1, .reusable = true}, SHIFT(3165), - [5020] = {.count = 1, .reusable = true}, REDUCE(sym_open, 4), - [5022] = {.count = 1, .reusable = true}, SHIFT(3169), - [5024] = {.count = 1, .reusable = true}, SHIFT(3171), - [5026] = {.count = 1, .reusable = true}, REDUCE(sym__open_as, 2), - [5028] = {.count = 1, .reusable = false}, REDUCE(sym__open_as, 2), - [5030] = {.count = 1, .reusable = false}, SHIFT(3172), - [5032] = {.count = 1, .reusable = true}, SHIFT(3173), - [5034] = {.count = 1, .reusable = false}, SHIFT(3174), - [5036] = {.count = 1, .reusable = true}, SHIFT(3176), - [5038] = {.count = 1, .reusable = false}, SHIFT(3178), - [5040] = {.count = 1, .reusable = false}, SHIFT(3179), - [5042] = {.count = 1, .reusable = false}, SHIFT(3180), - [5044] = {.count = 1, .reusable = true}, SHIFT(3182), - [5046] = {.count = 1, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), - [5048] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(740), - [5051] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(746), - [5054] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(738), - [5057] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(733), - [5060] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(734), - [5063] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(735), - [5066] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(736), - [5069] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(739), - [5072] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(741), - [5075] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(742), - [5078] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(743), - [5081] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(744), - [5084] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(735), - [5087] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(745), - [5090] = {.count = 1, .reusable = true}, SHIFT(3183), - [5092] = {.count = 1, .reusable = true}, SHIFT(3185), - [5094] = {.count = 1, .reusable = true}, SHIFT(3187), - [5096] = {.count = 1, .reusable = true}, SHIFT(3188), - [5098] = {.count = 1, .reusable = false}, SHIFT(3190), - [5100] = {.count = 1, .reusable = true}, SHIFT(3191), - [5102] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(776), - [5105] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(777), - [5108] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(778), - [5111] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(779), - [5114] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(780), - [5117] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(781), - [5120] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(782), - [5123] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(784), - [5126] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(783), - [5129] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(778), - [5132] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(785), - [5135] = {.count = 1, .reusable = true}, SHIFT(3192), - [5137] = {.count = 1, .reusable = true}, SHIFT(3193), - [5139] = {.count = 1, .reusable = false}, SHIFT(3195), - [5141] = {.count = 1, .reusable = true}, SHIFT(3196), - [5143] = {.count = 1, .reusable = true}, SHIFT(3197), - [5145] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(816), - [5148] = {.count = 1, .reusable = true}, SHIFT(3199), - [5150] = {.count = 1, .reusable = true}, SHIFT(3201), - [5152] = {.count = 1, .reusable = false}, SHIFT(3204), - [5154] = {.count = 1, .reusable = true}, SHIFT(3205), - [5156] = {.count = 1, .reusable = false}, SHIFT(3206), - [5158] = {.count = 1, .reusable = false}, SHIFT(3207), - [5160] = {.count = 1, .reusable = true}, SHIFT(3208), - [5162] = {.count = 1, .reusable = false}, SHIFT(3209), - [5164] = {.count = 1, .reusable = true}, SHIFT(3207), - [5166] = {.count = 1, .reusable = false}, SHIFT(3210), - [5168] = {.count = 1, .reusable = false}, SHIFT(3215), - [5170] = {.count = 1, .reusable = false}, SHIFT(3216), - [5172] = {.count = 1, .reusable = false}, SHIFT(3199), - [5174] = {.count = 1, .reusable = true}, SHIFT(3219), - [5176] = {.count = 1, .reusable = false}, SHIFT(3220), - [5178] = {.count = 1, .reusable = false}, SHIFT(3221), - [5180] = {.count = 1, .reusable = false}, SHIFT(3222), - [5182] = {.count = 1, .reusable = false}, SHIFT(3223), - [5184] = {.count = 1, .reusable = true}, SHIFT(3225), - [5186] = {.count = 1, .reusable = false}, SHIFT(3227), - [5188] = {.count = 1, .reusable = true}, SHIFT(3228), - [5190] = {.count = 1, .reusable = false}, SHIFT(3229), - [5192] = {.count = 1, .reusable = false}, SHIFT(3230), - [5194] = {.count = 1, .reusable = false}, SHIFT(3231), - [5196] = {.count = 1, .reusable = false}, SHIFT(3232), - [5198] = {.count = 1, .reusable = false}, SHIFT(3233), - [5200] = {.count = 1, .reusable = true}, SHIFT(3234), - [5202] = {.count = 1, .reusable = false}, SHIFT(3235), - [5204] = {.count = 1, .reusable = false}, SHIFT(3236), - [5206] = {.count = 1, .reusable = true}, SHIFT(3229), - [5208] = {.count = 1, .reusable = true}, SHIFT(3242), - [5210] = {.count = 1, .reusable = true}, SHIFT(3243), - [5212] = {.count = 1, .reusable = false}, SHIFT(3244), - [5214] = {.count = 1, .reusable = false}, SHIFT(3245), - [5216] = {.count = 1, .reusable = true}, SHIFT(3246), - [5218] = {.count = 1, .reusable = false}, SHIFT(3247), - [5220] = {.count = 1, .reusable = false}, SHIFT(3248), - [5222] = {.count = 1, .reusable = false}, SHIFT(3249), - [5224] = {.count = 1, .reusable = false}, SHIFT(3250), - [5226] = {.count = 1, .reusable = true}, SHIFT(3251), - [5228] = {.count = 1, .reusable = false}, SHIFT(3252), - [5230] = {.count = 1, .reusable = true}, SHIFT(3245), - [5232] = {.count = 1, .reusable = false}, SHIFT(3253), - [5234] = {.count = 1, .reusable = false}, SHIFT(3259), - [5236] = {.count = 1, .reusable = true}, SHIFT(3257), - [5238] = {.count = 1, .reusable = false}, SHIFT(3258), - [5240] = {.count = 1, .reusable = false}, SHIFT(3260), - [5242] = {.count = 1, .reusable = true}, REDUCE(sym_data, 4, .alias_sequence_id = 7), - [5244] = {.count = 1, .reusable = true}, SHIFT(3263), - [5246] = {.count = 1, .reusable = true}, SHIFT(3265), - [5248] = {.count = 1, .reusable = true}, SHIFT(3266), - [5250] = {.count = 1, .reusable = true}, SHIFT(3267), - [5252] = {.count = 1, .reusable = true}, SHIFT(3272), - [5254] = {.count = 1, .reusable = true}, SHIFT(3273), - [5256] = {.count = 1, .reusable = true}, SHIFT(3274), - [5258] = {.count = 1, .reusable = true}, SHIFT(3276), - [5260] = {.count = 1, .reusable = true}, SHIFT(3278), - [5262] = {.count = 1, .reusable = true}, SHIFT(3279), - [5264] = {.count = 1, .reusable = false}, SHIFT(3281), - [5266] = {.count = 1, .reusable = true}, SHIFT(3282), - [5268] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(856), - [5271] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(857), - [5274] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(858), - [5277] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(859), - [5280] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(860), - [5283] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(861), - [5286] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(862), - [5289] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(863), - [5292] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(864), - [5295] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(865), - [5298] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(858), - [5301] = {.count = 1, .reusable = true}, SHIFT(3283), - [5303] = {.count = 1, .reusable = true}, SHIFT(3284), - [5305] = {.count = 1, .reusable = false}, SHIFT(3286), - [5307] = {.count = 1, .reusable = true}, SHIFT(3287), - [5309] = {.count = 1, .reusable = true}, SHIFT(3288), - [5311] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(896), - [5314] = {.count = 1, .reusable = true}, SHIFT(3292), - [5316] = {.count = 1, .reusable = true}, SHIFT(3293), - [5318] = {.count = 1, .reusable = true}, SHIFT(3294), - [5320] = {.count = 1, .reusable = true}, SHIFT(3295), - [5322] = {.count = 1, .reusable = true}, SHIFT(3296), - [5324] = {.count = 1, .reusable = true}, SHIFT(3299), - [5326] = {.count = 1, .reusable = true}, SHIFT(3300), - [5328] = {.count = 1, .reusable = false}, SHIFT(3302), - [5330] = {.count = 1, .reusable = true}, SHIFT(3303), - [5332] = {.count = 1, .reusable = true}, SHIFT(3305), - [5334] = {.count = 1, .reusable = true}, REDUCE(sym_data_signature_only, 4, .alias_sequence_id = 7), - [5336] = {.count = 1, .reusable = true}, SHIFT(3308), - [5338] = {.count = 1, .reusable = true}, SHIFT(3309), - [5340] = {.count = 1, .reusable = true}, SHIFT(3310), - [5342] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 1), - [5344] = {.count = 1, .reusable = true}, SHIFT(3311), - [5346] = {.count = 1, .reusable = false}, REDUCE(sym_module_application, 1), - [5348] = {.count = 1, .reusable = false}, SHIFT(3312), - [5350] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 4), - [5352] = {.count = 1, .reusable = true}, SHIFT(3319), - [5354] = {.count = 1, .reusable = true}, SHIFT(3320), - [5356] = {.count = 1, .reusable = true}, SHIFT(3321), - [5358] = {.count = 1, .reusable = true}, REDUCE(sym_module, 4, .alias_sequence_id = 8), - [5360] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(949), - [5363] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(950), - [5366] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(951), - [5369] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(953), - [5372] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(954), - [5375] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(955), - [5378] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(953), - [5381] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(957), - [5384] = {.count = 1, .reusable = true}, SHIFT(3323), - [5386] = {.count = 1, .reusable = true}, SHIFT(3324), - [5388] = {.count = 1, .reusable = true}, SHIFT(3325), - [5390] = {.count = 1, .reusable = true}, SHIFT(3330), - [5392] = {.count = 1, .reusable = true}, SHIFT(3331), - [5394] = {.count = 1, .reusable = true}, SHIFT(3332), - [5396] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(271), - [5399] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(961), - [5402] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(962), - [5405] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(963), - [5408] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(964), - [5411] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(965), - [5414] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(963), - [5417] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(966), - [5420] = {.count = 1, .reusable = true}, SHIFT(3335), - [5422] = {.count = 1, .reusable = true}, SHIFT(3340), - [5424] = {.count = 1, .reusable = false}, SHIFT(3342), - [5426] = {.count = 1, .reusable = true}, SHIFT(3341), - [5428] = {.count = 1, .reusable = false}, SHIFT(3339), - [5430] = {.count = 1, .reusable = false}, SHIFT(3347), - [5432] = {.count = 1, .reusable = true}, SHIFT(3348), - [5434] = {.count = 1, .reusable = true}, SHIFT(3349), - [5436] = {.count = 1, .reusable = true}, SHIFT(3350), - [5438] = {.count = 1, .reusable = true}, SHIFT(3351), - [5440] = {.count = 1, .reusable = false}, SHIFT(3353), - [5442] = {.count = 1, .reusable = true}, SHIFT(3354), - [5444] = {.count = 1, .reusable = true}, SHIFT(3355), - [5446] = {.count = 1, .reusable = false}, SHIFT(3358), - [5448] = {.count = 1, .reusable = false}, SHIFT(3355), - [5450] = {.count = 1, .reusable = true}, SHIFT(3362), - [5452] = {.count = 1, .reusable = true}, SHIFT(3366), - [5454] = {.count = 1, .reusable = false}, SHIFT(3367), - [5456] = {.count = 1, .reusable = true}, SHIFT(3368), - [5458] = {.count = 1, .reusable = false}, SHIFT(3369), - [5460] = {.count = 1, .reusable = false}, SHIFT(3370), - [5462] = {.count = 1, .reusable = false}, SHIFT(3371), - [5464] = {.count = 1, .reusable = false}, SHIFT(3372), - [5466] = {.count = 1, .reusable = false}, SHIFT(3373), - [5468] = {.count = 1, .reusable = true}, SHIFT(3374), - [5470] = {.count = 1, .reusable = false}, SHIFT(3375), - [5472] = {.count = 1, .reusable = true}, SHIFT(3369), - [5474] = {.count = 1, .reusable = false}, SHIFT(3376), - [5476] = {.count = 1, .reusable = true}, SHIFT(3382), - [5478] = {.count = 1, .reusable = true}, SHIFT(3385), - [5480] = {.count = 1, .reusable = true}, SHIFT(3390), - [5482] = {.count = 1, .reusable = false}, SHIFT(3392), - [5484] = {.count = 1, .reusable = true}, SHIFT(3391), - [5486] = {.count = 1, .reusable = false}, SHIFT(3389), - [5488] = {.count = 1, .reusable = false}, SHIFT(3397), - [5490] = {.count = 1, .reusable = true}, SHIFT(3398), - [5492] = {.count = 1, .reusable = true}, SHIFT(3399), - [5494] = {.count = 1, .reusable = true}, SHIFT(3400), - [5496] = {.count = 1, .reusable = false}, SHIFT(3402), - [5498] = {.count = 1, .reusable = true}, SHIFT(3403), - [5500] = {.count = 1, .reusable = true}, SHIFT(3404), - [5502] = {.count = 1, .reusable = false}, SHIFT(3407), - [5504] = {.count = 1, .reusable = false}, SHIFT(3404), - [5506] = {.count = 1, .reusable = true}, SHIFT(3411), - [5508] = {.count = 1, .reusable = true}, SHIFT(3415), - [5510] = {.count = 1, .reusable = true}, SHIFT(3416), - [5512] = {.count = 1, .reusable = false}, SHIFT(3419), - [5514] = {.count = 1, .reusable = false}, SHIFT(3416), - [5516] = {.count = 1, .reusable = true}, SHIFT(3423), - [5518] = {.count = 1, .reusable = true}, SHIFT(3426), - [5520] = {.count = 1, .reusable = true}, SHIFT(3428), - [5522] = {.count = 1, .reusable = true}, SHIFT(3431), - [5524] = {.count = 1, .reusable = true}, SHIFT(3436), - [5526] = {.count = 1, .reusable = false}, SHIFT(3438), - [5528] = {.count = 1, .reusable = true}, SHIFT(3437), - [5530] = {.count = 1, .reusable = false}, SHIFT(3435), - [5532] = {.count = 1, .reusable = false}, SHIFT(3443), - [5534] = {.count = 1, .reusable = true}, SHIFT(3444), - [5536] = {.count = 1, .reusable = true}, SHIFT(3445), - [5538] = {.count = 1, .reusable = true}, SHIFT(3446), - [5540] = {.count = 1, .reusable = false}, SHIFT(3448), - [5542] = {.count = 1, .reusable = true}, SHIFT(3449), - [5544] = {.count = 1, .reusable = true}, SHIFT(3450), - [5546] = {.count = 1, .reusable = false}, SHIFT(3453), - [5548] = {.count = 1, .reusable = false}, SHIFT(3450), - [5550] = {.count = 1, .reusable = true}, SHIFT(3457), - [5552] = {.count = 1, .reusable = true}, SHIFT(3461), - [5554] = {.count = 1, .reusable = true}, SHIFT(3462), - [5556] = {.count = 1, .reusable = false}, SHIFT(3465), - [5558] = {.count = 1, .reusable = false}, SHIFT(3462), - [5560] = {.count = 1, .reusable = true}, SHIFT(3469), - [5562] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1050), - [5565] = {.count = 1, .reusable = true}, SHIFT(3475), - [5567] = {.count = 1, .reusable = true}, SHIFT(3480), - [5569] = {.count = 1, .reusable = false}, SHIFT(3482), - [5571] = {.count = 1, .reusable = true}, SHIFT(3481), - [5573] = {.count = 1, .reusable = false}, SHIFT(3479), - [5575] = {.count = 1, .reusable = false}, SHIFT(3487), - [5577] = {.count = 1, .reusable = true}, SHIFT(3488), - [5579] = {.count = 1, .reusable = true}, SHIFT(3489), - [5581] = {.count = 1, .reusable = true}, SHIFT(3490), - [5583] = {.count = 1, .reusable = true}, SHIFT(3491), - [5585] = {.count = 1, .reusable = false}, SHIFT(3493), - [5587] = {.count = 1, .reusable = true}, SHIFT(3494), - [5589] = {.count = 1, .reusable = true}, SHIFT(3495), - [5591] = {.count = 1, .reusable = false}, SHIFT(3498), - [5593] = {.count = 1, .reusable = false}, SHIFT(3495), - [5595] = {.count = 1, .reusable = true}, SHIFT(3502), - [5597] = {.count = 1, .reusable = true}, SHIFT(3506), - [5599] = {.count = 1, .reusable = false}, SHIFT(3507), - [5601] = {.count = 1, .reusable = true}, SHIFT(3508), - [5603] = {.count = 1, .reusable = false}, SHIFT(3509), - [5605] = {.count = 1, .reusable = false}, SHIFT(3510), - [5607] = {.count = 1, .reusable = false}, SHIFT(3511), - [5609] = {.count = 1, .reusable = false}, SHIFT(3512), - [5611] = {.count = 1, .reusable = false}, SHIFT(3513), - [5613] = {.count = 1, .reusable = true}, SHIFT(3514), - [5615] = {.count = 1, .reusable = false}, SHIFT(3515), - [5617] = {.count = 1, .reusable = true}, SHIFT(3509), - [5619] = {.count = 1, .reusable = false}, SHIFT(3516), - [5621] = {.count = 1, .reusable = true}, SHIFT(3522), - [5623] = {.count = 1, .reusable = true}, SHIFT(3525), - [5625] = {.count = 1, .reusable = true}, SHIFT(3530), - [5627] = {.count = 1, .reusable = false}, SHIFT(3532), - [5629] = {.count = 1, .reusable = true}, SHIFT(3531), - [5631] = {.count = 1, .reusable = false}, SHIFT(3529), - [5633] = {.count = 1, .reusable = false}, SHIFT(3537), - [5635] = {.count = 1, .reusable = true}, SHIFT(3538), - [5637] = {.count = 1, .reusable = true}, SHIFT(3539), - [5639] = {.count = 1, .reusable = true}, SHIFT(3540), - [5641] = {.count = 1, .reusable = false}, SHIFT(3542), - [5643] = {.count = 1, .reusable = true}, SHIFT(3543), - [5645] = {.count = 1, .reusable = true}, SHIFT(3544), - [5647] = {.count = 1, .reusable = false}, SHIFT(3547), - [5649] = {.count = 1, .reusable = false}, SHIFT(3544), - [5651] = {.count = 1, .reusable = true}, SHIFT(3551), - [5653] = {.count = 1, .reusable = true}, SHIFT(3555), - [5655] = {.count = 1, .reusable = true}, SHIFT(3556), - [5657] = {.count = 1, .reusable = false}, SHIFT(3559), - [5659] = {.count = 1, .reusable = false}, SHIFT(3556), - [5661] = {.count = 1, .reusable = true}, SHIFT(3563), - [5663] = {.count = 1, .reusable = true}, SHIFT(3566), - [5665] = {.count = 1, .reusable = true}, SHIFT(3568), - [5667] = {.count = 1, .reusable = true}, SHIFT(3569), - [5669] = {.count = 1, .reusable = true}, SHIFT(3570), - [5671] = {.count = 1, .reusable = true}, SHIFT(3575), - [5673] = {.count = 1, .reusable = true}, SHIFT(3576), - [5675] = {.count = 1, .reusable = true}, SHIFT(3577), - [5677] = {.count = 1, .reusable = true}, SHIFT(3579), - [5679] = {.count = 1, .reusable = true}, SHIFT(3581), - [5681] = {.count = 1, .reusable = true}, SHIFT(3582), - [5683] = {.count = 1, .reusable = false}, SHIFT(3584), - [5685] = {.count = 1, .reusable = true}, SHIFT(3585), - [5687] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1122), - [5690] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1123), - [5693] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1124), - [5696] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1125), - [5699] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1126), - [5702] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1127), - [5705] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1128), - [5708] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1130), - [5711] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1129), - [5714] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1124), - [5717] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1131), - [5720] = {.count = 1, .reusable = false}, SHIFT(3586), - [5722] = {.count = 1, .reusable = false}, SHIFT(3587), - [5724] = {.count = 1, .reusable = true}, SHIFT(3588), - [5726] = {.count = 1, .reusable = false}, SHIFT(3589), - [5728] = {.count = 1, .reusable = false}, SHIFT(3590), - [5730] = {.count = 1, .reusable = false}, SHIFT(3591), - [5732] = {.count = 1, .reusable = false}, SHIFT(3592), - [5734] = {.count = 1, .reusable = true}, SHIFT(3593), - [5736] = {.count = 1, .reusable = false}, SHIFT(3594), - [5738] = {.count = 1, .reusable = true}, SHIFT(3587), - [5740] = {.count = 1, .reusable = false}, SHIFT(3595), - [5742] = {.count = 1, .reusable = true}, SHIFT(3599), - [5744] = {.count = 1, .reusable = true}, SHIFT(3600), - [5746] = {.count = 1, .reusable = false}, REDUCE(sym__let_only, 4), - [5748] = {.count = 1, .reusable = true}, SHIFT(3602), - [5750] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 4), - [5752] = {.count = 1, .reusable = true}, SHIFT(3605), - [5754] = {.count = 1, .reusable = true}, SHIFT(3606), - [5756] = {.count = 1, .reusable = true}, SHIFT(3607), - [5758] = {.count = 1, .reusable = true}, SHIFT(3608), - [5760] = {.count = 1, .reusable = true}, SHIFT(3609), - [5762] = {.count = 1, .reusable = false}, REDUCE(sym_lambda, 4), - [5764] = {.count = 1, .reusable = true}, SHIFT(3612), - [5766] = {.count = 1, .reusable = true}, SHIFT(3613), - [5768] = {.count = 1, .reusable = false}, SHIFT(3618), - [5770] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1173), - [5773] = {.count = 1, .reusable = false}, SHIFT(3622), - [5775] = {.count = 1, .reusable = true}, SHIFT(3624), - [5777] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 4), - [5779] = {.count = 1, .reusable = false}, REDUCE(sym_do, 4), - [5781] = {.count = 1, .reusable = true}, SHIFT(1372), - [5783] = {.count = 1, .reusable = true}, SHIFT(3629), - [5785] = {.count = 1, .reusable = true}, SHIFT(3630), - [5787] = {.count = 1, .reusable = true}, SHIFT(3632), - [5789] = {.count = 1, .reusable = true}, SHIFT(3633), - [5791] = {.count = 1, .reusable = true}, SHIFT(3634), - [5793] = {.count = 1, .reusable = true}, SHIFT(3639), - [5795] = {.count = 1, .reusable = true}, SHIFT(3640), + [1497] = {.count = 1, .reusable = false}, SHIFT(967), + [1499] = {.count = 1, .reusable = true}, SHIFT(968), + [1501] = {.count = 1, .reusable = false}, SHIFT(969), + [1503] = {.count = 1, .reusable = true}, SHIFT(967), + [1505] = {.count = 1, .reusable = false}, SHIFT(970), + [1507] = {.count = 1, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), + [1509] = {.count = 1, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), + [1511] = {.count = 1, .reusable = true}, SHIFT(974), + [1513] = {.count = 1, .reusable = false}, SHIFT(978), + [1515] = {.count = 1, .reusable = false}, SHIFT(974), + [1517] = {.count = 1, .reusable = true}, SHIFT(982), + [1519] = {.count = 1, .reusable = true}, REDUCE(sym__application, 2), + [1521] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(873), + [1524] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(875), + [1527] = {.count = 1, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), + [1529] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(874), + [1532] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(876), + [1535] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(877), + [1538] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(878), + [1541] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(879), + [1544] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(880), + [1547] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(984), + [1550] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(882), + [1553] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(874), + [1556] = {.count = 1, .reusable = true}, REDUCE(aux_sym_test_repeat1, 2), + [1558] = {.count = 2, .reusable = true}, REDUCE(aux_sym_test_repeat1, 2), SHIFT_REPEAT(290), + [1561] = {.count = 1, .reusable = false}, SHIFT(985), + [1563] = {.count = 1, .reusable = true}, SHIFT(986), + [1565] = {.count = 1, .reusable = false}, SHIFT(987), + [1567] = {.count = 1, .reusable = false}, SHIFT(988), + [1569] = {.count = 1, .reusable = false}, SHIFT(989), + [1571] = {.count = 1, .reusable = false}, SHIFT(990), + [1573] = {.count = 1, .reusable = false}, SHIFT(991), + [1575] = {.count = 1, .reusable = false}, SHIFT(992), + [1577] = {.count = 1, .reusable = false}, SHIFT(993), + [1579] = {.count = 1, .reusable = true}, SHIFT(994), + [1581] = {.count = 1, .reusable = false}, SHIFT(995), + [1583] = {.count = 1, .reusable = false}, SHIFT(996), + [1585] = {.count = 1, .reusable = false}, SHIFT(997), + [1587] = {.count = 1, .reusable = false}, SHIFT(998), + [1589] = {.count = 1, .reusable = false}, SHIFT(999), + [1591] = {.count = 1, .reusable = true}, SHIFT(988), + [1593] = {.count = 1, .reusable = false}, SHIFT(1008), + [1595] = {.count = 1, .reusable = false}, SHIFT(1009), + [1597] = {.count = 1, .reusable = true}, REDUCE(sym_function_clause, 2), + [1599] = {.count = 1, .reusable = false}, SHIFT(1011), + [1601] = {.count = 1, .reusable = false}, SHIFT(1012), + [1603] = {.count = 1, .reusable = false}, SHIFT(1013), + [1605] = {.count = 1, .reusable = false}, SHIFT(1014), + [1607] = {.count = 1, .reusable = true}, SHIFT(1015), + [1609] = {.count = 1, .reusable = false}, SHIFT(1016), + [1611] = {.count = 1, .reusable = true}, SHIFT(1017), + [1613] = {.count = 1, .reusable = false}, SHIFT(1018), + [1615] = {.count = 1, .reusable = false}, SHIFT(1019), + [1617] = {.count = 1, .reusable = false}, SHIFT(1020), + [1619] = {.count = 1, .reusable = false}, SHIFT(1021), + [1621] = {.count = 1, .reusable = false}, SHIFT(1022), + [1623] = {.count = 1, .reusable = false}, SHIFT(1023), + [1625] = {.count = 1, .reusable = false}, SHIFT(1024), + [1627] = {.count = 1, .reusable = false}, SHIFT(1025), + [1629] = {.count = 1, .reusable = true}, SHIFT(1013), + [1631] = {.count = 1, .reusable = false}, SHIFT(1031), + [1633] = {.count = 1, .reusable = true}, SHIFT(1032), + [1635] = {.count = 1, .reusable = false}, SHIFT(1033), + [1637] = {.count = 1, .reusable = false}, SHIFT(1034), + [1639] = {.count = 1, .reusable = false}, SHIFT(1035), + [1641] = {.count = 1, .reusable = false}, SHIFT(1036), + [1643] = {.count = 1, .reusable = false}, SHIFT(1037), + [1645] = {.count = 1, .reusable = false}, SHIFT(1038), + [1647] = {.count = 1, .reusable = false}, SHIFT(1039), + [1649] = {.count = 1, .reusable = true}, SHIFT(1040), + [1651] = {.count = 1, .reusable = false}, SHIFT(1041), + [1653] = {.count = 1, .reusable = false}, SHIFT(1042), + [1655] = {.count = 1, .reusable = false}, SHIFT(1043), + [1657] = {.count = 1, .reusable = false}, SHIFT(1044), + [1659] = {.count = 1, .reusable = false}, SHIFT(1045), + [1661] = {.count = 1, .reusable = true}, SHIFT(1034), + [1663] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 2), + [1665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2), + [1668] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), + [1671] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4), + [1674] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), + [1677] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [1680] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [1683] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), + [1686] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), + [1689] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10), + [1692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(11), + [1695] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(12), + [1698] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(13), + [1701] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(14), + [1704] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), + [1707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(15), + [1710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(16), + [1713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(17), + [1716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [1719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [1722] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [1725] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [1728] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [1731] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [1734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(25), + [1737] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [1740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), + [1743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [1746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), + [1749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), + [1752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(30), + [1755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [1761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(32), + [1764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [1767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), + [1770] = {.count = 1, .reusable = false}, SHIFT(1055), + [1772] = {.count = 1, .reusable = false}, SHIFT(1056), + [1774] = {.count = 1, .reusable = false}, SHIFT(1057), + [1776] = {.count = 1, .reusable = false}, SHIFT(1058), + [1778] = {.count = 1, .reusable = true}, SHIFT(1059), + [1780] = {.count = 1, .reusable = false}, SHIFT(1060), + [1782] = {.count = 1, .reusable = true}, SHIFT(1061), + [1784] = {.count = 1, .reusable = false}, SHIFT(1062), + [1786] = {.count = 1, .reusable = false}, SHIFT(1063), + [1788] = {.count = 1, .reusable = false}, SHIFT(1064), + [1790] = {.count = 1, .reusable = false}, SHIFT(1065), + [1792] = {.count = 1, .reusable = false}, SHIFT(1066), + [1794] = {.count = 1, .reusable = false}, SHIFT(1067), + [1796] = {.count = 1, .reusable = false}, SHIFT(1068), + [1798] = {.count = 1, .reusable = false}, SHIFT(1069), + [1800] = {.count = 1, .reusable = true}, SHIFT(1057), + [1802] = {.count = 1, .reusable = false}, SHIFT(1074), + [1804] = {.count = 1, .reusable = true}, SHIFT(1075), + [1806] = {.count = 1, .reusable = false}, SHIFT(1076), + [1808] = {.count = 1, .reusable = false}, SHIFT(1077), + [1810] = {.count = 1, .reusable = false}, SHIFT(1078), + [1812] = {.count = 1, .reusable = false}, SHIFT(1079), + [1814] = {.count = 1, .reusable = false}, SHIFT(1080), + [1816] = {.count = 1, .reusable = false}, SHIFT(1081), + [1818] = {.count = 1, .reusable = false}, SHIFT(1082), + [1820] = {.count = 1, .reusable = true}, SHIFT(1083), + [1822] = {.count = 1, .reusable = false}, SHIFT(1084), + [1824] = {.count = 1, .reusable = false}, SHIFT(1085), + [1826] = {.count = 1, .reusable = false}, SHIFT(1086), + [1828] = {.count = 1, .reusable = false}, SHIFT(1087), + [1830] = {.count = 1, .reusable = false}, SHIFT(1088), + [1832] = {.count = 1, .reusable = true}, SHIFT(1077), + [1834] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 2, .alias_sequence_id = 1), + [1836] = {.count = 1, .reusable = true}, SHIFT(303), + [1838] = {.count = 1, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), + [1840] = {.count = 1, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), + [1842] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(839), + [1845] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(840), + [1848] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(841), + [1851] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(842), + [1854] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(843), + [1857] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(845), + [1860] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(844), + [1863] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(846), + [1866] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(1096), + [1869] = {.count = 2, .reusable = false}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(848), + [1872] = {.count = 2, .reusable = true}, REDUCE(aux_sym__with_expr_repeat1, 2), SHIFT_REPEAT(841), + [1875] = {.count = 1, .reusable = true}, REDUCE(sym__with_expr, 2), + [1877] = {.count = 1, .reusable = true}, SHIFT(1098), + [1879] = {.count = 1, .reusable = false}, SHIFT(1098), + [1881] = {.count = 1, .reusable = false}, SHIFT(1101), + [1883] = {.count = 1, .reusable = true}, SHIFT(1102), + [1885] = {.count = 1, .reusable = false}, SHIFT(1103), + [1887] = {.count = 1, .reusable = false}, SHIFT(1104), + [1889] = {.count = 1, .reusable = false}, SHIFT(1105), + [1891] = {.count = 1, .reusable = false}, SHIFT(1106), + [1893] = {.count = 1, .reusable = false}, SHIFT(1107), + [1895] = {.count = 1, .reusable = false}, SHIFT(1108), + [1897] = {.count = 1, .reusable = false}, SHIFT(1109), + [1899] = {.count = 1, .reusable = true}, SHIFT(1110), + [1901] = {.count = 1, .reusable = false}, SHIFT(1111), + [1903] = {.count = 1, .reusable = false}, SHIFT(1112), + [1905] = {.count = 1, .reusable = false}, SHIFT(1113), + [1907] = {.count = 1, .reusable = false}, SHIFT(1114), + [1909] = {.count = 1, .reusable = false}, SHIFT(1115), + [1911] = {.count = 1, .reusable = true}, SHIFT(1104), + [1913] = {.count = 1, .reusable = true}, SHIFT(1124), + [1915] = {.count = 1, .reusable = false}, SHIFT(1126), + [1917] = {.count = 1, .reusable = true}, SHIFT(1125), + [1919] = {.count = 1, .reusable = false}, SHIFT(1123), + [1921] = {.count = 1, .reusable = true}, SHIFT(1131), + [1923] = {.count = 1, .reusable = false}, SHIFT(1132), + [1925] = {.count = 1, .reusable = false}, SHIFT(1133), + [1927] = {.count = 1, .reusable = true}, SHIFT(1134), + [1929] = {.count = 1, .reusable = true}, SHIFT(1135), + [1931] = {.count = 1, .reusable = true}, SHIFT(1137), + [1933] = {.count = 1, .reusable = true}, SHIFT(1138), + [1935] = {.count = 1, .reusable = true}, SHIFT(1140), + [1937] = {.count = 1, .reusable = false}, SHIFT(1142), + [1939] = {.count = 1, .reusable = false}, SHIFT(1143), + [1941] = {.count = 1, .reusable = true}, SHIFT(1144), + [1943] = {.count = 1, .reusable = false}, SHIFT(1145), + [1945] = {.count = 1, .reusable = false}, SHIFT(1146), + [1947] = {.count = 1, .reusable = true}, SHIFT(1147), + [1949] = {.count = 1, .reusable = false}, SHIFT(1148), + [1951] = {.count = 1, .reusable = true}, SHIFT(1146), + [1953] = {.count = 1, .reusable = false}, SHIFT(1149), + [1955] = {.count = 1, .reusable = false}, SHIFT(1154), + [1957] = {.count = 1, .reusable = true}, SHIFT(1155), + [1959] = {.count = 1, .reusable = false}, SHIFT(1156), + [1961] = {.count = 1, .reusable = false}, SHIFT(1157), + [1963] = {.count = 1, .reusable = true}, SHIFT(1158), + [1965] = {.count = 1, .reusable = false}, SHIFT(1159), + [1967] = {.count = 1, .reusable = false}, SHIFT(1160), + [1969] = {.count = 1, .reusable = false}, SHIFT(1161), + [1971] = {.count = 1, .reusable = false}, SHIFT(1162), + [1973] = {.count = 1, .reusable = false}, SHIFT(1163), + [1975] = {.count = 1, .reusable = true}, SHIFT(1156), + [1977] = {.count = 1, .reusable = true}, SHIFT(1167), + [1979] = {.count = 1, .reusable = false}, SHIFT(1170), + [1981] = {.count = 1, .reusable = false}, SHIFT(1140), + [1983] = {.count = 1, .reusable = true}, SHIFT(1175), + [1985] = {.count = 1, .reusable = false}, SHIFT(1176), + [1987] = {.count = 1, .reusable = false}, SHIFT(1177), + [1989] = {.count = 1, .reusable = false}, SHIFT(1178), + [1991] = {.count = 1, .reusable = false}, SHIFT(1179), + [1993] = {.count = 1, .reusable = true}, SHIFT(1180), + [1995] = {.count = 1, .reusable = true}, SHIFT(1183), + [1997] = {.count = 1, .reusable = false}, SHIFT(1186), + [1999] = {.count = 1, .reusable = true}, SHIFT(1184), + [2001] = {.count = 1, .reusable = false}, SHIFT(1185), + [2003] = {.count = 1, .reusable = false}, SHIFT(1187), + [2005] = {.count = 1, .reusable = true}, SHIFT(1188), + [2007] = {.count = 1, .reusable = true}, SHIFT(1190), + [2009] = {.count = 1, .reusable = true}, SHIFT(1194), + [2011] = {.count = 1, .reusable = false}, SHIFT(1196), + [2013] = {.count = 1, .reusable = true}, SHIFT(1195), + [2015] = {.count = 1, .reusable = false}, SHIFT(1193), + [2017] = {.count = 1, .reusable = true}, SHIFT(1202), + [2019] = {.count = 1, .reusable = false}, SHIFT(1204), + [2021] = {.count = 1, .reusable = true}, SHIFT(1205), + [2023] = {.count = 1, .reusable = false}, SHIFT(1206), + [2025] = {.count = 1, .reusable = true}, SHIFT(1209), + [2027] = {.count = 1, .reusable = false}, SHIFT(1212), + [2029] = {.count = 1, .reusable = false}, SHIFT(1214), + [2031] = {.count = 1, .reusable = false}, SHIFT(1213), + [2033] = {.count = 1, .reusable = false}, SHIFT(1218), + [2035] = {.count = 1, .reusable = true}, SHIFT(1220), + [2037] = {.count = 1, .reusable = true}, SHIFT(1221), + [2039] = {.count = 1, .reusable = true}, SHIFT(1226), + [2041] = {.count = 1, .reusable = false}, SHIFT(1231), + [2043] = {.count = 1, .reusable = false}, SHIFT(1226), + [2045] = {.count = 1, .reusable = true}, SHIFT(1234), + [2047] = {.count = 1, .reusable = false}, SHIFT(1237), + [2049] = {.count = 1, .reusable = true}, SHIFT(1240), + [2051] = {.count = 1, .reusable = true}, SHIFT(1242), + [2053] = {.count = 1, .reusable = false}, SHIFT(1244), + [2055] = {.count = 1, .reusable = true}, SHIFT(1245), + [2057] = {.count = 1, .reusable = false}, SHIFT(1247), + [2059] = {.count = 1, .reusable = false}, SHIFT(1248), + [2061] = {.count = 1, .reusable = true}, SHIFT(1249), + [2063] = {.count = 1, .reusable = false}, SHIFT(1250), + [2065] = {.count = 1, .reusable = false}, SHIFT(1251), + [2067] = {.count = 1, .reusable = true}, SHIFT(1252), + [2069] = {.count = 1, .reusable = false}, SHIFT(1253), + [2071] = {.count = 1, .reusable = true}, SHIFT(1251), + [2073] = {.count = 1, .reusable = false}, SHIFT(1254), + [2075] = {.count = 1, .reusable = false}, SHIFT(1259), + [2077] = {.count = 1, .reusable = true}, SHIFT(1260), + [2079] = {.count = 1, .reusable = false}, SHIFT(1261), + [2081] = {.count = 1, .reusable = false}, SHIFT(1262), + [2083] = {.count = 1, .reusable = true}, SHIFT(1263), + [2085] = {.count = 1, .reusable = false}, SHIFT(1264), + [2087] = {.count = 1, .reusable = false}, SHIFT(1265), + [2089] = {.count = 1, .reusable = false}, SHIFT(1266), + [2091] = {.count = 1, .reusable = false}, SHIFT(1267), + [2093] = {.count = 1, .reusable = false}, SHIFT(1268), + [2095] = {.count = 1, .reusable = true}, SHIFT(1261), + [2097] = {.count = 1, .reusable = true}, SHIFT(1272), + [2099] = {.count = 1, .reusable = false}, SHIFT(1275), + [2101] = {.count = 1, .reusable = false}, SHIFT(1245), + [2103] = {.count = 1, .reusable = true}, SHIFT(1280), + [2105] = {.count = 1, .reusable = false}, SHIFT(1281), + [2107] = {.count = 1, .reusable = false}, SHIFT(1282), + [2109] = {.count = 1, .reusable = false}, SHIFT(1283), + [2111] = {.count = 1, .reusable = false}, SHIFT(1284), + [2113] = {.count = 1, .reusable = true}, SHIFT(1285), + [2115] = {.count = 1, .reusable = false}, SHIFT(1290), + [2117] = {.count = 1, .reusable = true}, SHIFT(1288), + [2119] = {.count = 1, .reusable = false}, SHIFT(1289), + [2121] = {.count = 1, .reusable = false}, SHIFT(1291), + [2123] = {.count = 1, .reusable = true}, SHIFT(1292), + [2125] = {.count = 1, .reusable = false}, SHIFT(1297), + [2127] = {.count = 1, .reusable = false}, SHIFT(1300), + [2129] = {.count = 1, .reusable = true}, SHIFT(1303), + [2131] = {.count = 1, .reusable = false}, SHIFT(1306), + [2133] = {.count = 1, .reusable = true}, SHIFT(1308), + [2135] = {.count = 1, .reusable = true}, SHIFT(1309), + [2137] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(433), + [2140] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(434), + [2143] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(61), + [2146] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(435), + [2149] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(432), + [2152] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), SHIFT_REPEAT(61), + [2155] = {.count = 1, .reusable = true}, REDUCE(aux_sym__typed_bindings1_repeat1, 2), + [2157] = {.count = 1, .reusable = false}, REDUCE(sym__atom_no_curly, 3), + [2159] = {.count = 1, .reusable = true}, REDUCE(sym__atom_no_curly, 3), + [2161] = {.count = 1, .reusable = false}, REDUCE(sym__application, 2), + [2163] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(220), + [2166] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(211), + [2169] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(219), + [2172] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(870), + [2175] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(222), + [2178] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(868), + [2181] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(214), + [2184] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(869), + [2187] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1315), + [2190] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(871), + [2193] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(214), + [2196] = {.count = 1, .reusable = true}, SHIFT(1317), + [2198] = {.count = 1, .reusable = false}, SHIFT(1321), + [2200] = {.count = 1, .reusable = false}, SHIFT(1317), + [2202] = {.count = 1, .reusable = true}, SHIFT(1325), + [2204] = {.count = 1, .reusable = false}, REDUCE(sym__with_expr, 2), + [2206] = {.count = 1, .reusable = true}, SHIFT(1327), + [2208] = {.count = 1, .reusable = true}, SHIFT(1328), + [2210] = {.count = 1, .reusable = false}, SHIFT(1330), + [2212] = {.count = 1, .reusable = true}, SHIFT(1331), + [2214] = {.count = 1, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), + [2216] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(82), + [2219] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(83), + [2222] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(84), + [2225] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(85), + [2228] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(86), + [2231] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(87), + [2234] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(88), + [2237] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(89), + [2240] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(90), + [2243] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(91), + [2246] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(84), + [2249] = {.count = 1, .reusable = false}, SHIFT(1333), + [2251] = {.count = 1, .reusable = true}, SHIFT(1335), + [2253] = {.count = 1, .reusable = true}, SHIFT(1336), + [2255] = {.count = 1, .reusable = false}, SHIFT(1341), + [2257] = {.count = 1, .reusable = false}, SHIFT(1336), + [2259] = {.count = 1, .reusable = true}, SHIFT(1344), + [2261] = {.count = 1, .reusable = true}, SHIFT(1347), + [2263] = {.count = 1, .reusable = true}, SHIFT(1350), + [2265] = {.count = 1, .reusable = true}, SHIFT(1352), + [2267] = {.count = 1, .reusable = false}, SHIFT(1354), + [2269] = {.count = 1, .reusable = false}, SHIFT(1355), + [2271] = {.count = 1, .reusable = true}, SHIFT(1357), + [2273] = {.count = 1, .reusable = true}, SHIFT(1358), + [2275] = {.count = 1, .reusable = false}, SHIFT(1361), + [2277] = {.count = 1, .reusable = false}, SHIFT(1362), + [2279] = {.count = 1, .reusable = true}, SHIFT(1364), + [2281] = {.count = 1, .reusable = false}, SHIFT(1366), + [2283] = {.count = 1, .reusable = false}, SHIFT(1367), + [2285] = {.count = 1, .reusable = true}, SHIFT(1368), + [2287] = {.count = 1, .reusable = false}, SHIFT(1369), + [2289] = {.count = 1, .reusable = false}, SHIFT(1370), + [2291] = {.count = 1, .reusable = false}, SHIFT(1371), + [2293] = {.count = 1, .reusable = true}, SHIFT(1372), + [2295] = {.count = 1, .reusable = false}, SHIFT(1373), + [2297] = {.count = 1, .reusable = false}, SHIFT(1374), + [2299] = {.count = 1, .reusable = false}, SHIFT(1375), + [2301] = {.count = 1, .reusable = false}, SHIFT(1376), + [2303] = {.count = 1, .reusable = false}, SHIFT(1377), + [2305] = {.count = 1, .reusable = false}, REDUCE(sym_open, 2), + [2307] = {.count = 1, .reusable = true}, SHIFT(1369), + [2309] = {.count = 1, .reusable = true}, SHIFT(1386), + [2311] = {.count = 1, .reusable = false}, SHIFT(1388), + [2313] = {.count = 1, .reusable = true}, SHIFT(1387), + [2315] = {.count = 1, .reusable = false}, SHIFT(1385), + [2317] = {.count = 1, .reusable = false}, SHIFT(1393), + [2319] = {.count = 1, .reusable = true}, SHIFT(1394), + [2321] = {.count = 1, .reusable = true}, SHIFT(1396), + [2323] = {.count = 1, .reusable = false}, SHIFT(1397), + [2325] = {.count = 1, .reusable = true}, SHIFT(1398), + [2327] = {.count = 1, .reusable = false}, SHIFT(1399), + [2329] = {.count = 1, .reusable = false}, SHIFT(1400), + [2331] = {.count = 1, .reusable = false}, SHIFT(1401), + [2333] = {.count = 1, .reusable = true}, SHIFT(1402), + [2335] = {.count = 1, .reusable = false}, SHIFT(1403), + [2337] = {.count = 1, .reusable = false}, SHIFT(1404), + [2339] = {.count = 1, .reusable = false}, SHIFT(1405), + [2341] = {.count = 1, .reusable = false}, SHIFT(1406), + [2343] = {.count = 1, .reusable = true}, SHIFT(1399), + [2345] = {.count = 1, .reusable = false}, SHIFT(1412), + [2347] = {.count = 1, .reusable = false}, SHIFT(1414), + [2349] = {.count = 1, .reusable = true}, SHIFT(1417), + [2351] = {.count = 1, .reusable = false}, SHIFT(1421), + [2353] = {.count = 1, .reusable = false}, SHIFT(1417), + [2355] = {.count = 1, .reusable = true}, SHIFT(1425), + [2357] = {.count = 2, .reusable = true}, REDUCE(aux_sym_test_repeat1, 2), SHIFT_REPEAT(534), + [2360] = {.count = 1, .reusable = false}, SHIFT(1427), + [2362] = {.count = 1, .reusable = true}, SHIFT(1428), + [2364] = {.count = 1, .reusable = false}, SHIFT(1429), + [2366] = {.count = 1, .reusable = false}, SHIFT(1430), + [2368] = {.count = 1, .reusable = false}, SHIFT(1431), + [2370] = {.count = 1, .reusable = false}, SHIFT(1432), + [2372] = {.count = 1, .reusable = false}, SHIFT(1433), + [2374] = {.count = 1, .reusable = false}, SHIFT(1434), + [2376] = {.count = 1, .reusable = false}, SHIFT(1435), + [2378] = {.count = 1, .reusable = true}, SHIFT(1436), + [2380] = {.count = 1, .reusable = false}, SHIFT(1437), + [2382] = {.count = 1, .reusable = false}, SHIFT(1438), + [2384] = {.count = 1, .reusable = false}, SHIFT(1439), + [2386] = {.count = 1, .reusable = false}, SHIFT(1440), + [2388] = {.count = 1, .reusable = false}, SHIFT(1441), + [2390] = {.count = 1, .reusable = true}, SHIFT(1430), + [2392] = {.count = 1, .reusable = false}, SHIFT(1448), + [2394] = {.count = 1, .reusable = false}, SHIFT(1449), + [2396] = {.count = 1, .reusable = false}, SHIFT(1450), + [2398] = {.count = 1, .reusable = false}, SHIFT(1451), + [2400] = {.count = 1, .reusable = true}, SHIFT(1452), + [2402] = {.count = 1, .reusable = false}, SHIFT(1453), + [2404] = {.count = 1, .reusable = true}, SHIFT(1454), + [2406] = {.count = 1, .reusable = false}, SHIFT(1455), + [2408] = {.count = 1, .reusable = false}, SHIFT(1456), + [2410] = {.count = 1, .reusable = false}, SHIFT(1457), + [2412] = {.count = 1, .reusable = false}, SHIFT(1458), + [2414] = {.count = 1, .reusable = false}, SHIFT(1459), + [2416] = {.count = 1, .reusable = false}, SHIFT(1460), + [2418] = {.count = 1, .reusable = false}, SHIFT(1461), + [2420] = {.count = 1, .reusable = false}, SHIFT(1462), + [2422] = {.count = 1, .reusable = true}, SHIFT(1450), + [2424] = {.count = 1, .reusable = false}, SHIFT(1467), + [2426] = {.count = 1, .reusable = true}, SHIFT(1468), + [2428] = {.count = 1, .reusable = false}, SHIFT(1469), + [2430] = {.count = 1, .reusable = false}, SHIFT(1470), + [2432] = {.count = 1, .reusable = false}, SHIFT(1471), + [2434] = {.count = 1, .reusable = false}, SHIFT(1472), + [2436] = {.count = 1, .reusable = false}, SHIFT(1473), + [2438] = {.count = 1, .reusable = false}, SHIFT(1474), + [2440] = {.count = 1, .reusable = false}, SHIFT(1475), + [2442] = {.count = 1, .reusable = true}, SHIFT(1476), + [2444] = {.count = 1, .reusable = false}, SHIFT(1477), + [2446] = {.count = 1, .reusable = false}, SHIFT(1478), + [2448] = {.count = 1, .reusable = false}, SHIFT(1479), + [2450] = {.count = 1, .reusable = false}, SHIFT(1480), + [2452] = {.count = 1, .reusable = false}, SHIFT(1481), + [2454] = {.count = 1, .reusable = true}, SHIFT(1470), + [2456] = {.count = 1, .reusable = false}, SHIFT(1488), + [2458] = {.count = 1, .reusable = false}, SHIFT(1489), + [2460] = {.count = 1, .reusable = false}, SHIFT(1490), + [2462] = {.count = 1, .reusable = false}, SHIFT(1491), + [2464] = {.count = 1, .reusable = true}, SHIFT(1492), + [2466] = {.count = 1, .reusable = false}, SHIFT(1493), + [2468] = {.count = 1, .reusable = true}, SHIFT(1494), + [2470] = {.count = 1, .reusable = false}, SHIFT(1495), + [2472] = {.count = 1, .reusable = false}, SHIFT(1496), + [2474] = {.count = 1, .reusable = false}, SHIFT(1497), + [2476] = {.count = 1, .reusable = false}, SHIFT(1498), + [2478] = {.count = 1, .reusable = false}, SHIFT(1499), + [2480] = {.count = 1, .reusable = false}, SHIFT(1500), + [2482] = {.count = 1, .reusable = false}, SHIFT(1501), + [2484] = {.count = 1, .reusable = false}, SHIFT(1502), + [2486] = {.count = 1, .reusable = true}, SHIFT(1490), + [2488] = {.count = 1, .reusable = false}, SHIFT(1507), + [2490] = {.count = 1, .reusable = true}, SHIFT(1508), + [2492] = {.count = 1, .reusable = false}, SHIFT(1509), + [2494] = {.count = 1, .reusable = false}, SHIFT(1510), + [2496] = {.count = 1, .reusable = false}, SHIFT(1511), + [2498] = {.count = 1, .reusable = false}, SHIFT(1512), + [2500] = {.count = 1, .reusable = false}, SHIFT(1513), + [2502] = {.count = 1, .reusable = false}, SHIFT(1514), + [2504] = {.count = 1, .reusable = false}, SHIFT(1515), + [2506] = {.count = 1, .reusable = true}, SHIFT(1516), + [2508] = {.count = 1, .reusable = false}, SHIFT(1517), + [2510] = {.count = 1, .reusable = false}, SHIFT(1518), + [2512] = {.count = 1, .reusable = false}, SHIFT(1519), + [2514] = {.count = 1, .reusable = false}, SHIFT(1520), + [2516] = {.count = 1, .reusable = false}, SHIFT(1521), + [2518] = {.count = 1, .reusable = true}, SHIFT(1510), + [2520] = {.count = 1, .reusable = true}, SHIFT(543), + [2522] = {.count = 1, .reusable = true}, SHIFT(1528), + [2524] = {.count = 1, .reusable = true}, SHIFT(1529), + [2526] = {.count = 1, .reusable = false}, SHIFT(1531), + [2528] = {.count = 1, .reusable = true}, SHIFT(1532), + [2530] = {.count = 1, .reusable = false}, SHIFT(1534), + [2532] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 3), + [2534] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 3), + [2536] = {.count = 1, .reusable = true}, SHIFT(1535), + [2538] = {.count = 1, .reusable = true}, REDUCE(sym__record_assignments1, 1), + [2540] = {.count = 1, .reusable = false}, SHIFT(1537), + [2542] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 1), + [2544] = {.count = 1, .reusable = true}, SHIFT(1538), + [2546] = {.count = 1, .reusable = false}, SHIFT(1539), + [2548] = {.count = 1, .reusable = false}, SHIFT(1540), + [2550] = {.count = 1, .reusable = true}, SHIFT(1541), + [2552] = {.count = 1, .reusable = false}, SHIFT(1542), + [2554] = {.count = 1, .reusable = false}, SHIFT(1543), + [2556] = {.count = 1, .reusable = false}, SHIFT(1544), + [2558] = {.count = 1, .reusable = false}, SHIFT(1545), + [2560] = {.count = 1, .reusable = false}, SHIFT(1546), + [2562] = {.count = 1, .reusable = false}, SHIFT(1547), + [2564] = {.count = 1, .reusable = false}, SHIFT(1548), + [2566] = {.count = 1, .reusable = true}, SHIFT(1539), + [2568] = {.count = 1, .reusable = false}, SHIFT(1549), + [2570] = {.count = 1, .reusable = true}, SHIFT(1554), + [2572] = {.count = 1, .reusable = false}, SHIFT(1555), + [2574] = {.count = 1, .reusable = true}, SHIFT(1556), + [2576] = {.count = 1, .reusable = false}, SHIFT(1557), + [2578] = {.count = 1, .reusable = false}, SHIFT(1558), + [2580] = {.count = 1, .reusable = false}, SHIFT(1559), + [2582] = {.count = 1, .reusable = true}, SHIFT(1560), + [2584] = {.count = 1, .reusable = false}, SHIFT(1561), + [2586] = {.count = 1, .reusable = false}, SHIFT(1562), + [2588] = {.count = 1, .reusable = false}, SHIFT(1563), + [2590] = {.count = 1, .reusable = false}, SHIFT(1564), + [2592] = {.count = 1, .reusable = true}, SHIFT(1557), + [2594] = {.count = 1, .reusable = true}, SHIFT(1574), + [2596] = {.count = 1, .reusable = false}, SHIFT(1576), + [2598] = {.count = 1, .reusable = true}, SHIFT(1575), + [2600] = {.count = 1, .reusable = false}, SHIFT(1573), + [2602] = {.count = 1, .reusable = false}, SHIFT(1580), + [2604] = {.count = 1, .reusable = true}, REDUCE(sym_record, 3), + [2606] = {.count = 1, .reusable = true}, SHIFT(1584), + [2608] = {.count = 1, .reusable = true}, SHIFT(1586), + [2610] = {.count = 1, .reusable = true}, SHIFT(1587), + [2612] = {.count = 1, .reusable = true}, SHIFT(1589), + [2614] = {.count = 1, .reusable = true}, SHIFT(1590), + [2616] = {.count = 1, .reusable = true}, SHIFT(1594), + [2618] = {.count = 1, .reusable = false}, SHIFT(1596), + [2620] = {.count = 1, .reusable = true}, SHIFT(1595), + [2622] = {.count = 1, .reusable = false}, SHIFT(1593), + [2624] = {.count = 1, .reusable = false}, SHIFT(1601), + [2626] = {.count = 1, .reusable = true}, SHIFT(1602), + [2628] = {.count = 1, .reusable = true}, SHIFT(1603), + [2630] = {.count = 1, .reusable = false}, SHIFT(1608), + [2632] = {.count = 1, .reusable = false}, SHIFT(1603), + [2634] = {.count = 1, .reusable = true}, SHIFT(1611), + [2636] = {.count = 1, .reusable = true}, SHIFT(1614), + [2638] = {.count = 1, .reusable = true}, SHIFT(1617), + [2640] = {.count = 1, .reusable = true}, SHIFT(1619), + [2642] = {.count = 1, .reusable = false}, SHIFT(1621), + [2644] = {.count = 1, .reusable = true}, SHIFT(1622), + [2646] = {.count = 1, .reusable = true}, SHIFT(1623), + [2648] = {.count = 1, .reusable = false}, SHIFT(1627), + [2650] = {.count = 1, .reusable = false}, SHIFT(1623), + [2652] = {.count = 1, .reusable = true}, SHIFT(1631), + [2654] = {.count = 1, .reusable = true}, SHIFT(1633), + [2656] = {.count = 1, .reusable = true}, SHIFT(1634), + [2658] = {.count = 1, .reusable = true}, SHIFT(1638), + [2660] = {.count = 1, .reusable = false}, SHIFT(1640), + [2662] = {.count = 1, .reusable = true}, SHIFT(1639), + [2664] = {.count = 1, .reusable = false}, SHIFT(1637), + [2666] = {.count = 1, .reusable = false}, SHIFT(1645), + [2668] = {.count = 1, .reusable = true}, SHIFT(1646), + [2670] = {.count = 1, .reusable = true}, SHIFT(1647), + [2672] = {.count = 1, .reusable = false}, SHIFT(1652), + [2674] = {.count = 1, .reusable = false}, SHIFT(1647), + [2676] = {.count = 1, .reusable = true}, SHIFT(1655), + [2678] = {.count = 1, .reusable = true}, SHIFT(1658), + [2680] = {.count = 1, .reusable = true}, SHIFT(1661), + [2682] = {.count = 1, .reusable = true}, SHIFT(1663), + [2684] = {.count = 1, .reusable = false}, SHIFT(1665), + [2686] = {.count = 1, .reusable = true}, SHIFT(1666), + [2688] = {.count = 1, .reusable = true}, SHIFT(1667), + [2690] = {.count = 1, .reusable = false}, SHIFT(1671), + [2692] = {.count = 1, .reusable = false}, SHIFT(1667), + [2694] = {.count = 1, .reusable = true}, SHIFT(1675), + [2696] = {.count = 1, .reusable = false}, SHIFT(1677), + [2698] = {.count = 1, .reusable = false}, SHIFT(1678), + [2700] = {.count = 1, .reusable = true}, SHIFT(1680), + [2702] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 1), + [2704] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 1), + [2706] = {.count = 1, .reusable = false}, SHIFT(1683), + [2708] = {.count = 1, .reusable = true}, REDUCE(sym_infix, 3), + [2710] = {.count = 1, .reusable = true}, SHIFT(1686), + [2712] = {.count = 1, .reusable = false}, SHIFT(1686), + [2714] = {.count = 1, .reusable = false}, SHIFT(1687), + [2716] = {.count = 1, .reusable = true}, SHIFT(1690), + [2718] = {.count = 1, .reusable = false}, SHIFT(1690), + [2720] = {.count = 1, .reusable = false}, SHIFT(1691), + [2722] = {.count = 1, .reusable = false}, SHIFT(1693), + [2724] = {.count = 1, .reusable = true}, SHIFT(1694), + [2726] = {.count = 1, .reusable = false}, SHIFT(1695), + [2728] = {.count = 1, .reusable = false}, REDUCE(sym__field_name, 1, .alias_sequence_id = 5), + [2730] = {.count = 1, .reusable = true}, REDUCE(sym__field_name, 1, .alias_sequence_id = 5), + [2732] = {.count = 1, .reusable = false}, REDUCE(sym__arg_names, 1), + [2734] = {.count = 1, .reusable = true}, SHIFT(1700), + [2736] = {.count = 1, .reusable = true}, SHIFT(1701), + [2738] = {.count = 1, .reusable = true}, SHIFT(1703), + [2740] = {.count = 1, .reusable = false}, SHIFT(1704), + [2742] = {.count = 1, .reusable = false}, SHIFT(1705), + [2744] = {.count = 1, .reusable = true}, SHIFT(1706), + [2746] = {.count = 1, .reusable = false}, SHIFT(1707), + [2748] = {.count = 1, .reusable = false}, SHIFT(1708), + [2750] = {.count = 1, .reusable = true}, SHIFT(1709), + [2752] = {.count = 1, .reusable = false}, SHIFT(1710), + [2754] = {.count = 1, .reusable = true}, SHIFT(1708), + [2756] = {.count = 1, .reusable = false}, SHIFT(1711), + [2758] = {.count = 1, .reusable = true}, SHIFT(1715), + [2760] = {.count = 1, .reusable = false}, SHIFT(1719), + [2762] = {.count = 1, .reusable = true}, SHIFT(1720), + [2764] = {.count = 1, .reusable = false}, SHIFT(1721), + [2766] = {.count = 1, .reusable = false}, SHIFT(1722), + [2768] = {.count = 1, .reusable = true}, SHIFT(1723), + [2770] = {.count = 1, .reusable = false}, SHIFT(1724), + [2772] = {.count = 1, .reusable = false}, SHIFT(1725), + [2774] = {.count = 1, .reusable = false}, SHIFT(1726), + [2776] = {.count = 1, .reusable = false}, SHIFT(1727), + [2778] = {.count = 1, .reusable = false}, SHIFT(1728), + [2780] = {.count = 1, .reusable = true}, SHIFT(1721), + [2782] = {.count = 1, .reusable = true}, SHIFT(1732), + [2784] = {.count = 1, .reusable = false}, SHIFT(1735), + [2786] = {.count = 1, .reusable = false}, SHIFT(1715), + [2788] = {.count = 1, .reusable = true}, SHIFT(1739), + [2790] = {.count = 1, .reusable = true}, SHIFT(1742), + [2792] = {.count = 1, .reusable = true}, SHIFT(1743), + [2794] = {.count = 1, .reusable = true}, REDUCE(sym__do_stmt, 1, .alias_sequence_id = 6), + [2796] = {.count = 1, .reusable = true}, SHIFT(1745), + [2798] = {.count = 1, .reusable = true}, REDUCE(sym_open, 3), + [2800] = {.count = 1, .reusable = true}, SHIFT(1749), + [2802] = {.count = 1, .reusable = false}, SHIFT(1750), + [2804] = {.count = 1, .reusable = false}, SHIFT(1751), + [2806] = {.count = 1, .reusable = true}, SHIFT(1752), + [2808] = {.count = 1, .reusable = false}, SHIFT(1753), + [2810] = {.count = 1, .reusable = true}, SHIFT(1756), + [2812] = {.count = 1, .reusable = false}, SHIFT(1759), + [2814] = {.count = 1, .reusable = true}, SHIFT(1762), + [2816] = {.count = 1, .reusable = false}, SHIFT(1763), + [2818] = {.count = 1, .reusable = true}, SHIFT(1765), + [2820] = {.count = 1, .reusable = false}, SHIFT(1756), + [2822] = {.count = 1, .reusable = true}, SHIFT(1768), + [2824] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 1), + [2826] = {.count = 1, .reusable = true}, SHIFT(747), + [2828] = {.count = 1, .reusable = true}, SHIFT(752), + [2830] = {.count = 1, .reusable = true}, SHIFT(745), + [2832] = {.count = 1, .reusable = true}, REDUCE(sym__open_args1, 1), + [2834] = {.count = 1, .reusable = false}, REDUCE(sym__open_args1, 1), + [2836] = {.count = 1, .reusable = true}, SHIFT(1772), + [2838] = {.count = 1, .reusable = false}, SHIFT(1776), + [2840] = {.count = 1, .reusable = false}, SHIFT(1772), + [2842] = {.count = 1, .reusable = true}, SHIFT(1780), + [2844] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_binding, 2), + [2846] = {.count = 1, .reusable = true}, SHIFT(1783), + [2848] = {.count = 1, .reusable = true}, SHIFT(1784), + [2850] = {.count = 1, .reusable = true}, SHIFT(1785), + [2852] = {.count = 1, .reusable = false}, SHIFT(1789), + [2854] = {.count = 1, .reusable = false}, SHIFT(1785), + [2856] = {.count = 1, .reusable = true}, SHIFT(1793), + [2858] = {.count = 1, .reusable = true}, SHIFT(1795), + [2860] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 2), + [2862] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 2), + [2864] = {.count = 1, .reusable = false}, SHIFT(1800), + [2866] = {.count = 1, .reusable = false}, SHIFT(1803), + [2868] = {.count = 1, .reusable = true}, SHIFT(1806), + [2870] = {.count = 1, .reusable = true}, SHIFT(1810), + [2872] = {.count = 1, .reusable = true}, SHIFT(1811), + [2874] = {.count = 1, .reusable = false}, SHIFT(1812), + [2876] = {.count = 1, .reusable = false}, SHIFT(1813), + [2878] = {.count = 1, .reusable = true}, SHIFT(1814), + [2880] = {.count = 1, .reusable = false}, SHIFT(1815), + [2882] = {.count = 1, .reusable = false}, SHIFT(1816), + [2884] = {.count = 1, .reusable = true}, SHIFT(1817), + [2886] = {.count = 1, .reusable = false}, SHIFT(1818), + [2888] = {.count = 1, .reusable = true}, SHIFT(1816), + [2890] = {.count = 1, .reusable = false}, SHIFT(1819), + [2892] = {.count = 1, .reusable = true}, SHIFT(1823), + [2894] = {.count = 1, .reusable = true}, SHIFT(1824), + [2896] = {.count = 1, .reusable = false}, SHIFT(1828), + [2898] = {.count = 1, .reusable = false}, SHIFT(1829), + [2900] = {.count = 1, .reusable = false}, SHIFT(1830), + [2902] = {.count = 1, .reusable = false}, SHIFT(1831), + [2904] = {.count = 1, .reusable = false}, SHIFT(1832), + [2906] = {.count = 1, .reusable = false}, SHIFT(1833), + [2908] = {.count = 1, .reusable = false}, SHIFT(1839), + [2910] = {.count = 1, .reusable = true}, SHIFT(1842), + [2912] = {.count = 1, .reusable = false}, SHIFT(1845), + [2914] = {.count = 1, .reusable = false}, SHIFT(1824), + [2916] = {.count = 1, .reusable = true}, SHIFT(1849), + [2918] = {.count = 1, .reusable = false}, SHIFT(1852), + [2920] = {.count = 1, .reusable = false}, SHIFT(1853), + [2922] = {.count = 1, .reusable = false}, SHIFT(1854), + [2924] = {.count = 1, .reusable = false}, SHIFT(1855), + [2926] = {.count = 1, .reusable = true}, SHIFT(1856), + [2928] = {.count = 1, .reusable = false}, SHIFT(1857), + [2930] = {.count = 1, .reusable = true}, SHIFT(1858), + [2932] = {.count = 1, .reusable = false}, SHIFT(1859), + [2934] = {.count = 1, .reusable = false}, SHIFT(1860), + [2936] = {.count = 1, .reusable = false}, SHIFT(1861), + [2938] = {.count = 1, .reusable = false}, SHIFT(1862), + [2940] = {.count = 1, .reusable = false}, SHIFT(1863), + [2942] = {.count = 1, .reusable = false}, SHIFT(1864), + [2944] = {.count = 1, .reusable = false}, SHIFT(1865), + [2946] = {.count = 1, .reusable = false}, SHIFT(1866), + [2948] = {.count = 1, .reusable = false}, SHIFT(1867), + [2950] = {.count = 1, .reusable = true}, SHIFT(1854), + [2952] = {.count = 1, .reusable = true}, SHIFT(1874), + [2954] = {.count = 1, .reusable = true}, SHIFT(1873), + [2956] = {.count = 1, .reusable = true}, SHIFT(1875), + [2958] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause_absurd, 1), + [2960] = {.count = 1, .reusable = true}, SHIFT(1880), + [2962] = {.count = 1, .reusable = false}, SHIFT(1876), + [2964] = {.count = 1, .reusable = false}, SHIFT(1881), + [2966] = {.count = 1, .reusable = false}, SHIFT(1882), + [2968] = {.count = 1, .reusable = false}, SHIFT(1883), + [2970] = {.count = 1, .reusable = false}, SHIFT(1884), + [2972] = {.count = 1, .reusable = false}, SHIFT(1877), + [2974] = {.count = 1, .reusable = true}, SHIFT(1878), + [2976] = {.count = 1, .reusable = false}, SHIFT(1879), + [2978] = {.count = 1, .reusable = false}, SHIFT(1885), + [2980] = {.count = 1, .reusable = false}, SHIFT(1886), + [2982] = {.count = 1, .reusable = true}, SHIFT(1877), + [2984] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 3), + [2986] = {.count = 1, .reusable = true}, SHIFT(1895), + [2988] = {.count = 1, .reusable = true}, SHIFT(1896), + [2990] = {.count = 1, .reusable = false}, SHIFT(1898), + [2992] = {.count = 1, .reusable = true}, SHIFT(1899), + [2994] = {.count = 1, .reusable = true}, SHIFT(1900), + [2996] = {.count = 1, .reusable = false}, SHIFT(1905), + [2998] = {.count = 1, .reusable = false}, SHIFT(1900), + [3000] = {.count = 1, .reusable = true}, SHIFT(1908), + [3002] = {.count = 1, .reusable = true}, SHIFT(1911), + [3004] = {.count = 1, .reusable = true}, SHIFT(1914), + [3006] = {.count = 1, .reusable = true}, SHIFT(1916), + [3008] = {.count = 1, .reusable = false}, SHIFT(1918), + [3010] = {.count = 1, .reusable = true}, SHIFT(1919), + [3012] = {.count = 1, .reusable = true}, SHIFT(1920), + [3014] = {.count = 1, .reusable = false}, SHIFT(1924), + [3016] = {.count = 1, .reusable = false}, SHIFT(1920), + [3018] = {.count = 1, .reusable = true}, SHIFT(1928), + [3020] = {.count = 1, .reusable = true}, SHIFT(1930), + [3022] = {.count = 1, .reusable = true}, SHIFT(1931), + [3024] = {.count = 1, .reusable = true}, SHIFT(1933), + [3026] = {.count = 1, .reusable = true}, SHIFT(1936), + [3028] = {.count = 1, .reusable = false}, SHIFT(1938), + [3030] = {.count = 1, .reusable = true}, SHIFT(1939), + [3032] = {.count = 1, .reusable = false}, SHIFT(1940), + [3034] = {.count = 1, .reusable = false}, SHIFT(1941), + [3036] = {.count = 1, .reusable = false}, SHIFT(1942), + [3038] = {.count = 1, .reusable = false}, SHIFT(1943), + [3040] = {.count = 1, .reusable = false}, SHIFT(1944), + [3042] = {.count = 1, .reusable = false}, SHIFT(1945), + [3044] = {.count = 1, .reusable = false}, SHIFT(1946), + [3046] = {.count = 1, .reusable = true}, SHIFT(1947), + [3048] = {.count = 1, .reusable = false}, SHIFT(1948), + [3050] = {.count = 1, .reusable = false}, SHIFT(1949), + [3052] = {.count = 1, .reusable = false}, SHIFT(1950), + [3054] = {.count = 1, .reusable = false}, SHIFT(1951), + [3056] = {.count = 1, .reusable = false}, SHIFT(1952), + [3058] = {.count = 1, .reusable = true}, SHIFT(1941), + [3060] = {.count = 1, .reusable = true}, REDUCE(sym_data, 3, .alias_sequence_id = 7), + [3062] = {.count = 1, .reusable = true}, SHIFT(1961), + [3064] = {.count = 1, .reusable = true}, SHIFT(1962), + [3066] = {.count = 1, .reusable = false}, SHIFT(1963), + [3068] = {.count = 1, .reusable = true}, SHIFT(1964), + [3070] = {.count = 1, .reusable = true}, SHIFT(1965), + [3072] = {.count = 1, .reusable = true}, SHIFT(1967), + [3074] = {.count = 1, .reusable = true}, SHIFT(1970), + [3076] = {.count = 1, .reusable = false}, REDUCE(sym__atom_curly, 3), + [3078] = {.count = 1, .reusable = true}, REDUCE(sym__atom_curly, 3), + [3080] = {.count = 1, .reusable = true}, SHIFT(1972), + [3082] = {.count = 1, .reusable = true}, SHIFT(1973), + [3084] = {.count = 1, .reusable = true}, SHIFT(1974), + [3086] = {.count = 1, .reusable = true}, SHIFT(1979), + [3088] = {.count = 1, .reusable = true}, SHIFT(1980), + [3090] = {.count = 1, .reusable = true}, SHIFT(1981), + [3092] = {.count = 1, .reusable = false}, REDUCE(sym_forall_bindings, 2), + [3094] = {.count = 1, .reusable = true}, REDUCE(sym_forall_bindings, 2), + [3096] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(260), + [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(261), + [3102] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(262), + [3105] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(263), + [3108] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(264), + [3111] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(265), + [3114] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(263), + [3117] = {.count = 1, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), + [3119] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(266), + [3122] = {.count = 1, .reusable = true}, SHIFT(1982), + [3124] = {.count = 1, .reusable = false}, SHIFT(1985), + [3126] = {.count = 1, .reusable = false}, SHIFT(1982), + [3128] = {.count = 1, .reusable = true}, SHIFT(1990), + [3130] = {.count = 1, .reusable = false}, SHIFT(1991), + [3132] = {.count = 1, .reusable = false}, SHIFT(1992), + [3134] = {.count = 1, .reusable = false}, SHIFT(1993), + [3136] = {.count = 1, .reusable = false}, SHIFT(1994), + [3138] = {.count = 1, .reusable = true}, SHIFT(1995), + [3140] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 3), + [3142] = {.count = 1, .reusable = false}, SHIFT(1999), + [3144] = {.count = 1, .reusable = true}, SHIFT(1997), + [3146] = {.count = 1, .reusable = false}, SHIFT(1998), + [3148] = {.count = 1, .reusable = false}, SHIFT(2000), + [3150] = {.count = 1, .reusable = true}, SHIFT(2001), + [3152] = {.count = 1, .reusable = true}, SHIFT(2003), + [3154] = {.count = 1, .reusable = false}, SHIFT(2006), + [3156] = {.count = 1, .reusable = true}, SHIFT(2009), + [3158] = {.count = 1, .reusable = false}, SHIFT(2011), + [3160] = {.count = 1, .reusable = true}, SHIFT(2010), + [3162] = {.count = 1, .reusable = false}, SHIFT(2008), + [3164] = {.count = 1, .reusable = true}, REDUCE(sym_module, 3, .alias_sequence_id = 8), + [3166] = {.count = 1, .reusable = true}, SHIFT(2017), + [3168] = {.count = 1, .reusable = true}, SHIFT(1751), + [3170] = {.count = 1, .reusable = true}, SHIFT(2022), + [3172] = {.count = 1, .reusable = false}, SHIFT(2024), + [3174] = {.count = 1, .reusable = true}, SHIFT(2023), + [3176] = {.count = 1, .reusable = false}, SHIFT(2021), + [3178] = {.count = 1, .reusable = true}, SHIFT(2030), + [3180] = {.count = 1, .reusable = true}, SHIFT(2031), + [3182] = {.count = 1, .reusable = false}, SHIFT(2033), + [3184] = {.count = 1, .reusable = true}, SHIFT(2034), + [3186] = {.count = 1, .reusable = false}, SHIFT(984), + [3188] = {.count = 1, .reusable = true}, SHIFT(2035), + [3190] = {.count = 1, .reusable = false}, SHIFT(2037), + [3192] = {.count = 1, .reusable = false}, SHIFT(2038), + [3194] = {.count = 1, .reusable = true}, SHIFT(2039), + [3196] = {.count = 1, .reusable = false}, SHIFT(2040), + [3198] = {.count = 1, .reusable = false}, SHIFT(2041), + [3200] = {.count = 1, .reusable = true}, SHIFT(2042), + [3202] = {.count = 1, .reusable = false}, SHIFT(2043), + [3204] = {.count = 1, .reusable = true}, SHIFT(2041), + [3206] = {.count = 1, .reusable = false}, SHIFT(2044), + [3208] = {.count = 1, .reusable = false}, SHIFT(2049), + [3210] = {.count = 1, .reusable = true}, SHIFT(2050), + [3212] = {.count = 1, .reusable = false}, SHIFT(2051), + [3214] = {.count = 1, .reusable = false}, SHIFT(2052), + [3216] = {.count = 1, .reusable = true}, SHIFT(2053), + [3218] = {.count = 1, .reusable = false}, SHIFT(2054), + [3220] = {.count = 1, .reusable = false}, SHIFT(2055), + [3222] = {.count = 1, .reusable = false}, SHIFT(2056), + [3224] = {.count = 1, .reusable = false}, SHIFT(2057), + [3226] = {.count = 1, .reusable = false}, SHIFT(2058), + [3228] = {.count = 1, .reusable = true}, SHIFT(2051), + [3230] = {.count = 1, .reusable = true}, SHIFT(2062), + [3232] = {.count = 1, .reusable = false}, SHIFT(2065), + [3234] = {.count = 1, .reusable = false}, SHIFT(2035), + [3236] = {.count = 1, .reusable = true}, SHIFT(2070), + [3238] = {.count = 1, .reusable = false}, SHIFT(2071), + [3240] = {.count = 1, .reusable = false}, SHIFT(2072), + [3242] = {.count = 1, .reusable = false}, SHIFT(2073), + [3244] = {.count = 1, .reusable = false}, SHIFT(2074), + [3246] = {.count = 1, .reusable = true}, SHIFT(2075), + [3248] = {.count = 1, .reusable = true}, REDUCE(sym_rhs_decl, 2), + [3250] = {.count = 1, .reusable = false}, SHIFT(2080), + [3252] = {.count = 1, .reusable = true}, SHIFT(2078), + [3254] = {.count = 1, .reusable = false}, SHIFT(2079), + [3256] = {.count = 1, .reusable = false}, SHIFT(2081), + [3258] = {.count = 1, .reusable = true}, SHIFT(2082), + [3260] = {.count = 1, .reusable = false}, SHIFT(2083), + [3262] = {.count = 1, .reusable = false}, SHIFT(2084), + [3264] = {.count = 1, .reusable = true}, SHIFT(2085), + [3266] = {.count = 1, .reusable = false}, SHIFT(2086), + [3268] = {.count = 1, .reusable = true}, SHIFT(2087), + [3270] = {.count = 1, .reusable = false}, SHIFT(2088), + [3272] = {.count = 1, .reusable = false}, SHIFT(2089), + [3274] = {.count = 1, .reusable = false}, SHIFT(2090), + [3276] = {.count = 1, .reusable = false}, SHIFT(2091), + [3278] = {.count = 1, .reusable = false}, SHIFT(2092), + [3280] = {.count = 1, .reusable = true}, SHIFT(2084), + [3282] = {.count = 1, .reusable = true}, REDUCE(sym_where_clause, 2), + [3284] = {.count = 1, .reusable = true}, SHIFT(2096), + [3286] = {.count = 1, .reusable = true}, REDUCE(sym_function_clause, 3), + [3288] = {.count = 1, .reusable = false}, SHIFT(2097), + [3290] = {.count = 1, .reusable = false}, SHIFT(2098), + [3292] = {.count = 1, .reusable = true}, SHIFT(2099), + [3294] = {.count = 1, .reusable = false}, SHIFT(2100), + [3296] = {.count = 1, .reusable = false}, SHIFT(2101), + [3298] = {.count = 1, .reusable = true}, SHIFT(2102), + [3300] = {.count = 1, .reusable = false}, SHIFT(2103), + [3302] = {.count = 1, .reusable = true}, SHIFT(2101), + [3304] = {.count = 1, .reusable = false}, SHIFT(2104), + [3306] = {.count = 1, .reusable = true}, SHIFT(2108), + [3308] = {.count = 1, .reusable = false}, SHIFT(2112), + [3310] = {.count = 1, .reusable = true}, SHIFT(2113), + [3312] = {.count = 1, .reusable = false}, SHIFT(2114), + [3314] = {.count = 1, .reusable = false}, SHIFT(2115), + [3316] = {.count = 1, .reusable = true}, SHIFT(2116), + [3318] = {.count = 1, .reusable = false}, SHIFT(2117), + [3320] = {.count = 1, .reusable = false}, SHIFT(2118), + [3322] = {.count = 1, .reusable = false}, SHIFT(2119), + [3324] = {.count = 1, .reusable = false}, SHIFT(2120), + [3326] = {.count = 1, .reusable = false}, SHIFT(2121), + [3328] = {.count = 1, .reusable = true}, SHIFT(2114), + [3330] = {.count = 1, .reusable = true}, SHIFT(2125), + [3332] = {.count = 1, .reusable = false}, SHIFT(2128), + [3334] = {.count = 1, .reusable = false}, SHIFT(2108), + [3336] = {.count = 1, .reusable = true}, SHIFT(2132), + [3338] = {.count = 1, .reusable = true}, REDUCE(sym_rewrite_equations, 2), + [3340] = {.count = 1, .reusable = true}, SHIFT(2135), + [3342] = {.count = 1, .reusable = false}, SHIFT(2137), + [3344] = {.count = 1, .reusable = false}, SHIFT(2138), + [3346] = {.count = 1, .reusable = true}, SHIFT(2139), + [3348] = {.count = 1, .reusable = false}, SHIFT(2140), + [3350] = {.count = 1, .reusable = false}, SHIFT(2141), + [3352] = {.count = 1, .reusable = true}, SHIFT(2142), + [3354] = {.count = 1, .reusable = false}, SHIFT(2143), + [3356] = {.count = 1, .reusable = true}, SHIFT(2141), + [3358] = {.count = 1, .reusable = false}, SHIFT(2144), + [3360] = {.count = 1, .reusable = false}, SHIFT(2149), + [3362] = {.count = 1, .reusable = true}, SHIFT(2150), + [3364] = {.count = 1, .reusable = false}, SHIFT(2151), + [3366] = {.count = 1, .reusable = false}, SHIFT(2152), + [3368] = {.count = 1, .reusable = true}, SHIFT(2153), + [3370] = {.count = 1, .reusable = false}, SHIFT(2154), + [3372] = {.count = 1, .reusable = false}, SHIFT(2155), + [3374] = {.count = 1, .reusable = false}, SHIFT(2156), + [3376] = {.count = 1, .reusable = false}, SHIFT(2157), + [3378] = {.count = 1, .reusable = false}, SHIFT(2158), + [3380] = {.count = 1, .reusable = true}, SHIFT(2151), + [3382] = {.count = 1, .reusable = true}, SHIFT(2162), + [3384] = {.count = 1, .reusable = false}, SHIFT(2165), + [3386] = {.count = 1, .reusable = false}, SHIFT(2135), + [3388] = {.count = 1, .reusable = true}, SHIFT(2170), + [3390] = {.count = 1, .reusable = false}, SHIFT(2171), + [3392] = {.count = 1, .reusable = false}, SHIFT(2172), + [3394] = {.count = 1, .reusable = false}, SHIFT(2173), + [3396] = {.count = 1, .reusable = false}, SHIFT(2174), + [3398] = {.count = 1, .reusable = true}, SHIFT(2175), + [3400] = {.count = 1, .reusable = true}, REDUCE(sym_with_expressions, 2), + [3402] = {.count = 1, .reusable = false}, SHIFT(2180), + [3404] = {.count = 1, .reusable = true}, SHIFT(2178), + [3406] = {.count = 1, .reusable = false}, SHIFT(2179), + [3408] = {.count = 1, .reusable = false}, SHIFT(2181), + [3410] = {.count = 1, .reusable = true}, SHIFT(2182), + [3412] = {.count = 1, .reusable = false}, SHIFT(2183), + [3414] = {.count = 1, .reusable = false}, SHIFT(2184), + [3416] = {.count = 1, .reusable = true}, SHIFT(2185), + [3418] = {.count = 1, .reusable = false}, SHIFT(2186), + [3420] = {.count = 1, .reusable = true}, SHIFT(2187), + [3422] = {.count = 1, .reusable = false}, SHIFT(2188), + [3424] = {.count = 1, .reusable = false}, SHIFT(2189), + [3426] = {.count = 1, .reusable = false}, SHIFT(2190), + [3428] = {.count = 1, .reusable = false}, SHIFT(2191), + [3430] = {.count = 1, .reusable = false}, SHIFT(2192), + [3432] = {.count = 1, .reusable = true}, SHIFT(2184), + [3434] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_defn, 3), + [3436] = {.count = 1, .reusable = true}, REDUCE(sym_rhs_defn, 2), + [3438] = {.count = 1, .reusable = false}, SHIFT(2196), + [3440] = {.count = 1, .reusable = false}, SHIFT(2197), + [3442] = {.count = 1, .reusable = true}, SHIFT(2198), + [3444] = {.count = 1, .reusable = false}, SHIFT(2199), + [3446] = {.count = 1, .reusable = false}, SHIFT(2200), + [3448] = {.count = 1, .reusable = true}, SHIFT(2201), + [3450] = {.count = 1, .reusable = false}, SHIFT(2202), + [3452] = {.count = 1, .reusable = true}, SHIFT(2200), + [3454] = {.count = 1, .reusable = false}, SHIFT(2203), + [3456] = {.count = 1, .reusable = true}, SHIFT(2207), + [3458] = {.count = 1, .reusable = false}, SHIFT(2211), + [3460] = {.count = 1, .reusable = true}, SHIFT(2212), + [3462] = {.count = 1, .reusable = false}, SHIFT(2213), + [3464] = {.count = 1, .reusable = false}, SHIFT(2214), + [3466] = {.count = 1, .reusable = true}, SHIFT(2215), + [3468] = {.count = 1, .reusable = false}, SHIFT(2216), + [3470] = {.count = 1, .reusable = false}, SHIFT(2217), + [3472] = {.count = 1, .reusable = false}, SHIFT(2218), + [3474] = {.count = 1, .reusable = false}, SHIFT(2219), + [3476] = {.count = 1, .reusable = false}, SHIFT(2220), + [3478] = {.count = 1, .reusable = true}, SHIFT(2213), + [3480] = {.count = 1, .reusable = true}, SHIFT(2224), + [3482] = {.count = 1, .reusable = false}, SHIFT(2227), + [3484] = {.count = 1, .reusable = false}, SHIFT(2207), + [3486] = {.count = 1, .reusable = true}, SHIFT(2231), + [3488] = {.count = 1, .reusable = true}, SHIFT(2234), + [3490] = {.count = 1, .reusable = false}, SHIFT(2236), + [3492] = {.count = 1, .reusable = false}, SHIFT(2237), + [3494] = {.count = 1, .reusable = true}, SHIFT(2238), + [3496] = {.count = 1, .reusable = false}, SHIFT(2239), + [3498] = {.count = 1, .reusable = false}, SHIFT(2240), + [3500] = {.count = 1, .reusable = true}, SHIFT(2241), + [3502] = {.count = 1, .reusable = false}, SHIFT(2242), + [3504] = {.count = 1, .reusable = true}, SHIFT(2240), + [3506] = {.count = 1, .reusable = false}, SHIFT(2243), + [3508] = {.count = 1, .reusable = false}, SHIFT(2248), + [3510] = {.count = 1, .reusable = true}, SHIFT(2249), + [3512] = {.count = 1, .reusable = false}, SHIFT(2250), + [3514] = {.count = 1, .reusable = false}, SHIFT(2251), + [3516] = {.count = 1, .reusable = true}, SHIFT(2252), + [3518] = {.count = 1, .reusable = false}, SHIFT(2253), + [3520] = {.count = 1, .reusable = false}, SHIFT(2254), + [3522] = {.count = 1, .reusable = false}, SHIFT(2255), + [3524] = {.count = 1, .reusable = false}, SHIFT(2256), + [3526] = {.count = 1, .reusable = false}, SHIFT(2257), + [3528] = {.count = 1, .reusable = true}, SHIFT(2250), + [3530] = {.count = 1, .reusable = true}, SHIFT(2261), + [3532] = {.count = 1, .reusable = false}, SHIFT(2264), + [3534] = {.count = 1, .reusable = false}, SHIFT(2234), + [3536] = {.count = 1, .reusable = true}, SHIFT(2269), + [3538] = {.count = 1, .reusable = false}, SHIFT(2270), + [3540] = {.count = 1, .reusable = false}, SHIFT(2271), + [3542] = {.count = 1, .reusable = false}, SHIFT(2272), + [3544] = {.count = 1, .reusable = false}, SHIFT(2273), + [3546] = {.count = 1, .reusable = true}, SHIFT(2274), + [3548] = {.count = 1, .reusable = false}, SHIFT(2279), + [3550] = {.count = 1, .reusable = true}, SHIFT(2277), + [3552] = {.count = 1, .reusable = false}, SHIFT(2278), + [3554] = {.count = 1, .reusable = false}, SHIFT(2280), + [3556] = {.count = 1, .reusable = true}, SHIFT(2281), + [3558] = {.count = 1, .reusable = false}, SHIFT(2282), + [3560] = {.count = 1, .reusable = false}, SHIFT(2283), + [3562] = {.count = 1, .reusable = true}, SHIFT(2284), + [3564] = {.count = 1, .reusable = false}, SHIFT(2285), + [3566] = {.count = 1, .reusable = true}, SHIFT(2286), + [3568] = {.count = 1, .reusable = false}, SHIFT(2287), + [3570] = {.count = 1, .reusable = false}, SHIFT(2288), + [3572] = {.count = 1, .reusable = false}, SHIFT(2289), + [3574] = {.count = 1, .reusable = false}, SHIFT(2290), + [3576] = {.count = 1, .reusable = false}, SHIFT(2291), + [3578] = {.count = 1, .reusable = true}, SHIFT(2283), + [3580] = {.count = 1, .reusable = true}, REDUCE(sym_lhs_decl, 3, .alias_sequence_id = 1), + [3582] = {.count = 1, .reusable = false}, SHIFT(1096), + [3584] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_binding, 2), + [3586] = {.count = 1, .reusable = true}, SHIFT(2296), + [3588] = {.count = 1, .reusable = true}, SHIFT(2297), + [3590] = {.count = 1, .reusable = true}, SHIFT(2298), + [3592] = {.count = 1, .reusable = true}, SHIFT(2299), + [3594] = {.count = 1, .reusable = false}, SHIFT(2301), + [3596] = {.count = 1, .reusable = false}, SHIFT(2302), + [3598] = {.count = 1, .reusable = true}, SHIFT(2303), + [3600] = {.count = 1, .reusable = false}, SHIFT(2304), + [3602] = {.count = 1, .reusable = false}, SHIFT(2305), + [3604] = {.count = 1, .reusable = true}, SHIFT(2306), + [3606] = {.count = 1, .reusable = false}, SHIFT(2307), + [3608] = {.count = 1, .reusable = true}, SHIFT(2305), + [3610] = {.count = 1, .reusable = false}, SHIFT(2308), + [3612] = {.count = 1, .reusable = false}, SHIFT(2313), + [3614] = {.count = 1, .reusable = true}, SHIFT(2314), + [3616] = {.count = 1, .reusable = false}, SHIFT(2315), + [3618] = {.count = 1, .reusable = false}, SHIFT(2316), + [3620] = {.count = 1, .reusable = true}, SHIFT(2317), + [3622] = {.count = 1, .reusable = false}, SHIFT(2318), + [3624] = {.count = 1, .reusable = false}, SHIFT(2319), + [3626] = {.count = 1, .reusable = false}, SHIFT(2320), + [3628] = {.count = 1, .reusable = false}, SHIFT(2321), + [3630] = {.count = 1, .reusable = false}, SHIFT(2322), + [3632] = {.count = 1, .reusable = true}, SHIFT(2315), + [3634] = {.count = 1, .reusable = true}, SHIFT(2326), + [3636] = {.count = 1, .reusable = false}, SHIFT(2329), + [3638] = {.count = 1, .reusable = false}, SHIFT(2299), + [3640] = {.count = 1, .reusable = true}, SHIFT(2334), + [3642] = {.count = 1, .reusable = false}, SHIFT(2335), + [3644] = {.count = 1, .reusable = false}, SHIFT(2336), + [3646] = {.count = 1, .reusable = false}, SHIFT(2337), + [3648] = {.count = 1, .reusable = false}, SHIFT(2338), + [3650] = {.count = 1, .reusable = true}, SHIFT(2339), + [3652] = {.count = 1, .reusable = true}, REDUCE(sym_pattern, 4), + [3654] = {.count = 1, .reusable = false}, SHIFT(2344), + [3656] = {.count = 1, .reusable = true}, SHIFT(2342), + [3658] = {.count = 1, .reusable = false}, SHIFT(2343), + [3660] = {.count = 1, .reusable = false}, SHIFT(2345), + [3662] = {.count = 1, .reusable = true}, SHIFT(2346), + [3664] = {.count = 1, .reusable = false}, SHIFT(2347), + [3666] = {.count = 1, .reusable = false}, SHIFT(2348), + [3668] = {.count = 1, .reusable = true}, SHIFT(2349), + [3670] = {.count = 1, .reusable = false}, SHIFT(2350), + [3672] = {.count = 1, .reusable = true}, SHIFT(2351), + [3674] = {.count = 1, .reusable = false}, SHIFT(2352), + [3676] = {.count = 1, .reusable = false}, SHIFT(2353), + [3678] = {.count = 1, .reusable = false}, SHIFT(2354), + [3680] = {.count = 1, .reusable = false}, SHIFT(2355), + [3682] = {.count = 1, .reusable = false}, SHIFT(2356), + [3684] = {.count = 1, .reusable = true}, SHIFT(2348), + [3686] = {.count = 1, .reusable = true}, SHIFT(2364), + [3688] = {.count = 1, .reusable = true}, SHIFT(2365), + [3690] = {.count = 1, .reusable = true}, SHIFT(2366), + [3692] = {.count = 1, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), + [3694] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(1133), + [3697] = {.count = 1, .reusable = true}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), + [3699] = {.count = 1, .reusable = false}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), + [3701] = {.count = 1, .reusable = true}, REDUCE(sym__simple_type_sig_block, 3), + [3703] = {.count = 2, .reusable = false}, REDUCE(aux_sym__simple_type_sig_block_repeat1, 2), SHIFT_REPEAT(320), + [3706] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_block, 3), + [3708] = {.count = 1, .reusable = true}, SHIFT(2369), + [3710] = {.count = 1, .reusable = true}, SHIFT(2370), + [3712] = {.count = 1, .reusable = true}, SHIFT(2374), + [3714] = {.count = 1, .reusable = false}, SHIFT(2376), + [3716] = {.count = 1, .reusable = true}, SHIFT(2375), + [3718] = {.count = 1, .reusable = false}, SHIFT(2373), + [3720] = {.count = 1, .reusable = false}, SHIFT(2381), + [3722] = {.count = 1, .reusable = true}, SHIFT(2382), + [3724] = {.count = 1, .reusable = true}, SHIFT(2383), + [3726] = {.count = 1, .reusable = false}, SHIFT(2388), + [3728] = {.count = 1, .reusable = false}, SHIFT(2383), + [3730] = {.count = 1, .reusable = true}, SHIFT(2391), + [3732] = {.count = 1, .reusable = true}, SHIFT(2394), + [3734] = {.count = 1, .reusable = true}, SHIFT(2397), + [3736] = {.count = 1, .reusable = true}, SHIFT(2399), + [3738] = {.count = 1, .reusable = false}, SHIFT(2401), + [3740] = {.count = 1, .reusable = true}, SHIFT(2402), + [3742] = {.count = 1, .reusable = true}, SHIFT(2407), + [3744] = {.count = 1, .reusable = true}, SHIFT(2409), + [3746] = {.count = 1, .reusable = true}, SHIFT(2410), + [3748] = {.count = 1, .reusable = true}, SHIFT(2411), + [3750] = {.count = 1, .reusable = true}, SHIFT(2416), + [3752] = {.count = 1, .reusable = true}, SHIFT(2417), + [3754] = {.count = 1, .reusable = true}, SHIFT(2418), + [3756] = {.count = 1, .reusable = true}, SHIFT(2419), + [3758] = {.count = 1, .reusable = false}, REDUCE(sym_lambda, 3), + [3760] = {.count = 1, .reusable = true}, SHIFT(2423), + [3762] = {.count = 1, .reusable = true}, SHIFT(2426), + [3764] = {.count = 1, .reusable = true}, SHIFT(2428), + [3766] = {.count = 1, .reusable = false}, SHIFT(2430), + [3768] = {.count = 1, .reusable = false}, SHIFT(2431), + [3770] = {.count = 1, .reusable = true}, SHIFT(2436), + [3772] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 3), + [3774] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 3), + [3776] = {.count = 1, .reusable = true}, SHIFT(2441), + [3778] = {.count = 1, .reusable = true}, SHIFT(2442), + [3780] = {.count = 1, .reusable = true}, SHIFT(2443), + [3782] = {.count = 1, .reusable = true}, SHIFT(2444), + [3784] = {.count = 1, .reusable = true}, SHIFT(2445), + [3786] = {.count = 1, .reusable = true}, SHIFT(2446), + [3788] = {.count = 1, .reusable = false}, SHIFT(2448), + [3790] = {.count = 1, .reusable = true}, SHIFT(2449), + [3792] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(375), + [3795] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(376), + [3798] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(377), + [3801] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(378), + [3804] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(379), + [3807] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(380), + [3810] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(381), + [3813] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(382), + [3816] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(383), + [3819] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(384), + [3822] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(377), + [3825] = {.count = 1, .reusable = true}, SHIFT(2450), + [3827] = {.count = 1, .reusable = true}, SHIFT(2451), + [3829] = {.count = 1, .reusable = true}, SHIFT(2454), + [3831] = {.count = 1, .reusable = false}, SHIFT(2455), + [3833] = {.count = 1, .reusable = true}, SHIFT(2457), + [3835] = {.count = 1, .reusable = true}, SHIFT(2458), + [3837] = {.count = 1, .reusable = true}, SHIFT(2462), + [3839] = {.count = 1, .reusable = false}, SHIFT(2464), + [3841] = {.count = 1, .reusable = true}, SHIFT(2463), + [3843] = {.count = 1, .reusable = false}, SHIFT(2461), + [3845] = {.count = 1, .reusable = false}, SHIFT(2469), + [3847] = {.count = 1, .reusable = true}, SHIFT(2470), + [3849] = {.count = 1, .reusable = true}, SHIFT(2471), + [3851] = {.count = 1, .reusable = false}, SHIFT(2476), + [3853] = {.count = 1, .reusable = false}, SHIFT(2471), + [3855] = {.count = 1, .reusable = true}, SHIFT(2479), + [3857] = {.count = 1, .reusable = true}, SHIFT(2482), + [3859] = {.count = 1, .reusable = true}, SHIFT(2485), + [3861] = {.count = 1, .reusable = true}, SHIFT(2487), + [3863] = {.count = 1, .reusable = false}, SHIFT(2489), + [3865] = {.count = 1, .reusable = true}, SHIFT(2490), + [3867] = {.count = 1, .reusable = true}, SHIFT(2495), + [3869] = {.count = 1, .reusable = true}, SHIFT(2496), + [3871] = {.count = 1, .reusable = true}, SHIFT(2498), + [3873] = {.count = 1, .reusable = true}, SHIFT(2501), + [3875] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 3), + [3877] = {.count = 1, .reusable = false}, SHIFT(1315), + [3879] = {.count = 1, .reusable = true}, REDUCE(sym_expr, 3), + [3881] = {.count = 1, .reusable = false}, REDUCE(sym_expr, 3), + [3883] = {.count = 1, .reusable = true}, SHIFT(2507), + [3885] = {.count = 1, .reusable = true}, SHIFT(2508), + [3887] = {.count = 1, .reusable = false}, SHIFT(2510), + [3889] = {.count = 1, .reusable = true}, SHIFT(2511), + [3891] = {.count = 1, .reusable = true}, SHIFT(2512), + [3893] = {.count = 1, .reusable = true}, REDUCE(sym__expr2, 4), + [3895] = {.count = 1, .reusable = false}, SHIFT(2514), + [3897] = {.count = 1, .reusable = true}, SHIFT(2515), + [3899] = {.count = 1, .reusable = false}, SHIFT(2516), + [3901] = {.count = 1, .reusable = false}, SHIFT(2517), + [3903] = {.count = 1, .reusable = false}, SHIFT(2518), + [3905] = {.count = 1, .reusable = false}, SHIFT(2519), + [3907] = {.count = 1, .reusable = false}, SHIFT(2520), + [3909] = {.count = 1, .reusable = false}, SHIFT(2521), + [3911] = {.count = 1, .reusable = false}, SHIFT(2522), + [3913] = {.count = 1, .reusable = true}, SHIFT(2523), + [3915] = {.count = 1, .reusable = false}, SHIFT(2524), + [3917] = {.count = 1, .reusable = false}, SHIFT(2525), + [3919] = {.count = 1, .reusable = false}, SHIFT(2526), + [3921] = {.count = 1, .reusable = false}, SHIFT(2527), + [3923] = {.count = 1, .reusable = false}, SHIFT(2528), + [3925] = {.count = 1, .reusable = true}, SHIFT(2517), + [3927] = {.count = 1, .reusable = true}, SHIFT(2535), + [3929] = {.count = 1, .reusable = true}, SHIFT(2536), + [3931] = {.count = 1, .reusable = true}, SHIFT(2537), + [3933] = {.count = 1, .reusable = false}, SHIFT(2539), + [3935] = {.count = 1, .reusable = true}, SHIFT(2540), + [3937] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(477), + [3940] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(473), + [3943] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(478), + [3946] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(479), + [3949] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(480), + [3952] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(474), + [3955] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(475), + [3958] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(476), + [3961] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(481), + [3964] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(482), + [3967] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(475), + [3970] = {.count = 1, .reusable = true}, SHIFT(2541), + [3972] = {.count = 1, .reusable = true}, SHIFT(2543), + [3974] = {.count = 1, .reusable = false}, SHIFT(2544), + [3976] = {.count = 1, .reusable = true}, SHIFT(2545), + [3978] = {.count = 1, .reusable = false}, SHIFT(2546), + [3980] = {.count = 1, .reusable = false}, SHIFT(2547), + [3982] = {.count = 1, .reusable = false}, SHIFT(2548), + [3984] = {.count = 1, .reusable = false}, SHIFT(2549), + [3986] = {.count = 1, .reusable = false}, SHIFT(2550), + [3988] = {.count = 1, .reusable = false}, SHIFT(2551), + [3990] = {.count = 1, .reusable = false}, SHIFT(2552), + [3992] = {.count = 1, .reusable = true}, SHIFT(2553), + [3994] = {.count = 1, .reusable = false}, SHIFT(2554), + [3996] = {.count = 1, .reusable = false}, SHIFT(2555), + [3998] = {.count = 1, .reusable = false}, SHIFT(2556), + [4000] = {.count = 1, .reusable = false}, SHIFT(2557), + [4002] = {.count = 1, .reusable = false}, SHIFT(2558), + [4004] = {.count = 1, .reusable = true}, SHIFT(2547), + [4006] = {.count = 1, .reusable = true}, SHIFT(2566), + [4008] = {.count = 1, .reusable = true}, REDUCE(sym__let_only, 4), + [4010] = {.count = 1, .reusable = true}, SHIFT(2568), + [4012] = {.count = 1, .reusable = false}, SHIFT(2569), + [4014] = {.count = 1, .reusable = false}, REDUCE(sym_infix, 3), + [4016] = {.count = 1, .reusable = false}, REDUCE(sym_open, 3), + [4018] = {.count = 1, .reusable = false}, SHIFT(2574), + [4020] = {.count = 1, .reusable = true}, SHIFT(2576), + [4022] = {.count = 1, .reusable = false}, SHIFT(2579), + [4024] = {.count = 1, .reusable = false}, SHIFT(2582), + [4026] = {.count = 1, .reusable = false}, SHIFT(2576), + [4028] = {.count = 1, .reusable = true}, SHIFT(2586), + [4030] = {.count = 1, .reusable = true}, SHIFT(2590), + [4032] = {.count = 1, .reusable = true}, SHIFT(2591), + [4034] = {.count = 1, .reusable = true}, SHIFT(2592), + [4036] = {.count = 1, .reusable = true}, SHIFT(2597), + [4038] = {.count = 1, .reusable = true}, SHIFT(2598), + [4040] = {.count = 1, .reusable = true}, SHIFT(2599), + [4042] = {.count = 1, .reusable = false}, SHIFT(2601), + [4044] = {.count = 1, .reusable = true}, SHIFT(2602), + [4046] = {.count = 1, .reusable = false}, SHIFT(2605), + [4048] = {.count = 1, .reusable = false}, SHIFT(2602), + [4050] = {.count = 1, .reusable = true}, SHIFT(2610), + [4052] = {.count = 1, .reusable = false}, SHIFT(2611), + [4054] = {.count = 1, .reusable = false}, SHIFT(2612), + [4056] = {.count = 1, .reusable = false}, SHIFT(2613), + [4058] = {.count = 1, .reusable = false}, SHIFT(2614), + [4060] = {.count = 1, .reusable = true}, SHIFT(2615), + [4062] = {.count = 1, .reusable = false}, SHIFT(2619), + [4064] = {.count = 1, .reusable = true}, SHIFT(2617), + [4066] = {.count = 1, .reusable = false}, SHIFT(2618), + [4068] = {.count = 1, .reusable = false}, SHIFT(2620), + [4070] = {.count = 1, .reusable = true}, SHIFT(2621), + [4072] = {.count = 1, .reusable = true}, SHIFT(2622), + [4074] = {.count = 1, .reusable = false}, SHIFT(2623), + [4076] = {.count = 1, .reusable = true}, SHIFT(2574), + [4078] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 4), + [4080] = {.count = 1, .reusable = true}, SHIFT(2625), + [4082] = {.count = 1, .reusable = true}, SHIFT(2626), + [4084] = {.count = 1, .reusable = false}, SHIFT(2628), + [4086] = {.count = 1, .reusable = true}, SHIFT(2629), + [4088] = {.count = 1, .reusable = true}, SHIFT(2630), + [4090] = {.count = 1, .reusable = false}, SHIFT(2632), + [4092] = {.count = 1, .reusable = false}, SHIFT(2633), + [4094] = {.count = 1, .reusable = true}, SHIFT(2634), + [4096] = {.count = 1, .reusable = false}, SHIFT(2635), + [4098] = {.count = 1, .reusable = false}, SHIFT(2636), + [4100] = {.count = 1, .reusable = true}, SHIFT(2637), + [4102] = {.count = 1, .reusable = false}, SHIFT(2638), + [4104] = {.count = 1, .reusable = true}, SHIFT(2636), + [4106] = {.count = 1, .reusable = false}, SHIFT(2639), + [4108] = {.count = 1, .reusable = false}, SHIFT(2644), + [4110] = {.count = 1, .reusable = true}, SHIFT(2645), + [4112] = {.count = 1, .reusable = false}, SHIFT(2646), + [4114] = {.count = 1, .reusable = false}, SHIFT(2647), + [4116] = {.count = 1, .reusable = true}, SHIFT(2648), + [4118] = {.count = 1, .reusable = false}, SHIFT(2649), + [4120] = {.count = 1, .reusable = false}, SHIFT(2650), + [4122] = {.count = 1, .reusable = false}, SHIFT(2651), + [4124] = {.count = 1, .reusable = false}, SHIFT(2652), + [4126] = {.count = 1, .reusable = false}, SHIFT(2653), + [4128] = {.count = 1, .reusable = true}, SHIFT(2646), + [4130] = {.count = 1, .reusable = true}, SHIFT(2657), + [4132] = {.count = 1, .reusable = false}, SHIFT(2660), + [4134] = {.count = 1, .reusable = false}, SHIFT(2630), + [4136] = {.count = 1, .reusable = true}, SHIFT(2665), + [4138] = {.count = 1, .reusable = false}, SHIFT(2666), + [4140] = {.count = 1, .reusable = false}, SHIFT(2667), + [4142] = {.count = 1, .reusable = false}, SHIFT(2668), + [4144] = {.count = 1, .reusable = false}, SHIFT(2669), + [4146] = {.count = 1, .reusable = true}, SHIFT(2670), + [4148] = {.count = 1, .reusable = false}, SHIFT(2675), + [4150] = {.count = 1, .reusable = true}, SHIFT(2673), + [4152] = {.count = 1, .reusable = false}, SHIFT(2674), + [4154] = {.count = 1, .reusable = false}, SHIFT(2676), + [4156] = {.count = 1, .reusable = true}, SHIFT(2677), + [4158] = {.count = 1, .reusable = false}, SHIFT(2678), + [4160] = {.count = 1, .reusable = false}, SHIFT(2679), + [4162] = {.count = 1, .reusable = true}, SHIFT(2680), + [4164] = {.count = 1, .reusable = false}, SHIFT(2681), + [4166] = {.count = 1, .reusable = true}, SHIFT(2682), + [4168] = {.count = 1, .reusable = false}, SHIFT(2683), + [4170] = {.count = 1, .reusable = false}, SHIFT(2684), + [4172] = {.count = 1, .reusable = false}, SHIFT(2685), + [4174] = {.count = 1, .reusable = false}, SHIFT(2686), + [4176] = {.count = 1, .reusable = false}, SHIFT(2687), + [4178] = {.count = 1, .reusable = true}, SHIFT(2679), + [4180] = {.count = 1, .reusable = false}, SHIFT(2691), + [4182] = {.count = 1, .reusable = false}, SHIFT(2692), + [4184] = {.count = 1, .reusable = true}, SHIFT(2693), + [4186] = {.count = 1, .reusable = false}, SHIFT(2694), + [4188] = {.count = 1, .reusable = false}, SHIFT(2695), + [4190] = {.count = 1, .reusable = true}, SHIFT(2696), + [4192] = {.count = 1, .reusable = false}, SHIFT(2697), + [4194] = {.count = 1, .reusable = true}, SHIFT(2695), + [4196] = {.count = 1, .reusable = false}, SHIFT(2698), + [4198] = {.count = 1, .reusable = true}, SHIFT(2702), + [4200] = {.count = 1, .reusable = false}, SHIFT(2706), + [4202] = {.count = 1, .reusable = true}, SHIFT(2707), + [4204] = {.count = 1, .reusable = false}, SHIFT(2708), + [4206] = {.count = 1, .reusable = false}, SHIFT(2709), + [4208] = {.count = 1, .reusable = true}, SHIFT(2710), + [4210] = {.count = 1, .reusable = false}, SHIFT(2711), + [4212] = {.count = 1, .reusable = false}, SHIFT(2712), + [4214] = {.count = 1, .reusable = false}, SHIFT(2713), + [4216] = {.count = 1, .reusable = false}, SHIFT(2714), + [4218] = {.count = 1, .reusable = false}, SHIFT(2715), + [4220] = {.count = 1, .reusable = true}, SHIFT(2708), + [4222] = {.count = 1, .reusable = true}, SHIFT(2719), + [4224] = {.count = 1, .reusable = false}, SHIFT(2722), + [4226] = {.count = 1, .reusable = false}, SHIFT(2702), + [4228] = {.count = 1, .reusable = true}, SHIFT(2726), + [4230] = {.count = 1, .reusable = true}, SHIFT(2729), + [4232] = {.count = 1, .reusable = false}, SHIFT(2731), + [4234] = {.count = 1, .reusable = false}, SHIFT(2732), + [4236] = {.count = 1, .reusable = true}, SHIFT(2733), + [4238] = {.count = 1, .reusable = false}, SHIFT(2734), + [4240] = {.count = 1, .reusable = false}, SHIFT(2735), + [4242] = {.count = 1, .reusable = true}, SHIFT(2736), + [4244] = {.count = 1, .reusable = false}, SHIFT(2737), + [4246] = {.count = 1, .reusable = true}, SHIFT(2735), + [4248] = {.count = 1, .reusable = false}, SHIFT(2738), + [4250] = {.count = 1, .reusable = false}, SHIFT(2743), + [4252] = {.count = 1, .reusable = true}, SHIFT(2744), + [4254] = {.count = 1, .reusable = false}, SHIFT(2745), + [4256] = {.count = 1, .reusable = false}, SHIFT(2746), + [4258] = {.count = 1, .reusable = true}, SHIFT(2747), + [4260] = {.count = 1, .reusable = false}, SHIFT(2748), + [4262] = {.count = 1, .reusable = false}, SHIFT(2749), + [4264] = {.count = 1, .reusable = false}, SHIFT(2750), + [4266] = {.count = 1, .reusable = false}, SHIFT(2751), + [4268] = {.count = 1, .reusable = false}, SHIFT(2752), + [4270] = {.count = 1, .reusable = true}, SHIFT(2745), + [4272] = {.count = 1, .reusable = true}, SHIFT(2756), + [4274] = {.count = 1, .reusable = false}, SHIFT(2759), + [4276] = {.count = 1, .reusable = false}, SHIFT(2729), + [4278] = {.count = 1, .reusable = true}, SHIFT(2764), + [4280] = {.count = 1, .reusable = false}, SHIFT(2765), + [4282] = {.count = 1, .reusable = false}, SHIFT(2766), + [4284] = {.count = 1, .reusable = false}, SHIFT(2767), + [4286] = {.count = 1, .reusable = false}, SHIFT(2768), + [4288] = {.count = 1, .reusable = true}, SHIFT(2769), + [4290] = {.count = 1, .reusable = false}, SHIFT(2774), + [4292] = {.count = 1, .reusable = true}, SHIFT(2772), + [4294] = {.count = 1, .reusable = false}, SHIFT(2773), + [4296] = {.count = 1, .reusable = false}, SHIFT(2775), + [4298] = {.count = 1, .reusable = true}, SHIFT(2776), + [4300] = {.count = 1, .reusable = false}, SHIFT(2777), + [4302] = {.count = 1, .reusable = false}, SHIFT(2778), + [4304] = {.count = 1, .reusable = true}, SHIFT(2779), + [4306] = {.count = 1, .reusable = false}, SHIFT(2780), + [4308] = {.count = 1, .reusable = true}, SHIFT(2781), + [4310] = {.count = 1, .reusable = false}, SHIFT(2782), + [4312] = {.count = 1, .reusable = false}, SHIFT(2783), + [4314] = {.count = 1, .reusable = false}, SHIFT(2784), + [4316] = {.count = 1, .reusable = false}, SHIFT(2785), + [4318] = {.count = 1, .reusable = false}, SHIFT(2786), + [4320] = {.count = 1, .reusable = true}, SHIFT(2778), + [4322] = {.count = 1, .reusable = false}, SHIFT(2790), + [4324] = {.count = 1, .reusable = false}, SHIFT(2791), + [4326] = {.count = 1, .reusable = true}, SHIFT(2792), + [4328] = {.count = 1, .reusable = false}, SHIFT(2793), + [4330] = {.count = 1, .reusable = false}, SHIFT(2794), + [4332] = {.count = 1, .reusable = true}, SHIFT(2795), + [4334] = {.count = 1, .reusable = false}, SHIFT(2796), + [4336] = {.count = 1, .reusable = true}, SHIFT(2794), + [4338] = {.count = 1, .reusable = false}, SHIFT(2797), + [4340] = {.count = 1, .reusable = true}, SHIFT(2801), + [4342] = {.count = 1, .reusable = false}, SHIFT(2805), + [4344] = {.count = 1, .reusable = true}, SHIFT(2806), + [4346] = {.count = 1, .reusable = false}, SHIFT(2807), + [4348] = {.count = 1, .reusable = false}, SHIFT(2808), + [4350] = {.count = 1, .reusable = true}, SHIFT(2809), + [4352] = {.count = 1, .reusable = false}, SHIFT(2810), + [4354] = {.count = 1, .reusable = false}, SHIFT(2811), + [4356] = {.count = 1, .reusable = false}, SHIFT(2812), + [4358] = {.count = 1, .reusable = false}, SHIFT(2813), + [4360] = {.count = 1, .reusable = false}, SHIFT(2814), + [4362] = {.count = 1, .reusable = true}, SHIFT(2807), + [4364] = {.count = 1, .reusable = true}, SHIFT(2818), + [4366] = {.count = 1, .reusable = false}, SHIFT(2821), + [4368] = {.count = 1, .reusable = false}, SHIFT(2801), + [4370] = {.count = 1, .reusable = true}, SHIFT(2825), + [4372] = {.count = 1, .reusable = true}, SHIFT(2828), + [4374] = {.count = 1, .reusable = false}, SHIFT(2830), + [4376] = {.count = 1, .reusable = false}, SHIFT(2831), + [4378] = {.count = 1, .reusable = true}, SHIFT(2832), + [4380] = {.count = 1, .reusable = false}, SHIFT(2833), + [4382] = {.count = 1, .reusable = false}, SHIFT(2834), + [4384] = {.count = 1, .reusable = true}, SHIFT(2835), + [4386] = {.count = 1, .reusable = false}, SHIFT(2836), + [4388] = {.count = 1, .reusable = true}, SHIFT(2834), + [4390] = {.count = 1, .reusable = false}, SHIFT(2837), + [4392] = {.count = 1, .reusable = false}, SHIFT(2842), + [4394] = {.count = 1, .reusable = true}, SHIFT(2843), + [4396] = {.count = 1, .reusable = false}, SHIFT(2844), + [4398] = {.count = 1, .reusable = false}, SHIFT(2845), + [4400] = {.count = 1, .reusable = true}, SHIFT(2846), + [4402] = {.count = 1, .reusable = false}, SHIFT(2847), + [4404] = {.count = 1, .reusable = false}, SHIFT(2848), + [4406] = {.count = 1, .reusable = false}, SHIFT(2849), + [4408] = {.count = 1, .reusable = false}, SHIFT(2850), + [4410] = {.count = 1, .reusable = false}, SHIFT(2851), + [4412] = {.count = 1, .reusable = true}, SHIFT(2844), + [4414] = {.count = 1, .reusable = true}, SHIFT(2855), + [4416] = {.count = 1, .reusable = false}, SHIFT(2858), + [4418] = {.count = 1, .reusable = false}, SHIFT(2828), + [4420] = {.count = 1, .reusable = true}, SHIFT(2863), + [4422] = {.count = 1, .reusable = false}, SHIFT(2864), + [4424] = {.count = 1, .reusable = false}, SHIFT(2865), + [4426] = {.count = 1, .reusable = false}, SHIFT(2866), + [4428] = {.count = 1, .reusable = false}, SHIFT(2867), + [4430] = {.count = 1, .reusable = true}, SHIFT(2868), + [4432] = {.count = 1, .reusable = false}, SHIFT(2873), + [4434] = {.count = 1, .reusable = true}, SHIFT(2871), + [4436] = {.count = 1, .reusable = false}, SHIFT(2872), + [4438] = {.count = 1, .reusable = false}, SHIFT(2874), + [4440] = {.count = 1, .reusable = true}, SHIFT(2875), + [4442] = {.count = 1, .reusable = false}, SHIFT(2876), + [4444] = {.count = 1, .reusable = false}, SHIFT(2877), + [4446] = {.count = 1, .reusable = true}, SHIFT(2878), + [4448] = {.count = 1, .reusable = false}, SHIFT(2879), + [4450] = {.count = 1, .reusable = true}, SHIFT(2880), + [4452] = {.count = 1, .reusable = false}, SHIFT(2881), + [4454] = {.count = 1, .reusable = false}, SHIFT(2882), + [4456] = {.count = 1, .reusable = false}, SHIFT(2883), + [4458] = {.count = 1, .reusable = false}, SHIFT(2884), + [4460] = {.count = 1, .reusable = false}, SHIFT(2885), + [4462] = {.count = 1, .reusable = true}, SHIFT(2877), + [4464] = {.count = 1, .reusable = true}, SHIFT(2889), + [4466] = {.count = 1, .reusable = true}, SHIFT(2891), + [4468] = {.count = 1, .reusable = true}, REDUCE(sym__record_assignments1, 2), + [4470] = {.count = 1, .reusable = true}, SHIFT(2895), + [4472] = {.count = 1, .reusable = true}, SHIFT(2899), + [4474] = {.count = 1, .reusable = false}, SHIFT(2900), + [4476] = {.count = 1, .reusable = true}, SHIFT(2902), + [4478] = {.count = 1, .reusable = false}, SHIFT(2895), + [4480] = {.count = 1, .reusable = true}, SHIFT(2905), + [4482] = {.count = 1, .reusable = true}, SHIFT(1544), + [4484] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 2), + [4486] = {.count = 1, .reusable = true}, SHIFT(1549), + [4488] = {.count = 1, .reusable = true}, SHIFT(1542), + [4490] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 4), + [4492] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 4), + [4494] = {.count = 1, .reusable = true}, SHIFT(2910), + [4496] = {.count = 1, .reusable = false}, SHIFT(2913), + [4498] = {.count = 1, .reusable = false}, SHIFT(2910), + [4500] = {.count = 1, .reusable = true}, SHIFT(2918), + [4502] = {.count = 1, .reusable = false}, SHIFT(2919), + [4504] = {.count = 1, .reusable = false}, SHIFT(2920), + [4506] = {.count = 1, .reusable = false}, SHIFT(2921), + [4508] = {.count = 1, .reusable = false}, SHIFT(2922), + [4510] = {.count = 1, .reusable = true}, SHIFT(2923), + [4512] = {.count = 1, .reusable = true}, REDUCE(sym_record_signature_only, 4), + [4514] = {.count = 1, .reusable = true}, SHIFT(2925), + [4516] = {.count = 1, .reusable = false}, SHIFT(2928), + [4518] = {.count = 1, .reusable = true}, SHIFT(2926), + [4520] = {.count = 1, .reusable = false}, SHIFT(2927), + [4522] = {.count = 1, .reusable = false}, SHIFT(2929), + [4524] = {.count = 1, .reusable = true}, SHIFT(2930), + [4526] = {.count = 1, .reusable = true}, SHIFT(2931), + [4528] = {.count = 1, .reusable = true}, SHIFT(2932), + [4530] = {.count = 1, .reusable = true}, SHIFT(2933), + [4532] = {.count = 1, .reusable = true}, SHIFT(2938), + [4534] = {.count = 1, .reusable = true}, SHIFT(2939), + [4536] = {.count = 1, .reusable = true}, SHIFT(2940), + [4538] = {.count = 1, .reusable = true}, SHIFT(2941), + [4540] = {.count = 1, .reusable = true}, REDUCE(sym__field_assignments1, 1), + [4542] = {.count = 1, .reusable = true}, SHIFT(2943), + [4544] = {.count = 1, .reusable = false}, SHIFT(2944), + [4546] = {.count = 1, .reusable = false}, SHIFT(2945), + [4548] = {.count = 1, .reusable = false}, SHIFT(2946), + [4550] = {.count = 1, .reusable = false}, SHIFT(2947), + [4552] = {.count = 1, .reusable = true}, SHIFT(2948), + [4554] = {.count = 1, .reusable = true}, REDUCE(sym_record, 4), + [4556] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(561), + [4559] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(562), + [4562] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(563), + [4565] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(564), + [4568] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(565), + [4571] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(901), + [4574] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(564), + [4577] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(568), + [4580] = {.count = 1, .reusable = true}, SHIFT(2954), + [4582] = {.count = 1, .reusable = true}, SHIFT(2955), + [4584] = {.count = 1, .reusable = true}, SHIFT(2956), + [4586] = {.count = 1, .reusable = true}, SHIFT(2961), + [4588] = {.count = 1, .reusable = true}, SHIFT(2962), + [4590] = {.count = 1, .reusable = true}, SHIFT(2963), + [4592] = {.count = 1, .reusable = true}, SHIFT(2965), + [4594] = {.count = 1, .reusable = true}, SHIFT(2966), + [4596] = {.count = 1, .reusable = false}, SHIFT(2968), + [4598] = {.count = 1, .reusable = true}, SHIFT(2969), + [4600] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(586), + [4603] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(587), + [4606] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(588), + [4609] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(589), + [4612] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(590), + [4615] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(591), + [4618] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(592), + [4621] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(593), + [4624] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(594), + [4627] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(595), + [4630] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(588), + [4633] = {.count = 1, .reusable = true}, SHIFT(2970), + [4635] = {.count = 1, .reusable = true}, SHIFT(2972), + [4637] = {.count = 1, .reusable = true}, SHIFT(2974), + [4639] = {.count = 1, .reusable = true}, SHIFT(2975), + [4641] = {.count = 1, .reusable = false}, SHIFT(2977), + [4643] = {.count = 1, .reusable = true}, SHIFT(2978), + [4645] = {.count = 1, .reusable = true}, SHIFT(2979), + [4647] = {.count = 1, .reusable = true}, SHIFT(2980), + [4649] = {.count = 1, .reusable = true}, SHIFT(2981), + [4651] = {.count = 1, .reusable = true}, SHIFT(2986), + [4653] = {.count = 1, .reusable = true}, SHIFT(2987), + [4655] = {.count = 1, .reusable = true}, SHIFT(2988), + [4657] = {.count = 1, .reusable = true}, SHIFT(2990), + [4659] = {.count = 1, .reusable = true}, SHIFT(2991), + [4661] = {.count = 1, .reusable = false}, SHIFT(2993), + [4663] = {.count = 1, .reusable = true}, SHIFT(2994), + [4665] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(647), + [4668] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(648), + [4671] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(649), + [4674] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(650), + [4677] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(651), + [4680] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(652), + [4683] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(653), + [4686] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(654), + [4689] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(655), + [4692] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(656), + [4695] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(649), + [4698] = {.count = 1, .reusable = true}, SHIFT(2995), + [4700] = {.count = 1, .reusable = true}, SHIFT(2997), + [4702] = {.count = 1, .reusable = true}, SHIFT(2999), + [4704] = {.count = 1, .reusable = true}, SHIFT(3000), + [4706] = {.count = 1, .reusable = false}, SHIFT(3002), + [4708] = {.count = 1, .reusable = true}, SHIFT(3003), + [4710] = {.count = 1, .reusable = false}, SHIFT(3004), + [4712] = {.count = 1, .reusable = true}, REDUCE(sym_simple_hole, 1), + [4714] = {.count = 1, .reusable = false}, REDUCE(sym_simple_hole, 1), + [4716] = {.count = 1, .reusable = true}, SHIFT(3005), + [4718] = {.count = 1, .reusable = true}, SHIFT(3006), + [4720] = {.count = 1, .reusable = false}, SHIFT(3007), + [4722] = {.count = 1, .reusable = true}, SHIFT(3008), + [4724] = {.count = 1, .reusable = true}, SHIFT(3009), + [4726] = {.count = 1, .reusable = false}, SHIFT(3010), + [4728] = {.count = 2, .reusable = true}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(696), + [4731] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(697), + [4734] = {.count = 1, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), + [4736] = {.count = 2, .reusable = true}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(695), + [4739] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(694), + [4742] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat1, 2), SHIFT_REPEAT(698), + [4745] = {.count = 1, .reusable = true}, REDUCE(aux_sym_infix_repeat1, 2), + [4747] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(700), + [4750] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(701), + [4753] = {.count = 1, .reusable = true}, SHIFT(3012), + [4755] = {.count = 1, .reusable = true}, SHIFT(3014), + [4757] = {.count = 1, .reusable = false}, SHIFT(3012), + [4759] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 2), + [4761] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 2), + [4763] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig_instance, 2), + [4765] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), + [4767] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(703), + [4770] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(705), + [4773] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(706), + [4776] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(707), + [4779] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(706), + [4782] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_names_repeat1, 2), SHIFT_REPEAT(709), + [4785] = {.count = 1, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), + [4787] = {.count = 1, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), + [4789] = {.count = 1, .reusable = true}, REDUCE(sym__type_sig_block, 3), + [4791] = {.count = 2, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(703), + [4794] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(704), + [4797] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(705), + [4800] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(706), + [4803] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(707), + [4806] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(708), + [4809] = {.count = 2, .reusable = true}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(706), + [4812] = {.count = 2, .reusable = false}, REDUCE(aux_sym__type_sig_block_repeat1, 2), SHIFT_REPEAT(709), + [4815] = {.count = 1, .reusable = true}, SHIFT(3022), + [4817] = {.count = 1, .reusable = true}, SHIFT(3026), + [4819] = {.count = 1, .reusable = false}, SHIFT(3028), + [4821] = {.count = 1, .reusable = true}, SHIFT(3027), + [4823] = {.count = 1, .reusable = false}, SHIFT(3025), + [4825] = {.count = 1, .reusable = false}, SHIFT(3033), + [4827] = {.count = 1, .reusable = true}, SHIFT(3034), + [4829] = {.count = 1, .reusable = true}, SHIFT(3035), + [4831] = {.count = 1, .reusable = true}, SHIFT(3036), + [4833] = {.count = 1, .reusable = false}, SHIFT(3041), + [4835] = {.count = 1, .reusable = false}, SHIFT(3036), + [4837] = {.count = 1, .reusable = true}, SHIFT(3044), + [4839] = {.count = 1, .reusable = true}, SHIFT(3047), + [4841] = {.count = 1, .reusable = true}, SHIFT(3050), + [4843] = {.count = 1, .reusable = true}, SHIFT(3052), + [4845] = {.count = 1, .reusable = false}, SHIFT(3054), + [4847] = {.count = 1, .reusable = true}, SHIFT(3055), + [4849] = {.count = 1, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), + [4851] = {.count = 1, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), + [4853] = {.count = 1, .reusable = true}, REDUCE(sym_do, 4), + [4855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(714), + [4858] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(718), + [4861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(717), + [4864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(715), + [4867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(716), + [4870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(19), + [4873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(719), + [4876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(720), + [4879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(721), + [4882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(723), + [4885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(722), + [4888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(724), + [4891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(725), + [4894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(726), + [4897] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(727), + [4900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(728), + [4903] = {.count = 2, .reusable = true}, REDUCE(aux_sym_do_repeat1, 2), SHIFT_REPEAT(716), + [4906] = {.count = 1, .reusable = true}, REDUCE(sym_open, 4), + [4908] = {.count = 1, .reusable = true}, SHIFT(3060), + [4910] = {.count = 1, .reusable = true}, SHIFT(3062), + [4912] = {.count = 1, .reusable = true}, REDUCE(sym__open_as, 2), + [4914] = {.count = 1, .reusable = false}, REDUCE(sym__open_as, 2), + [4916] = {.count = 1, .reusable = false}, SHIFT(3063), + [4918] = {.count = 1, .reusable = true}, SHIFT(3064), + [4920] = {.count = 1, .reusable = false}, SHIFT(3065), + [4922] = {.count = 1, .reusable = true}, SHIFT(3067), + [4924] = {.count = 1, .reusable = false}, SHIFT(3069), + [4926] = {.count = 1, .reusable = false}, SHIFT(3070), + [4928] = {.count = 1, .reusable = false}, SHIFT(3071), + [4930] = {.count = 1, .reusable = true}, SHIFT(3073), + [4932] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(739), + [4935] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(740), + [4938] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(741), + [4941] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(742), + [4944] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(744), + [4947] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(746), + [4950] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(748), + [4953] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(749), + [4956] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(750), + [4959] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(751), + [4962] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(741), + [4965] = {.count = 1, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), + [4967] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(747), + [4970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(752), + [4973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(745), + [4976] = {.count = 1, .reusable = true}, SHIFT(3074), + [4978] = {.count = 1, .reusable = true}, SHIFT(3075), + [4980] = {.count = 1, .reusable = false}, SHIFT(3077), + [4982] = {.count = 1, .reusable = true}, SHIFT(3078), + [4984] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3079), + [4987] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3080), + [4990] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3081), + [4993] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3082), + [4996] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3083), + [4999] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3085), + [5002] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3084), + [5005] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3086), + [5008] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3087), + [5011] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3088), + [5014] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3081), + [5017] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 3), + [5019] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 3), + [5021] = {.count = 1, .reusable = true}, SHIFT(3091), + [5023] = {.count = 1, .reusable = true}, SHIFT(3092), + [5025] = {.count = 1, .reusable = false}, SHIFT(3094), + [5027] = {.count = 1, .reusable = true}, SHIFT(3095), + [5029] = {.count = 1, .reusable = true}, SHIFT(3097), + [5031] = {.count = 1, .reusable = true}, SHIFT(3098), + [5033] = {.count = 1, .reusable = true}, SHIFT(3099), + [5035] = {.count = 1, .reusable = true}, SHIFT(3100), + [5037] = {.count = 1, .reusable = true}, SHIFT(3101), + [5039] = {.count = 1, .reusable = true}, SHIFT(3102), + [5041] = {.count = 1, .reusable = true}, SHIFT(3103), + [5043] = {.count = 1, .reusable = true}, SHIFT(3105), + [5045] = {.count = 1, .reusable = true}, SHIFT(3108), + [5047] = {.count = 1, .reusable = false}, SHIFT(3110), + [5049] = {.count = 1, .reusable = true}, SHIFT(3116), + [5051] = {.count = 1, .reusable = true}, SHIFT(3120), + [5053] = {.count = 1, .reusable = false}, SHIFT(3122), + [5055] = {.count = 1, .reusable = true}, SHIFT(3121), + [5057] = {.count = 1, .reusable = false}, SHIFT(3119), + [5059] = {.count = 1, .reusable = false}, SHIFT(3127), + [5061] = {.count = 1, .reusable = true}, SHIFT(3128), + [5063] = {.count = 1, .reusable = true}, SHIFT(3129), + [5065] = {.count = 1, .reusable = true}, SHIFT(3130), + [5067] = {.count = 1, .reusable = false}, SHIFT(3131), + [5069] = {.count = 1, .reusable = false}, SHIFT(3132), + [5071] = {.count = 1, .reusable = true}, SHIFT(3133), + [5073] = {.count = 1, .reusable = false}, SHIFT(3134), + [5075] = {.count = 1, .reusable = false}, SHIFT(3135), + [5077] = {.count = 1, .reusable = true}, SHIFT(3136), + [5079] = {.count = 1, .reusable = false}, SHIFT(3137), + [5081] = {.count = 1, .reusable = true}, SHIFT(3135), + [5083] = {.count = 1, .reusable = false}, SHIFT(3138), + [5085] = {.count = 1, .reusable = false}, SHIFT(3142), + [5087] = {.count = 1, .reusable = true}, SHIFT(3145), + [5089] = {.count = 1, .reusable = false}, SHIFT(3148), + [5091] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 2), + [5093] = {.count = 1, .reusable = true}, SHIFT(3150), + [5095] = {.count = 1, .reusable = false}, SHIFT(3151), + [5097] = {.count = 1, .reusable = true}, SHIFT(3154), + [5099] = {.count = 1, .reusable = true}, SHIFT(3157), + [5101] = {.count = 1, .reusable = true}, SHIFT(3159), + [5103] = {.count = 1, .reusable = false}, SHIFT(3161), + [5105] = {.count = 1, .reusable = true}, SHIFT(3162), + [5107] = {.count = 1, .reusable = false}, SHIFT(3163), + [5109] = {.count = 1, .reusable = false}, SHIFT(3168), + [5111] = {.count = 1, .reusable = true}, SHIFT(3171), + [5113] = {.count = 1, .reusable = false}, SHIFT(3175), + [5115] = {.count = 1, .reusable = true}, SHIFT(3178), + [5117] = {.count = 1, .reusable = false}, SHIFT(3181), + [5119] = {.count = 1, .reusable = false}, SHIFT(3171), + [5121] = {.count = 1, .reusable = true}, SHIFT(3186), + [5123] = {.count = 1, .reusable = false}, SHIFT(3189), + [5125] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause_absurd, 2), + [5127] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1852), + [5130] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1856), + [5133] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1854), + [5136] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1857), + [5139] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1858), + [5142] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1861), + [5145] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1863), + [5148] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1862), + [5151] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3190), + [5154] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1866), + [5157] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1854), + [5160] = {.count = 1, .reusable = true}, REDUCE(sym_lambda, 4), + [5162] = {.count = 1, .reusable = false}, SHIFT(3191), + [5164] = {.count = 1, .reusable = true}, SHIFT(3197), + [5166] = {.count = 1, .reusable = false}, SHIFT(3202), + [5168] = {.count = 1, .reusable = false}, SHIFT(3197), + [5170] = {.count = 1, .reusable = true}, SHIFT(3206), + [5172] = {.count = 1, .reusable = false}, SHIFT(3208), + [5174] = {.count = 1, .reusable = true}, SHIFT(3211), + [5176] = {.count = 1, .reusable = true}, SHIFT(3213), + [5178] = {.count = 1, .reusable = true}, SHIFT(3214), + [5180] = {.count = 1, .reusable = true}, SHIFT(3215), + [5182] = {.count = 1, .reusable = false}, SHIFT(3217), + [5184] = {.count = 1, .reusable = true}, SHIFT(3218), + [5186] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(839), + [5189] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(840), + [5192] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(841), + [5195] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(842), + [5198] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(843), + [5201] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(844), + [5204] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(845), + [5207] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(846), + [5210] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(847), + [5213] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(848), + [5216] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(841), + [5219] = {.count = 1, .reusable = true}, SHIFT(3219), + [5221] = {.count = 1, .reusable = true}, SHIFT(3221), + [5223] = {.count = 1, .reusable = true}, SHIFT(3223), + [5225] = {.count = 1, .reusable = true}, SHIFT(3224), + [5227] = {.count = 1, .reusable = false}, SHIFT(3226), + [5229] = {.count = 1, .reusable = true}, SHIFT(3227), + [5231] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(889), + [5234] = {.count = 1, .reusable = true}, SHIFT(3228), + [5236] = {.count = 1, .reusable = true}, SHIFT(3230), + [5238] = {.count = 1, .reusable = false}, SHIFT(3232), + [5240] = {.count = 1, .reusable = false}, SHIFT(3233), + [5242] = {.count = 1, .reusable = true}, SHIFT(3234), + [5244] = {.count = 1, .reusable = false}, SHIFT(3235), + [5246] = {.count = 1, .reusable = false}, SHIFT(3236), + [5248] = {.count = 1, .reusable = true}, SHIFT(3237), + [5250] = {.count = 1, .reusable = false}, SHIFT(3238), + [5252] = {.count = 1, .reusable = true}, SHIFT(3236), + [5254] = {.count = 1, .reusable = false}, SHIFT(3239), + [5256] = {.count = 1, .reusable = false}, SHIFT(3244), + [5258] = {.count = 1, .reusable = true}, SHIFT(3245), + [5260] = {.count = 1, .reusable = false}, SHIFT(3246), + [5262] = {.count = 1, .reusable = false}, SHIFT(3247), + [5264] = {.count = 1, .reusable = true}, SHIFT(3248), + [5266] = {.count = 1, .reusable = false}, SHIFT(3249), + [5268] = {.count = 1, .reusable = false}, SHIFT(3250), + [5270] = {.count = 1, .reusable = false}, SHIFT(3251), + [5272] = {.count = 1, .reusable = false}, SHIFT(3252), + [5274] = {.count = 1, .reusable = false}, SHIFT(3253), + [5276] = {.count = 1, .reusable = true}, SHIFT(3246), + [5278] = {.count = 1, .reusable = true}, SHIFT(3257), + [5280] = {.count = 1, .reusable = false}, SHIFT(3260), + [5282] = {.count = 1, .reusable = false}, SHIFT(3230), + [5284] = {.count = 1, .reusable = true}, SHIFT(3265), + [5286] = {.count = 1, .reusable = false}, SHIFT(3266), + [5288] = {.count = 1, .reusable = false}, SHIFT(3267), + [5290] = {.count = 1, .reusable = false}, SHIFT(3268), + [5292] = {.count = 1, .reusable = false}, SHIFT(3269), + [5294] = {.count = 1, .reusable = true}, SHIFT(3270), + [5296] = {.count = 1, .reusable = true}, SHIFT(3273), + [5298] = {.count = 1, .reusable = false}, SHIFT(3276), + [5300] = {.count = 1, .reusable = true}, SHIFT(3274), + [5302] = {.count = 1, .reusable = false}, SHIFT(3275), + [5304] = {.count = 1, .reusable = false}, SHIFT(3277), + [5306] = {.count = 1, .reusable = true}, SHIFT(3278), + [5308] = {.count = 1, .reusable = false}, SHIFT(3279), + [5310] = {.count = 1, .reusable = false}, SHIFT(3280), + [5312] = {.count = 1, .reusable = true}, SHIFT(3281), + [5314] = {.count = 1, .reusable = false}, SHIFT(3282), + [5316] = {.count = 1, .reusable = true}, SHIFT(3283), + [5318] = {.count = 1, .reusable = false}, SHIFT(3284), + [5320] = {.count = 1, .reusable = false}, SHIFT(3285), + [5322] = {.count = 1, .reusable = false}, SHIFT(3286), + [5324] = {.count = 1, .reusable = false}, SHIFT(3287), + [5326] = {.count = 1, .reusable = false}, SHIFT(3288), + [5328] = {.count = 1, .reusable = true}, SHIFT(3280), + [5330] = {.count = 1, .reusable = true}, REDUCE(sym_data, 4, .alias_sequence_id = 7), + [5332] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(908), + [5335] = {.count = 1, .reusable = true}, SHIFT(3294), + [5337] = {.count = 1, .reusable = true}, SHIFT(3298), + [5339] = {.count = 1, .reusable = true}, SHIFT(3299), + [5341] = {.count = 1, .reusable = true}, SHIFT(3300), + [5343] = {.count = 1, .reusable = true}, SHIFT(3301), + [5345] = {.count = 1, .reusable = true}, SHIFT(3302), + [5347] = {.count = 1, .reusable = true}, SHIFT(3305), + [5349] = {.count = 1, .reusable = true}, SHIFT(3306), + [5351] = {.count = 1, .reusable = false}, SHIFT(3308), + [5353] = {.count = 1, .reusable = true}, SHIFT(3309), + [5355] = {.count = 1, .reusable = true}, REDUCE(sym_data_signature_only, 4, .alias_sequence_id = 7), + [5357] = {.count = 1, .reusable = true}, SHIFT(3312), + [5359] = {.count = 1, .reusable = true}, SHIFT(3313), + [5361] = {.count = 1, .reusable = true}, SHIFT(3314), + [5363] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 1), + [5365] = {.count = 1, .reusable = true}, SHIFT(3315), + [5367] = {.count = 1, .reusable = false}, REDUCE(sym_module_application, 1), + [5369] = {.count = 1, .reusable = false}, SHIFT(3316), + [5371] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 4), + [5373] = {.count = 1, .reusable = true}, SHIFT(3323), + [5375] = {.count = 1, .reusable = true}, SHIFT(3324), + [5377] = {.count = 1, .reusable = true}, SHIFT(3325), + [5379] = {.count = 1, .reusable = true}, REDUCE(sym_module, 4, .alias_sequence_id = 8), + [5381] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(953), + [5384] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(954), + [5387] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(955), + [5390] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(957), + [5393] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(958), + [5396] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(959), + [5399] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(957), + [5402] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(961), + [5405] = {.count = 1, .reusable = true}, SHIFT(3327), + [5407] = {.count = 1, .reusable = true}, SHIFT(3328), + [5409] = {.count = 1, .reusable = true}, SHIFT(3329), + [5411] = {.count = 1, .reusable = true}, SHIFT(3334), + [5413] = {.count = 1, .reusable = true}, SHIFT(3335), + [5415] = {.count = 1, .reusable = true}, SHIFT(3336), + [5417] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(273), + [5420] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(965), + [5423] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(966), + [5426] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(967), + [5429] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(968), + [5432] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(969), + [5435] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(967), + [5438] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(970), + [5441] = {.count = 1, .reusable = true}, SHIFT(3337), + [5443] = {.count = 1, .reusable = true}, SHIFT(3339), + [5445] = {.count = 1, .reusable = true}, SHIFT(3340), + [5447] = {.count = 1, .reusable = true}, SHIFT(3344), + [5449] = {.count = 1, .reusable = false}, SHIFT(3346), + [5451] = {.count = 1, .reusable = true}, SHIFT(3345), + [5453] = {.count = 1, .reusable = false}, SHIFT(3343), + [5455] = {.count = 1, .reusable = false}, SHIFT(3351), + [5457] = {.count = 1, .reusable = true}, SHIFT(3352), + [5459] = {.count = 1, .reusable = true}, SHIFT(3353), + [5461] = {.count = 1, .reusable = false}, SHIFT(3358), + [5463] = {.count = 1, .reusable = false}, SHIFT(3353), + [5465] = {.count = 1, .reusable = true}, SHIFT(3361), + [5467] = {.count = 1, .reusable = true}, SHIFT(3364), + [5469] = {.count = 1, .reusable = true}, SHIFT(3367), + [5471] = {.count = 1, .reusable = true}, SHIFT(3369), + [5473] = {.count = 1, .reusable = false}, SHIFT(3371), + [5475] = {.count = 1, .reusable = true}, SHIFT(3372), + [5477] = {.count = 1, .reusable = true}, SHIFT(3373), + [5479] = {.count = 1, .reusable = false}, SHIFT(3377), + [5481] = {.count = 1, .reusable = false}, SHIFT(3373), + [5483] = {.count = 1, .reusable = true}, SHIFT(3381), + [5485] = {.count = 1, .reusable = true}, SHIFT(3384), + [5487] = {.count = 1, .reusable = true}, SHIFT(3388), + [5489] = {.count = 1, .reusable = false}, SHIFT(3390), + [5491] = {.count = 1, .reusable = true}, SHIFT(3389), + [5493] = {.count = 1, .reusable = false}, SHIFT(3387), + [5495] = {.count = 1, .reusable = false}, SHIFT(3395), + [5497] = {.count = 1, .reusable = true}, SHIFT(3396), + [5499] = {.count = 1, .reusable = true}, SHIFT(3397), + [5501] = {.count = 1, .reusable = true}, SHIFT(3398), + [5503] = {.count = 1, .reusable = false}, SHIFT(3403), + [5505] = {.count = 1, .reusable = false}, SHIFT(3398), + [5507] = {.count = 1, .reusable = true}, SHIFT(3406), + [5509] = {.count = 1, .reusable = true}, SHIFT(3409), + [5511] = {.count = 1, .reusable = true}, SHIFT(3412), + [5513] = {.count = 1, .reusable = true}, SHIFT(3414), + [5515] = {.count = 1, .reusable = false}, SHIFT(3416), + [5517] = {.count = 1, .reusable = true}, SHIFT(3417), + [5519] = {.count = 1, .reusable = false}, SHIFT(3418), + [5521] = {.count = 1, .reusable = true}, SHIFT(3419), + [5523] = {.count = 1, .reusable = false}, SHIFT(3420), + [5525] = {.count = 1, .reusable = false}, SHIFT(3421), + [5527] = {.count = 1, .reusable = false}, SHIFT(3422), + [5529] = {.count = 1, .reusable = true}, SHIFT(3423), + [5531] = {.count = 1, .reusable = false}, SHIFT(3424), + [5533] = {.count = 1, .reusable = false}, SHIFT(3425), + [5535] = {.count = 1, .reusable = false}, SHIFT(3426), + [5537] = {.count = 1, .reusable = false}, SHIFT(3427), + [5539] = {.count = 1, .reusable = true}, SHIFT(3420), + [5541] = {.count = 1, .reusable = true}, SHIFT(3433), + [5543] = {.count = 1, .reusable = true}, SHIFT(3434), + [5545] = {.count = 1, .reusable = true}, SHIFT(3438), + [5547] = {.count = 1, .reusable = false}, SHIFT(3440), + [5549] = {.count = 1, .reusable = true}, SHIFT(3439), + [5551] = {.count = 1, .reusable = false}, SHIFT(3437), + [5553] = {.count = 1, .reusable = false}, SHIFT(3445), + [5555] = {.count = 1, .reusable = true}, SHIFT(3446), + [5557] = {.count = 1, .reusable = true}, SHIFT(3447), + [5559] = {.count = 1, .reusable = false}, SHIFT(3452), + [5561] = {.count = 1, .reusable = false}, SHIFT(3447), + [5563] = {.count = 1, .reusable = true}, SHIFT(3455), + [5565] = {.count = 1, .reusable = true}, SHIFT(3458), + [5567] = {.count = 1, .reusable = true}, SHIFT(3461), + [5569] = {.count = 1, .reusable = true}, SHIFT(3463), + [5571] = {.count = 1, .reusable = false}, SHIFT(3465), + [5573] = {.count = 1, .reusable = true}, SHIFT(3466), + [5575] = {.count = 1, .reusable = true}, SHIFT(3467), + [5577] = {.count = 1, .reusable = false}, SHIFT(3471), + [5579] = {.count = 1, .reusable = false}, SHIFT(3467), + [5581] = {.count = 1, .reusable = true}, SHIFT(3475), + [5583] = {.count = 1, .reusable = true}, SHIFT(3477), + [5585] = {.count = 1, .reusable = true}, SHIFT(3481), + [5587] = {.count = 1, .reusable = false}, SHIFT(3483), + [5589] = {.count = 1, .reusable = true}, SHIFT(3482), + [5591] = {.count = 1, .reusable = false}, SHIFT(3480), + [5593] = {.count = 1, .reusable = false}, SHIFT(3488), + [5595] = {.count = 1, .reusable = true}, SHIFT(3489), + [5597] = {.count = 1, .reusable = true}, SHIFT(3490), + [5599] = {.count = 1, .reusable = true}, SHIFT(3491), + [5601] = {.count = 1, .reusable = false}, SHIFT(3496), + [5603] = {.count = 1, .reusable = false}, SHIFT(3491), + [5605] = {.count = 1, .reusable = true}, SHIFT(3499), + [5607] = {.count = 1, .reusable = true}, SHIFT(3502), + [5609] = {.count = 1, .reusable = true}, SHIFT(3505), + [5611] = {.count = 1, .reusable = true}, SHIFT(3507), + [5613] = {.count = 1, .reusable = false}, SHIFT(3509), + [5615] = {.count = 1, .reusable = true}, SHIFT(3510), + [5617] = {.count = 1, .reusable = false}, SHIFT(3511), + [5619] = {.count = 1, .reusable = true}, SHIFT(3512), + [5621] = {.count = 1, .reusable = false}, SHIFT(3513), + [5623] = {.count = 1, .reusable = false}, SHIFT(3514), + [5625] = {.count = 1, .reusable = false}, SHIFT(3515), + [5627] = {.count = 1, .reusable = true}, SHIFT(3516), + [5629] = {.count = 1, .reusable = false}, SHIFT(3517), + [5631] = {.count = 1, .reusable = false}, SHIFT(3518), + [5633] = {.count = 1, .reusable = false}, SHIFT(3519), + [5635] = {.count = 1, .reusable = false}, SHIFT(3520), + [5637] = {.count = 1, .reusable = true}, SHIFT(3513), + [5639] = {.count = 1, .reusable = true}, SHIFT(3526), + [5641] = {.count = 1, .reusable = true}, SHIFT(3527), + [5643] = {.count = 1, .reusable = true}, SHIFT(3531), + [5645] = {.count = 1, .reusable = false}, SHIFT(3533), + [5647] = {.count = 1, .reusable = true}, SHIFT(3532), + [5649] = {.count = 1, .reusable = false}, SHIFT(3530), + [5651] = {.count = 1, .reusable = false}, SHIFT(3538), + [5653] = {.count = 1, .reusable = true}, SHIFT(3539), + [5655] = {.count = 1, .reusable = true}, SHIFT(3540), + [5657] = {.count = 1, .reusable = false}, SHIFT(3545), + [5659] = {.count = 1, .reusable = false}, SHIFT(3540), + [5661] = {.count = 1, .reusable = true}, SHIFT(3548), + [5663] = {.count = 1, .reusable = true}, SHIFT(3551), + [5665] = {.count = 1, .reusable = true}, SHIFT(3554), + [5667] = {.count = 1, .reusable = true}, SHIFT(3556), + [5669] = {.count = 1, .reusable = false}, SHIFT(3558), + [5671] = {.count = 1, .reusable = true}, SHIFT(3559), + [5673] = {.count = 1, .reusable = true}, SHIFT(3560), + [5675] = {.count = 1, .reusable = false}, SHIFT(3564), + [5677] = {.count = 1, .reusable = false}, SHIFT(3560), + [5679] = {.count = 1, .reusable = true}, SHIFT(3568), + [5681] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1096), + [5684] = {.count = 1, .reusable = true}, SHIFT(3572), + [5686] = {.count = 1, .reusable = true}, SHIFT(3573), + [5688] = {.count = 1, .reusable = true}, SHIFT(3577), + [5690] = {.count = 1, .reusable = false}, SHIFT(3579), + [5692] = {.count = 1, .reusable = true}, SHIFT(3578), + [5694] = {.count = 1, .reusable = false}, SHIFT(3576), + [5696] = {.count = 1, .reusable = false}, SHIFT(3584), + [5698] = {.count = 1, .reusable = true}, SHIFT(3585), + [5700] = {.count = 1, .reusable = true}, SHIFT(3586), + [5702] = {.count = 1, .reusable = false}, SHIFT(3591), + [5704] = {.count = 1, .reusable = false}, SHIFT(3586), + [5706] = {.count = 1, .reusable = true}, SHIFT(3594), + [5708] = {.count = 1, .reusable = true}, SHIFT(3597), + [5710] = {.count = 1, .reusable = true}, SHIFT(3600), + [5712] = {.count = 1, .reusable = true}, SHIFT(3602), + [5714] = {.count = 1, .reusable = false}, SHIFT(3604), + [5716] = {.count = 1, .reusable = true}, SHIFT(3605), + [5718] = {.count = 1, .reusable = true}, SHIFT(3606), + [5720] = {.count = 1, .reusable = false}, SHIFT(3610), + [5722] = {.count = 1, .reusable = false}, SHIFT(3606), + [5724] = {.count = 1, .reusable = true}, SHIFT(3614), + [5726] = {.count = 1, .reusable = true}, SHIFT(3616), + [5728] = {.count = 1, .reusable = true}, SHIFT(3617), + [5730] = {.count = 1, .reusable = true}, SHIFT(3618), + [5732] = {.count = 1, .reusable = true}, SHIFT(3619), + [5734] = {.count = 1, .reusable = true}, SHIFT(3620), + [5736] = {.count = 1, .reusable = true}, REDUCE(sym_pattern, 5), + [5738] = {.count = 1, .reusable = true}, REDUCE(sym_simple_type_sig, 3), + [5740] = {.count = 1, .reusable = true}, SHIFT(3623), + [5742] = {.count = 1, .reusable = true}, SHIFT(3624), + [5744] = {.count = 1, .reusable = true}, SHIFT(3625), + [5746] = {.count = 1, .reusable = true}, SHIFT(3630), + [5748] = {.count = 1, .reusable = true}, SHIFT(3631), + [5750] = {.count = 1, .reusable = true}, SHIFT(3632), + [5752] = {.count = 1, .reusable = true}, SHIFT(3634), + [5754] = {.count = 1, .reusable = true}, SHIFT(3635), + [5756] = {.count = 1, .reusable = false}, SHIFT(3637), + [5758] = {.count = 1, .reusable = true}, SHIFT(3638), + [5760] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1154), + [5763] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1155), + [5766] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1156), + [5769] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1157), + [5772] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1158), + [5775] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1159), + [5778] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1160), + [5781] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1161), + [5784] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1162), + [5787] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1163), + [5790] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1156), + [5793] = {.count = 1, .reusable = false}, SHIFT(3639), + [5795] = {.count = 1, .reusable = false}, SHIFT(3640), [5797] = {.count = 1, .reusable = true}, SHIFT(3641), - [5799] = {.count = 1, .reusable = true}, SHIFT(3643), - [5801] = {.count = 1, .reusable = true}, SHIFT(3645), - [5803] = {.count = 1, .reusable = true}, SHIFT(3646), - [5805] = {.count = 1, .reusable = false}, SHIFT(3648), - [5807] = {.count = 1, .reusable = true}, SHIFT(3649), - [5809] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1216), - [5812] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1217), - [5815] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1218), - [5818] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1219), - [5821] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1220), - [5824] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1221), - [5827] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1222), - [5830] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1223), - [5833] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1224), - [5836] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1225), - [5839] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1218), - [5842] = {.count = 1, .reusable = false}, SHIFT(3650), - [5844] = {.count = 1, .reusable = false}, SHIFT(3651), - [5846] = {.count = 1, .reusable = true}, SHIFT(3652), - [5848] = {.count = 1, .reusable = false}, SHIFT(3653), - [5850] = {.count = 1, .reusable = false}, SHIFT(3654), - [5852] = {.count = 1, .reusable = false}, SHIFT(3655), - [5854] = {.count = 1, .reusable = false}, SHIFT(3656), - [5856] = {.count = 1, .reusable = true}, SHIFT(3657), - [5858] = {.count = 1, .reusable = false}, SHIFT(3658), - [5860] = {.count = 1, .reusable = true}, SHIFT(3651), - [5862] = {.count = 1, .reusable = false}, SHIFT(3659), - [5864] = {.count = 1, .reusable = true}, SHIFT(3663), - [5866] = {.count = 1, .reusable = true}, SHIFT(3664), - [5868] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1247), - [5871] = {.count = 1, .reusable = false}, SHIFT(3666), - [5873] = {.count = 1, .reusable = true}, SHIFT(3668), - [5875] = {.count = 1, .reusable = true}, SHIFT(3669), - [5877] = {.count = 1, .reusable = true}, SHIFT(3671), - [5879] = {.count = 1, .reusable = true}, SHIFT(3675), - [5881] = {.count = 1, .reusable = true}, SHIFT(3678), - [5883] = {.count = 1, .reusable = true}, SHIFT(3683), - [5885] = {.count = 1, .reusable = false}, SHIFT(3685), - [5887] = {.count = 1, .reusable = true}, SHIFT(3684), - [5889] = {.count = 1, .reusable = false}, SHIFT(3682), - [5891] = {.count = 1, .reusable = false}, SHIFT(3690), - [5893] = {.count = 1, .reusable = true}, SHIFT(3691), - [5895] = {.count = 1, .reusable = true}, SHIFT(3692), - [5897] = {.count = 1, .reusable = true}, SHIFT(3693), - [5899] = {.count = 1, .reusable = false}, SHIFT(3695), - [5901] = {.count = 1, .reusable = true}, SHIFT(3696), - [5903] = {.count = 1, .reusable = true}, SHIFT(3697), - [5905] = {.count = 1, .reusable = false}, SHIFT(3700), - [5907] = {.count = 1, .reusable = false}, SHIFT(3697), - [5909] = {.count = 1, .reusable = true}, SHIFT(3704), - [5911] = {.count = 1, .reusable = true}, SHIFT(3708), - [5913] = {.count = 1, .reusable = true}, SHIFT(3709), - [5915] = {.count = 1, .reusable = false}, SHIFT(3712), - [5917] = {.count = 1, .reusable = false}, SHIFT(3709), - [5919] = {.count = 1, .reusable = true}, SHIFT(3716), - [5921] = {.count = 1, .reusable = true}, SHIFT(3719), - [5923] = {.count = 1, .reusable = true}, SHIFT(3720), - [5925] = {.count = 1, .reusable = true}, SHIFT(3721), - [5927] = {.count = 1, .reusable = true}, SHIFT(3722), - [5929] = {.count = 1, .reusable = true}, SHIFT(3723), - [5931] = {.count = 1, .reusable = true}, REDUCE(sym_pattern, 5), - [5933] = {.count = 1, .reusable = true}, REDUCE(sym_simple_type_sig, 3), - [5935] = {.count = 1, .reusable = true}, SHIFT(3726), - [5937] = {.count = 1, .reusable = true}, SHIFT(3728), - [5939] = {.count = 1, .reusable = true}, SHIFT(3729), - [5941] = {.count = 1, .reusable = true}, SHIFT(3730), - [5943] = {.count = 1, .reusable = true}, SHIFT(3735), - [5945] = {.count = 1, .reusable = true}, SHIFT(3736), - [5947] = {.count = 1, .reusable = true}, SHIFT(3737), - [5949] = {.count = 1, .reusable = true}, SHIFT(3739), - [5951] = {.count = 1, .reusable = true}, SHIFT(3741), - [5953] = {.count = 1, .reusable = true}, SHIFT(3742), - [5955] = {.count = 1, .reusable = false}, SHIFT(3744), - [5957] = {.count = 1, .reusable = true}, SHIFT(3745), - [5959] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1347), - [5962] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1348), - [5965] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1349), - [5968] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1350), - [5971] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1351), - [5974] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1352), - [5977] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1353), - [5980] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1354), - [5983] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1355), - [5986] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1356), - [5989] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1349), - [5992] = {.count = 1, .reusable = true}, REDUCE(sym__do_stmt_where, 3, .alias_sequence_id = 9), - [5994] = {.count = 1, .reusable = true}, SHIFT(3746), - [5996] = {.count = 1, .reusable = true}, REDUCE(sym_field_assignment, 3, .alias_sequence_id = 6), - [5998] = {.count = 1, .reusable = true}, REDUCE(aux_sym__record_assignments1_repeat1, 2), - [6000] = {.count = 2, .reusable = true}, REDUCE(aux_sym__record_assignments1_repeat1, 2), SHIFT_REPEAT(1373), - [6003] = {.count = 1, .reusable = true}, SHIFT(3747), - [6005] = {.count = 1, .reusable = true}, SHIFT(3748), - [6007] = {.count = 1, .reusable = true}, SHIFT(3750), - [6009] = {.count = 1, .reusable = false}, SHIFT(3752), - [6011] = {.count = 1, .reusable = true}, SHIFT(3754), - [6013] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1381), - [6016] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1387), - [6019] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1379), - [6022] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 3), - [6024] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1375), - [6027] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1376), - [6030] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1377), - [6033] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1378), - [6036] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1380), - [6039] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1382), - [6042] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1383), - [6045] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1384), - [6048] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1385), - [6051] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1377), - [6054] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1386), - [6057] = {.count = 1, .reusable = true}, SHIFT(3755), - [6059] = {.count = 1, .reusable = true}, SHIFT(3756), - [6061] = {.count = 1, .reusable = false}, SHIFT(3758), - [6063] = {.count = 1, .reusable = true}, SHIFT(3759), - [6065] = {.count = 1, .reusable = true}, REDUCE(sym_record, 5), - [6067] = {.count = 1, .reusable = true}, SHIFT(3763), - [6069] = {.count = 1, .reusable = true}, SHIFT(3764), - [6071] = {.count = 1, .reusable = true}, SHIFT(3765), - [6073] = {.count = 1, .reusable = true}, SHIFT(3766), - [6075] = {.count = 1, .reusable = true}, SHIFT(3767), - [6077] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 5), - [6079] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 5), - [6081] = {.count = 1, .reusable = true}, REDUCE(sym__field_assignments1, 2), - [6083] = {.count = 1, .reusable = true}, REDUCE(sym_record_induction, 1), - [6085] = {.count = 1, .reusable = true}, REDUCE(sym_record_eta, 1), - [6087] = {.count = 1, .reusable = true}, SHIFT(3772), - [6089] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 2), - [6091] = {.count = 1, .reusable = false}, SHIFT(3773), - [6093] = {.count = 1, .reusable = true}, SHIFT(3774), - [6095] = {.count = 1, .reusable = true}, SHIFT(3775), - [6097] = {.count = 1, .reusable = true}, REDUCE(sym_record_signature_only, 5), - [6099] = {.count = 1, .reusable = true}, SHIFT(3778), - [6101] = {.count = 1, .reusable = true}, SHIFT(3779), - [6103] = {.count = 1, .reusable = true}, SHIFT(3782), - [6105] = {.count = 1, .reusable = true}, SHIFT(3783), - [6107] = {.count = 1, .reusable = true}, SHIFT(3784), - [6109] = {.count = 1, .reusable = true}, SHIFT(3785), - [6111] = {.count = 1, .reusable = true}, SHIFT(3786), - [6113] = {.count = 1, .reusable = true}, SHIFT(3789), - [6115] = {.count = 1, .reusable = true}, SHIFT(3790), - [6117] = {.count = 1, .reusable = true}, SHIFT(3792), - [6119] = {.count = 1, .reusable = true}, SHIFT(3794), - [6121] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 3), - [6123] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 3), - [6125] = {.count = 1, .reusable = true}, SHIFT(3796), - [6127] = {.count = 1, .reusable = true}, REDUCE(sym_syntax, 5), - [6129] = {.count = 1, .reusable = false}, SHIFT(3799), - [6131] = {.count = 1, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), - [6133] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), - [6135] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 3), - [6137] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 3), - [6139] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1480), - [6142] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1480), - [6145] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1481), - [6148] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1484), - [6151] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1484), - [6154] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1485), - [6157] = {.count = 1, .reusable = true}, SHIFT(3801), - [6159] = {.count = 1, .reusable = false}, SHIFT(3801), - [6161] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig, 3), - [6163] = {.count = 1, .reusable = true}, SHIFT(3805), - [6165] = {.count = 1, .reusable = true}, SHIFT(3807), - [6167] = {.count = 1, .reusable = false}, SHIFT(3810), - [6169] = {.count = 1, .reusable = true}, SHIFT(3811), - [6171] = {.count = 1, .reusable = false}, SHIFT(3812), - [6173] = {.count = 1, .reusable = false}, SHIFT(3813), - [6175] = {.count = 1, .reusable = true}, SHIFT(3814), - [6177] = {.count = 1, .reusable = false}, SHIFT(3815), - [6179] = {.count = 1, .reusable = true}, SHIFT(3813), - [6181] = {.count = 1, .reusable = false}, SHIFT(3816), - [6183] = {.count = 1, .reusable = false}, SHIFT(3821), - [6185] = {.count = 1, .reusable = false}, SHIFT(3822), - [6187] = {.count = 1, .reusable = false}, SHIFT(3805), - [6189] = {.count = 1, .reusable = true}, SHIFT(3825), - [6191] = {.count = 1, .reusable = false}, SHIFT(3826), - [6193] = {.count = 1, .reusable = false}, SHIFT(3827), - [6195] = {.count = 1, .reusable = false}, SHIFT(3828), - [6197] = {.count = 1, .reusable = false}, SHIFT(3829), - [6199] = {.count = 1, .reusable = true}, SHIFT(3831), - [6201] = {.count = 1, .reusable = false}, SHIFT(3833), - [6203] = {.count = 1, .reusable = true}, SHIFT(3834), - [6205] = {.count = 1, .reusable = false}, SHIFT(3835), - [6207] = {.count = 1, .reusable = false}, SHIFT(3836), - [6209] = {.count = 1, .reusable = false}, SHIFT(3837), - [6211] = {.count = 1, .reusable = false}, SHIFT(3838), - [6213] = {.count = 1, .reusable = false}, SHIFT(3839), - [6215] = {.count = 1, .reusable = true}, SHIFT(3840), - [6217] = {.count = 1, .reusable = false}, SHIFT(3841), - [6219] = {.count = 1, .reusable = false}, SHIFT(3842), - [6221] = {.count = 1, .reusable = true}, SHIFT(3835), - [6223] = {.count = 1, .reusable = true}, SHIFT(3848), - [6225] = {.count = 1, .reusable = false}, SHIFT(3849), - [6227] = {.count = 1, .reusable = false}, SHIFT(3850), - [6229] = {.count = 1, .reusable = true}, SHIFT(3851), - [6231] = {.count = 1, .reusable = false}, SHIFT(3852), - [6233] = {.count = 1, .reusable = false}, SHIFT(3853), - [6235] = {.count = 1, .reusable = false}, SHIFT(3854), - [6237] = {.count = 1, .reusable = false}, SHIFT(3855), - [6239] = {.count = 1, .reusable = true}, SHIFT(3856), - [6241] = {.count = 1, .reusable = false}, SHIFT(3857), - [6243] = {.count = 1, .reusable = true}, SHIFT(3850), - [6245] = {.count = 1, .reusable = false}, SHIFT(3858), - [6247] = {.count = 1, .reusable = false}, SHIFT(3864), - [6249] = {.count = 1, .reusable = true}, SHIFT(3862), - [6251] = {.count = 1, .reusable = false}, SHIFT(3863), - [6253] = {.count = 1, .reusable = false}, SHIFT(3865), - [6255] = {.count = 1, .reusable = true}, SHIFT(3866), - [6257] = {.count = 1, .reusable = true}, SHIFT(3868), - [6259] = {.count = 1, .reusable = false}, SHIFT(3871), - [6261] = {.count = 1, .reusable = true}, SHIFT(3872), - [6263] = {.count = 1, .reusable = false}, SHIFT(3873), - [6265] = {.count = 1, .reusable = false}, SHIFT(3874), - [6267] = {.count = 1, .reusable = true}, SHIFT(3875), - [6269] = {.count = 1, .reusable = false}, SHIFT(3876), - [6271] = {.count = 1, .reusable = true}, SHIFT(3874), - [6273] = {.count = 1, .reusable = false}, SHIFT(3877), - [6275] = {.count = 1, .reusable = false}, SHIFT(3882), - [6277] = {.count = 1, .reusable = false}, SHIFT(3883), - [6279] = {.count = 1, .reusable = false}, SHIFT(3866), - [6281] = {.count = 1, .reusable = true}, SHIFT(3886), - [6283] = {.count = 1, .reusable = false}, SHIFT(3887), - [6285] = {.count = 1, .reusable = false}, SHIFT(3888), - [6287] = {.count = 1, .reusable = false}, SHIFT(3889), - [6289] = {.count = 1, .reusable = false}, SHIFT(3890), - [6291] = {.count = 1, .reusable = true}, SHIFT(3892), - [6293] = {.count = 1, .reusable = false}, SHIFT(3894), - [6295] = {.count = 1, .reusable = true}, SHIFT(3895), - [6297] = {.count = 1, .reusable = false}, SHIFT(3896), - [6299] = {.count = 1, .reusable = false}, SHIFT(3897), - [6301] = {.count = 1, .reusable = false}, SHIFT(3898), - [6303] = {.count = 1, .reusable = false}, SHIFT(3899), - [6305] = {.count = 1, .reusable = false}, SHIFT(3900), - [6307] = {.count = 1, .reusable = true}, SHIFT(3901), - [6309] = {.count = 1, .reusable = false}, SHIFT(3902), - [6311] = {.count = 1, .reusable = false}, SHIFT(3903), - [6313] = {.count = 1, .reusable = true}, SHIFT(3896), - [6315] = {.count = 1, .reusable = true}, SHIFT(3909), - [6317] = {.count = 1, .reusable = false}, SHIFT(3910), - [6319] = {.count = 1, .reusable = false}, SHIFT(3911), - [6321] = {.count = 1, .reusable = true}, SHIFT(3912), - [6323] = {.count = 1, .reusable = false}, SHIFT(3913), - [6325] = {.count = 1, .reusable = false}, SHIFT(3914), - [6327] = {.count = 1, .reusable = false}, SHIFT(3915), - [6329] = {.count = 1, .reusable = false}, SHIFT(3916), - [6331] = {.count = 1, .reusable = true}, SHIFT(3917), - [6333] = {.count = 1, .reusable = false}, SHIFT(3918), - [6335] = {.count = 1, .reusable = true}, SHIFT(3911), - [6337] = {.count = 1, .reusable = false}, SHIFT(3919), - [6339] = {.count = 1, .reusable = false}, SHIFT(3925), - [6341] = {.count = 1, .reusable = true}, SHIFT(3923), - [6343] = {.count = 1, .reusable = false}, SHIFT(3924), - [6345] = {.count = 1, .reusable = false}, SHIFT(3926), - [6347] = {.count = 1, .reusable = true}, SHIFT(3927), - [6349] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 5), - [6351] = {.count = 1, .reusable = false}, SHIFT(3929), - [6353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(1511), - [6356] = {.count = 1, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), - [6358] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(1512), - [6361] = {.count = 1, .reusable = true}, SHIFT(3930), - [6363] = {.count = 1, .reusable = true}, SHIFT(3933), - [6365] = {.count = 1, .reusable = true}, SHIFT(3934), - [6367] = {.count = 1, .reusable = true}, SHIFT(3935), - [6369] = {.count = 1, .reusable = true}, SHIFT(3936), - [6371] = {.count = 1, .reusable = true}, SHIFT(3937), - [6373] = {.count = 1, .reusable = false}, REDUCE(sym_open, 4), - [6375] = {.count = 1, .reusable = true}, SHIFT(3943), - [6377] = {.count = 1, .reusable = true}, SHIFT(3944), - [6379] = {.count = 1, .reusable = true}, SHIFT(3945), - [6381] = {.count = 1, .reusable = false}, SHIFT(3947), - [6383] = {.count = 1, .reusable = true}, SHIFT(3948), - [6385] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1532), - [6388] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1533), - [6391] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1534), - [6394] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1535), - [6397] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1537), - [6400] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1538), - [6403] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1539), - [6406] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1540), - [6409] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1541), - [6412] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1534), - [6415] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1542), - [6418] = {.count = 1, .reusable = true}, SHIFT(3949), - [6420] = {.count = 1, .reusable = true}, SHIFT(3950), - [6422] = {.count = 1, .reusable = false}, SHIFT(3952), - [6424] = {.count = 1, .reusable = true}, SHIFT(3953), - [6426] = {.count = 1, .reusable = true}, SHIFT(3954), - [6428] = {.count = 1, .reusable = true}, SHIFT(3956), - [6430] = {.count = 1, .reusable = false}, SHIFT(3957), - [6432] = {.count = 1, .reusable = true}, SHIFT(3961), - [6434] = {.count = 1, .reusable = true}, SHIFT(3966), - [6436] = {.count = 1, .reusable = false}, SHIFT(3968), - [6438] = {.count = 1, .reusable = true}, SHIFT(3967), - [6440] = {.count = 1, .reusable = false}, SHIFT(3965), - [6442] = {.count = 1, .reusable = false}, SHIFT(3973), - [6444] = {.count = 1, .reusable = true}, SHIFT(3974), - [6446] = {.count = 1, .reusable = true}, SHIFT(3975), - [6448] = {.count = 1, .reusable = true}, SHIFT(3976), - [6450] = {.count = 1, .reusable = true}, SHIFT(3977), - [6452] = {.count = 1, .reusable = false}, SHIFT(3979), - [6454] = {.count = 1, .reusable = true}, SHIFT(3980), - [6456] = {.count = 1, .reusable = true}, SHIFT(3981), - [6458] = {.count = 1, .reusable = false}, SHIFT(3984), - [6460] = {.count = 1, .reusable = false}, SHIFT(3981), - [6462] = {.count = 1, .reusable = true}, SHIFT(3988), - [6464] = {.count = 1, .reusable = true}, SHIFT(3992), - [6466] = {.count = 1, .reusable = false}, SHIFT(3993), - [6468] = {.count = 1, .reusable = true}, SHIFT(3994), - [6470] = {.count = 1, .reusable = false}, SHIFT(3995), - [6472] = {.count = 1, .reusable = false}, SHIFT(3996), - [6474] = {.count = 1, .reusable = false}, SHIFT(3997), - [6476] = {.count = 1, .reusable = false}, SHIFT(3998), - [6478] = {.count = 1, .reusable = false}, SHIFT(3999), - [6480] = {.count = 1, .reusable = true}, SHIFT(4000), - [6482] = {.count = 1, .reusable = false}, SHIFT(4001), - [6484] = {.count = 1, .reusable = true}, SHIFT(3995), - [6486] = {.count = 1, .reusable = false}, SHIFT(4002), - [6488] = {.count = 1, .reusable = true}, SHIFT(4008), - [6490] = {.count = 1, .reusable = true}, SHIFT(4011), - [6492] = {.count = 1, .reusable = true}, SHIFT(4016), - [6494] = {.count = 1, .reusable = false}, SHIFT(4018), - [6496] = {.count = 1, .reusable = true}, SHIFT(4017), - [6498] = {.count = 1, .reusable = false}, SHIFT(4015), - [6500] = {.count = 1, .reusable = false}, SHIFT(4023), - [6502] = {.count = 1, .reusable = true}, SHIFT(4024), - [6504] = {.count = 1, .reusable = true}, SHIFT(4025), - [6506] = {.count = 1, .reusable = true}, SHIFT(4026), - [6508] = {.count = 1, .reusable = false}, SHIFT(4028), - [6510] = {.count = 1, .reusable = true}, SHIFT(4029), - [6512] = {.count = 1, .reusable = true}, SHIFT(4030), - [6514] = {.count = 1, .reusable = false}, SHIFT(4033), - [6516] = {.count = 1, .reusable = false}, SHIFT(4030), - [6518] = {.count = 1, .reusable = true}, SHIFT(4037), - [6520] = {.count = 1, .reusable = true}, SHIFT(4041), - [6522] = {.count = 1, .reusable = true}, SHIFT(4042), - [6524] = {.count = 1, .reusable = false}, SHIFT(4045), - [6526] = {.count = 1, .reusable = false}, SHIFT(4042), - [6528] = {.count = 1, .reusable = true}, SHIFT(4049), - [6530] = {.count = 1, .reusable = true}, SHIFT(4052), - [6532] = {.count = 1, .reusable = true}, SHIFT(4054), - [6534] = {.count = 1, .reusable = true}, SHIFT(4057), - [6536] = {.count = 1, .reusable = true}, SHIFT(4062), - [6538] = {.count = 1, .reusable = false}, SHIFT(4064), - [6540] = {.count = 1, .reusable = true}, SHIFT(4063), - [6542] = {.count = 1, .reusable = false}, SHIFT(4061), - [6544] = {.count = 1, .reusable = false}, SHIFT(4069), - [6546] = {.count = 1, .reusable = true}, SHIFT(4070), - [6548] = {.count = 1, .reusable = true}, SHIFT(4071), - [6550] = {.count = 1, .reusable = true}, SHIFT(4072), - [6552] = {.count = 1, .reusable = false}, SHIFT(4074), - [6554] = {.count = 1, .reusable = true}, SHIFT(4075), - [6556] = {.count = 1, .reusable = true}, SHIFT(4076), - [6558] = {.count = 1, .reusable = false}, SHIFT(4079), - [6560] = {.count = 1, .reusable = false}, SHIFT(4076), - [6562] = {.count = 1, .reusable = true}, SHIFT(4083), - [6564] = {.count = 1, .reusable = true}, SHIFT(4087), - [6566] = {.count = 1, .reusable = true}, SHIFT(4088), - [6568] = {.count = 1, .reusable = false}, SHIFT(4091), - [6570] = {.count = 1, .reusable = false}, SHIFT(4088), - [6572] = {.count = 1, .reusable = true}, SHIFT(4095), - [6574] = {.count = 1, .reusable = true}, SHIFT(4100), - [6576] = {.count = 1, .reusable = true}, SHIFT(4105), - [6578] = {.count = 1, .reusable = false}, SHIFT(4107), - [6580] = {.count = 1, .reusable = true}, SHIFT(4106), - [6582] = {.count = 1, .reusable = false}, SHIFT(4104), - [6584] = {.count = 1, .reusable = false}, SHIFT(4112), - [6586] = {.count = 1, .reusable = true}, SHIFT(4113), - [6588] = {.count = 1, .reusable = true}, SHIFT(4114), - [6590] = {.count = 1, .reusable = true}, SHIFT(4115), - [6592] = {.count = 1, .reusable = true}, SHIFT(4116), - [6594] = {.count = 1, .reusable = false}, SHIFT(4118), - [6596] = {.count = 1, .reusable = true}, SHIFT(4119), - [6598] = {.count = 1, .reusable = true}, SHIFT(4120), - [6600] = {.count = 1, .reusable = false}, SHIFT(4123), - [6602] = {.count = 1, .reusable = false}, SHIFT(4120), - [6604] = {.count = 1, .reusable = true}, SHIFT(4127), - [6606] = {.count = 1, .reusable = true}, SHIFT(4131), - [6608] = {.count = 1, .reusable = false}, SHIFT(4132), - [6610] = {.count = 1, .reusable = true}, SHIFT(4133), - [6612] = {.count = 1, .reusable = false}, SHIFT(4134), - [6614] = {.count = 1, .reusable = false}, SHIFT(4135), - [6616] = {.count = 1, .reusable = false}, SHIFT(4136), - [6618] = {.count = 1, .reusable = false}, SHIFT(4137), - [6620] = {.count = 1, .reusable = false}, SHIFT(4138), - [6622] = {.count = 1, .reusable = true}, SHIFT(4139), - [6624] = {.count = 1, .reusable = false}, SHIFT(4140), - [6626] = {.count = 1, .reusable = true}, SHIFT(4134), - [6628] = {.count = 1, .reusable = false}, SHIFT(4141), - [6630] = {.count = 1, .reusable = true}, SHIFT(4147), - [6632] = {.count = 1, .reusable = true}, SHIFT(4150), - [6634] = {.count = 1, .reusable = true}, SHIFT(4155), - [6636] = {.count = 1, .reusable = false}, SHIFT(4157), - [6638] = {.count = 1, .reusable = true}, SHIFT(4156), - [6640] = {.count = 1, .reusable = false}, SHIFT(4154), - [6642] = {.count = 1, .reusable = false}, SHIFT(4162), - [6644] = {.count = 1, .reusable = true}, SHIFT(4163), - [6646] = {.count = 1, .reusable = true}, SHIFT(4164), - [6648] = {.count = 1, .reusable = true}, SHIFT(4165), - [6650] = {.count = 1, .reusable = false}, SHIFT(4167), - [6652] = {.count = 1, .reusable = true}, SHIFT(4168), - [6654] = {.count = 1, .reusable = true}, SHIFT(4169), - [6656] = {.count = 1, .reusable = false}, SHIFT(4172), - [6658] = {.count = 1, .reusable = false}, SHIFT(4169), - [6660] = {.count = 1, .reusable = true}, SHIFT(4176), - [6662] = {.count = 1, .reusable = true}, SHIFT(4180), - [6664] = {.count = 1, .reusable = true}, SHIFT(4181), - [6666] = {.count = 1, .reusable = false}, SHIFT(4184), - [6668] = {.count = 1, .reusable = false}, SHIFT(4181), - [6670] = {.count = 1, .reusable = true}, SHIFT(4188), - [6672] = {.count = 1, .reusable = true}, SHIFT(4191), - [6674] = {.count = 1, .reusable = true}, SHIFT(4193), - [6676] = {.count = 1, .reusable = false}, SHIFT(4196), - [6678] = {.count = 1, .reusable = false}, SHIFT(4193), - [6680] = {.count = 1, .reusable = false}, SHIFT(3031), - [6682] = {.count = 1, .reusable = true}, SHIFT(3032), - [6684] = {.count = 1, .reusable = false}, SHIFT(3033), - [6686] = {.count = 1, .reusable = false}, SHIFT(3034), - [6688] = {.count = 1, .reusable = false}, SHIFT(3035), - [6690] = {.count = 1, .reusable = false}, SHIFT(3036), - [6692] = {.count = 1, .reusable = false}, SHIFT(3037), - [6694] = {.count = 1, .reusable = true}, SHIFT(3038), - [6696] = {.count = 1, .reusable = false}, SHIFT(3039), - [6698] = {.count = 1, .reusable = false}, SHIFT(3040), - [6700] = {.count = 1, .reusable = true}, SHIFT(3033), - [6702] = {.count = 1, .reusable = true}, SHIFT(4200), - [6704] = {.count = 1, .reusable = true}, SHIFT(4203), - [6706] = {.count = 1, .reusable = true}, SHIFT(4204), - [6708] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 4), - [6710] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 4), - [6712] = {.count = 1, .reusable = true}, SHIFT(4210), - [6714] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1727), - [6717] = {.count = 1, .reusable = false}, SHIFT(4212), - [6719] = {.count = 1, .reusable = false}, SHIFT(4214), - [6721] = {.count = 1, .reusable = true}, SHIFT(4215), - [6723] = {.count = 1, .reusable = true}, SHIFT(4216), - [6725] = {.count = 1, .reusable = true}, SHIFT(4218), - [6727] = {.count = 1, .reusable = true}, SHIFT(4219), - [6729] = {.count = 1, .reusable = true}, SHIFT(4220), - [6731] = {.count = 1, .reusable = true}, SHIFT(4225), - [6733] = {.count = 1, .reusable = true}, SHIFT(4226), - [6735] = {.count = 1, .reusable = true}, SHIFT(4227), - [6737] = {.count = 1, .reusable = true}, SHIFT(4231), - [6739] = {.count = 1, .reusable = true}, SHIFT(4236), - [6741] = {.count = 1, .reusable = false}, SHIFT(4238), - [6743] = {.count = 1, .reusable = true}, SHIFT(4237), - [6745] = {.count = 1, .reusable = false}, SHIFT(4235), - [6747] = {.count = 1, .reusable = false}, SHIFT(4243), - [6749] = {.count = 1, .reusable = true}, SHIFT(4244), - [6751] = {.count = 1, .reusable = true}, SHIFT(4245), - [6753] = {.count = 1, .reusable = true}, SHIFT(4247), - [6755] = {.count = 1, .reusable = true}, SHIFT(4248), - [6757] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1767), - [6760] = {.count = 1, .reusable = false}, SHIFT(4250), - [6762] = {.count = 1, .reusable = false}, REDUCE(sym_catchall_pragma, 3), - [6764] = {.count = 1, .reusable = true}, REDUCE(sym_catchall_pragma, 3), - [6766] = {.count = 1, .reusable = false}, SHIFT(4252), - [6768] = {.count = 1, .reusable = true}, SHIFT(4253), - [6770] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_clauses_no_single_absurd, 3), - [6772] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 3), - [6774] = {.count = 1, .reusable = false}, SHIFT(3126), - [6776] = {.count = 1, .reusable = true}, SHIFT(4257), - [6778] = {.count = 1, .reusable = true}, SHIFT(4259), - [6780] = {.count = 1, .reusable = true}, SHIFT(4260), - [6782] = {.count = 1, .reusable = true}, SHIFT(4261), - [6784] = {.count = 1, .reusable = true}, SHIFT(4262), - [6786] = {.count = 1, .reusable = false}, SHIFT(4264), - [6788] = {.count = 1, .reusable = true}, SHIFT(4265), - [6790] = {.count = 1, .reusable = true}, SHIFT(4267), - [6792] = {.count = 1, .reusable = false}, SHIFT(4268), - [6794] = {.count = 1, .reusable = true}, SHIFT(4274), - [6796] = {.count = 1, .reusable = true}, SHIFT(4275), - [6798] = {.count = 1, .reusable = false}, SHIFT(4277), - [6800] = {.count = 1, .reusable = true}, SHIFT(4278), - [6802] = {.count = 1, .reusable = false}, SHIFT(4280), - [6804] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_where_block, 3), - [6806] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1290), - [6809] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1797), - [6812] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1801), - [6815] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(8), - [6818] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1802), - [6821] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1803), - [6824] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(717), - [6827] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1799), - [6830] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1287), - [6833] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1286), - [6836] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1798), - [6839] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1800), - [6842] = {.count = 1, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), - [6844] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1804), - [6847] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1805), - [6850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1806), - [6853] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1297), - [6856] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1798), - [6859] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1296), - [6862] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1807), - [6865] = {.count = 1, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), - [6867] = {.count = 1, .reusable = true}, REDUCE(sym_open, 5), - [6869] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 5), - [6871] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(440), - [6874] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1819), - [6877] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1820), - [6880] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(444), - [6883] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1822), - [6886] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1823), - [6889] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(444), - [6892] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(447), - [6895] = {.count = 1, .reusable = false}, SHIFT(4284), - [6897] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 3), - [6899] = {.count = 1, .reusable = true}, SHIFT(4285), - [6901] = {.count = 1, .reusable = true}, SHIFT(4287), - [6903] = {.count = 1, .reusable = true}, SHIFT(4286), - [6905] = {.count = 1, .reusable = true}, SHIFT(4289), - [6907] = {.count = 1, .reusable = false}, SHIFT(4291), - [6909] = {.count = 1, .reusable = true}, SHIFT(4292), - [6911] = {.count = 1, .reusable = true}, REDUCE(sym__comma_import_names1, 1), - [6913] = {.count = 1, .reusable = true}, SHIFT(4294), - [6915] = {.count = 1, .reusable = true}, SHIFT(4295), - [6917] = {.count = 1, .reusable = true}, SHIFT(4296), - [6919] = {.count = 1, .reusable = true}, SHIFT(4298), - [6921] = {.count = 1, .reusable = true}, SHIFT(4300), - [6923] = {.count = 1, .reusable = true}, SHIFT(4301), - [6925] = {.count = 1, .reusable = true}, SHIFT(4304), - [6927] = {.count = 1, .reusable = true}, SHIFT(4309), - [6929] = {.count = 1, .reusable = false}, SHIFT(4311), - [6931] = {.count = 1, .reusable = true}, SHIFT(4310), - [6933] = {.count = 1, .reusable = false}, SHIFT(4308), - [6935] = {.count = 1, .reusable = false}, SHIFT(4316), - [6937] = {.count = 1, .reusable = true}, SHIFT(4317), - [6939] = {.count = 1, .reusable = true}, SHIFT(4318), - [6941] = {.count = 1, .reusable = true}, SHIFT(4319), - [6943] = {.count = 1, .reusable = false}, SHIFT(4321), - [6945] = {.count = 1, .reusable = true}, SHIFT(4322), - [6947] = {.count = 1, .reusable = true}, SHIFT(4323), - [6949] = {.count = 1, .reusable = false}, SHIFT(4326), - [6951] = {.count = 1, .reusable = false}, SHIFT(4323), - [6953] = {.count = 1, .reusable = true}, SHIFT(4330), - [6955] = {.count = 1, .reusable = true}, SHIFT(4334), - [6957] = {.count = 1, .reusable = true}, REDUCE(sym_data, 5, .alias_sequence_id = 7), - [6959] = {.count = 1, .reusable = true}, SHIFT(4336), - [6961] = {.count = 1, .reusable = false}, SHIFT(4339), - [6963] = {.count = 1, .reusable = false}, SHIFT(4336), - [6965] = {.count = 1, .reusable = true}, SHIFT(4343), - [6967] = {.count = 1, .reusable = true}, SHIFT(4346), - [6969] = {.count = 1, .reusable = true}, SHIFT(4347), - [6971] = {.count = 1, .reusable = true}, SHIFT(4350), - [6973] = {.count = 1, .reusable = true}, SHIFT(4351), - [6975] = {.count = 1, .reusable = true}, SHIFT(4352), - [6977] = {.count = 1, .reusable = true}, SHIFT(4353), - [6979] = {.count = 1, .reusable = true}, SHIFT(4354), - [6981] = {.count = 1, .reusable = true}, SHIFT(4357), - [6983] = {.count = 1, .reusable = true}, SHIFT(4358), - [6985] = {.count = 1, .reusable = true}, SHIFT(4360), - [6987] = {.count = 1, .reusable = true}, SHIFT(4362), - [6989] = {.count = 1, .reusable = true}, SHIFT(4363), - [6991] = {.count = 1, .reusable = true}, SHIFT(4368), - [6993] = {.count = 1, .reusable = true}, SHIFT(4370), - [6995] = {.count = 1, .reusable = true}, REDUCE(sym_data_signature_only, 5, .alias_sequence_id = 7), - [6997] = {.count = 1, .reusable = false}, SHIFT(4373), - [6999] = {.count = 1, .reusable = false}, SHIFT(4374), - [7001] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 2), - [7003] = {.count = 1, .reusable = true}, SHIFT(4375), - [7005] = {.count = 1, .reusable = true}, SHIFT(4376), - [7007] = {.count = 1, .reusable = true}, SHIFT(4377), - [7009] = {.count = 1, .reusable = true}, SHIFT(4378), - [7011] = {.count = 1, .reusable = true}, SHIFT(4379), - [7013] = {.count = 1, .reusable = true}, REDUCE(sym_module, 5, .alias_sequence_id = 8), - [7015] = {.count = 1, .reusable = true}, SHIFT(4384), - [7017] = {.count = 1, .reusable = true}, SHIFT(4385), - [7019] = {.count = 1, .reusable = true}, SHIFT(4386), - [7021] = {.count = 1, .reusable = true}, SHIFT(4387), - [7023] = {.count = 1, .reusable = true}, SHIFT(4388), - [7025] = {.count = 1, .reusable = true}, SHIFT(4391), - [7027] = {.count = 1, .reusable = true}, SHIFT(4393), - [7029] = {.count = 1, .reusable = true}, SHIFT(4394), - [7031] = {.count = 1, .reusable = true}, SHIFT(4395), - [7033] = {.count = 1, .reusable = true}, SHIFT(4400), - [7035] = {.count = 1, .reusable = true}, SHIFT(4401), - [7037] = {.count = 1, .reusable = true}, SHIFT(4402), - [7039] = {.count = 1, .reusable = true}, SHIFT(4404), - [7041] = {.count = 1, .reusable = true}, SHIFT(4406), - [7043] = {.count = 1, .reusable = true}, SHIFT(4407), - [7045] = {.count = 1, .reusable = false}, SHIFT(4409), - [7047] = {.count = 1, .reusable = true}, SHIFT(4410), - [7049] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2049), - [7052] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2050), - [7055] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2051), - [7058] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2052), - [7061] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2053), - [7064] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2054), - [7067] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2055), - [7070] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2057), - [7073] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2056), - [7076] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2051), - [7079] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2058), - [7082] = {.count = 1, .reusable = true}, SHIFT(4411), - [7084] = {.count = 1, .reusable = false}, SHIFT(4414), - [7086] = {.count = 1, .reusable = false}, SHIFT(4411), - [7088] = {.count = 1, .reusable = true}, SHIFT(4417), - [7090] = {.count = 1, .reusable = false}, SHIFT(4418), - [7092] = {.count = 1, .reusable = false}, SHIFT(4419), - [7094] = {.count = 1, .reusable = false}, SHIFT(4420), - [7096] = {.count = 1, .reusable = false}, SHIFT(4421), - [7098] = {.count = 1, .reusable = true}, SHIFT(4423), - [7100] = {.count = 1, .reusable = true}, SHIFT(4426), - [7102] = {.count = 1, .reusable = false}, SHIFT(4429), - [7104] = {.count = 1, .reusable = true}, SHIFT(4427), - [7106] = {.count = 1, .reusable = false}, SHIFT(4428), - [7108] = {.count = 1, .reusable = false}, SHIFT(4430), - [7110] = {.count = 1, .reusable = true}, SHIFT(4431), - [7112] = {.count = 1, .reusable = true}, SHIFT(4433), - [7114] = {.count = 1, .reusable = true}, SHIFT(4434), - [7116] = {.count = 1, .reusable = true}, SHIFT(4435), - [7118] = {.count = 1, .reusable = true}, SHIFT(4440), - [7120] = {.count = 1, .reusable = true}, SHIFT(4441), - [7122] = {.count = 1, .reusable = true}, SHIFT(4442), - [7124] = {.count = 1, .reusable = true}, SHIFT(4444), - [7126] = {.count = 1, .reusable = true}, SHIFT(4446), - [7128] = {.count = 1, .reusable = true}, SHIFT(4447), - [7130] = {.count = 1, .reusable = false}, SHIFT(4449), - [7132] = {.count = 1, .reusable = true}, SHIFT(4450), - [7134] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2092), - [7137] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2093), - [7140] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2094), - [7143] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2095), - [7146] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2096), - [7149] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2097), - [7152] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2098), - [7155] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2099), - [7158] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2100), - [7161] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2101), - [7164] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2094), - [7167] = {.count = 1, .reusable = true}, SHIFT(4451), - [7169] = {.count = 1, .reusable = true}, SHIFT(4452), - [7171] = {.count = 1, .reusable = false}, SHIFT(4454), - [7173] = {.count = 1, .reusable = true}, SHIFT(4455), - [7175] = {.count = 1, .reusable = true}, SHIFT(4456), - [7177] = {.count = 1, .reusable = true}, SHIFT(4457), - [7179] = {.count = 1, .reusable = true}, SHIFT(4459), - [7181] = {.count = 1, .reusable = true}, SHIFT(4460), - [7183] = {.count = 1, .reusable = true}, SHIFT(4461), - [7185] = {.count = 1, .reusable = true}, SHIFT(4466), - [7187] = {.count = 1, .reusable = true}, SHIFT(4467), - [7189] = {.count = 1, .reusable = true}, SHIFT(4468), - [7191] = {.count = 1, .reusable = true}, SHIFT(4470), - [7193] = {.count = 1, .reusable = true}, SHIFT(4472), - [7195] = {.count = 1, .reusable = true}, SHIFT(4473), - [7197] = {.count = 1, .reusable = false}, SHIFT(4475), - [7199] = {.count = 1, .reusable = true}, SHIFT(4476), - [7201] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2158), - [7204] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2159), - [7207] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2160), - [7210] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2161), - [7213] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2162), - [7216] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2163), - [7219] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2164), - [7222] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2165), - [7225] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2166), - [7228] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2167), - [7231] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2160), - [7234] = {.count = 1, .reusable = true}, SHIFT(4477), - [7236] = {.count = 1, .reusable = true}, SHIFT(4478), - [7238] = {.count = 1, .reusable = false}, SHIFT(4480), - [7240] = {.count = 1, .reusable = true}, SHIFT(4481), - [7242] = {.count = 1, .reusable = true}, REDUCE(sym_where_clause, 4), - [7244] = {.count = 1, .reusable = true}, SHIFT(4482), - [7246] = {.count = 1, .reusable = true}, SHIFT(4484), - [7248] = {.count = 1, .reusable = true}, SHIFT(4485), - [7250] = {.count = 1, .reusable = true}, SHIFT(4486), - [7252] = {.count = 1, .reusable = true}, SHIFT(4491), - [7254] = {.count = 1, .reusable = true}, SHIFT(4492), - [7256] = {.count = 1, .reusable = true}, SHIFT(4493), - [7258] = {.count = 1, .reusable = true}, SHIFT(4495), - [7260] = {.count = 1, .reusable = true}, SHIFT(4497), - [7262] = {.count = 1, .reusable = true}, SHIFT(4498), - [7264] = {.count = 1, .reusable = false}, SHIFT(4500), - [7266] = {.count = 1, .reusable = true}, SHIFT(4501), - [7268] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2216), - [7271] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2217), - [7274] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2218), - [7277] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2219), - [7280] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2220), - [7283] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2221), - [7286] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2222), - [7289] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2223), - [7292] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2224), - [7295] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2225), - [7298] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2218), - [7301] = {.count = 1, .reusable = true}, SHIFT(4502), - [7303] = {.count = 1, .reusable = false}, SHIFT(4505), - [7305] = {.count = 1, .reusable = false}, SHIFT(4502), - [7307] = {.count = 1, .reusable = true}, SHIFT(4508), - [7309] = {.count = 1, .reusable = false}, SHIFT(4509), - [7311] = {.count = 1, .reusable = false}, SHIFT(4510), - [7313] = {.count = 1, .reusable = false}, SHIFT(4511), - [7315] = {.count = 1, .reusable = false}, SHIFT(4512), - [7317] = {.count = 1, .reusable = true}, SHIFT(4514), - [7319] = {.count = 1, .reusable = true}, SHIFT(4517), - [7321] = {.count = 1, .reusable = false}, SHIFT(4520), - [7323] = {.count = 1, .reusable = true}, SHIFT(4518), - [7325] = {.count = 1, .reusable = false}, SHIFT(4519), - [7327] = {.count = 1, .reusable = false}, SHIFT(4521), - [7329] = {.count = 1, .reusable = true}, SHIFT(4522), - [7331] = {.count = 1, .reusable = true}, SHIFT(4524), - [7333] = {.count = 1, .reusable = true}, SHIFT(4525), - [7335] = {.count = 1, .reusable = true}, SHIFT(4526), - [7337] = {.count = 1, .reusable = true}, SHIFT(4531), - [7339] = {.count = 1, .reusable = true}, SHIFT(4532), - [7341] = {.count = 1, .reusable = true}, SHIFT(4533), - [7343] = {.count = 1, .reusable = true}, SHIFT(4535), - [7345] = {.count = 1, .reusable = true}, SHIFT(4537), - [7347] = {.count = 1, .reusable = true}, SHIFT(4538), - [7349] = {.count = 1, .reusable = false}, SHIFT(4540), - [7351] = {.count = 1, .reusable = true}, SHIFT(4541), - [7353] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2259), - [7356] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2260), - [7359] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2261), - [7362] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2262), - [7365] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2263), - [7368] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2264), - [7371] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2265), - [7374] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2266), - [7377] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2267), - [7380] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2268), - [7383] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2261), - [7386] = {.count = 1, .reusable = true}, SHIFT(4542), - [7388] = {.count = 1, .reusable = true}, SHIFT(4543), - [7390] = {.count = 1, .reusable = false}, SHIFT(4545), - [7392] = {.count = 1, .reusable = true}, SHIFT(4546), - [7394] = {.count = 1, .reusable = true}, SHIFT(4547), - [7396] = {.count = 1, .reusable = true}, SHIFT(4550), - [7398] = {.count = 1, .reusable = true}, SHIFT(4551), - [7400] = {.count = 1, .reusable = true}, SHIFT(4552), - [7402] = {.count = 1, .reusable = true}, SHIFT(4553), - [7404] = {.count = 1, .reusable = true}, SHIFT(4554), - [7406] = {.count = 1, .reusable = true}, SHIFT(4557), - [7408] = {.count = 1, .reusable = true}, SHIFT(4558), - [7410] = {.count = 1, .reusable = true}, SHIFT(4560), - [7412] = {.count = 1, .reusable = false}, SHIFT(4563), - [7414] = {.count = 1, .reusable = false}, SHIFT(4560), - [7416] = {.count = 1, .reusable = true}, SHIFT(4567), - [7418] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 5), - [7420] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 5), - [7422] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 5), - [7424] = {.count = 1, .reusable = true}, SHIFT(4571), - [7426] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_where_block, 3), - [7428] = {.count = 1, .reusable = true}, SHIFT(4576), - [7430] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2355), - [7433] = {.count = 1, .reusable = true}, SHIFT(4579), - [7435] = {.count = 1, .reusable = true}, SHIFT(4580), - [7437] = {.count = 1, .reusable = true}, SHIFT(4583), - [7439] = {.count = 1, .reusable = true}, SHIFT(4584), - [7441] = {.count = 1, .reusable = true}, SHIFT(4585), - [7443] = {.count = 1, .reusable = true}, SHIFT(4586), - [7445] = {.count = 1, .reusable = true}, SHIFT(4587), - [7447] = {.count = 1, .reusable = true}, SHIFT(4590), - [7449] = {.count = 1, .reusable = true}, SHIFT(4591), - [7451] = {.count = 1, .reusable = true}, SHIFT(4593), - [7453] = {.count = 1, .reusable = false}, SHIFT(4596), - [7455] = {.count = 1, .reusable = false}, SHIFT(4593), - [7457] = {.count = 1, .reusable = true}, SHIFT(4600), - [7459] = {.count = 1, .reusable = true}, SHIFT(4603), - [7461] = {.count = 1, .reusable = true}, SHIFT(4604), - [7463] = {.count = 1, .reusable = true}, SHIFT(4605), - [7465] = {.count = 1, .reusable = true}, SHIFT(4606), - [7467] = {.count = 1, .reusable = true}, SHIFT(4607), - [7469] = {.count = 1, .reusable = true}, SHIFT(4609), - [7471] = {.count = 1, .reusable = true}, SHIFT(4610), - [7473] = {.count = 1, .reusable = true}, SHIFT(4611), - [7475] = {.count = 1, .reusable = true}, SHIFT(4616), - [7477] = {.count = 1, .reusable = true}, SHIFT(4617), - [7479] = {.count = 1, .reusable = true}, SHIFT(4618), - [7481] = {.count = 1, .reusable = true}, SHIFT(4620), - [7483] = {.count = 1, .reusable = true}, SHIFT(4622), - [7485] = {.count = 1, .reusable = true}, SHIFT(4623), - [7487] = {.count = 1, .reusable = false}, SHIFT(4625), - [7489] = {.count = 1, .reusable = true}, SHIFT(4626), - [7491] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2466), - [7494] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2467), - [7497] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2468), - [7500] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2469), - [7503] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2470), - [7506] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2471), - [7509] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2472), - [7512] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2473), - [7515] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2474), - [7518] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2475), - [7521] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2468), - [7524] = {.count = 1, .reusable = true}, SHIFT(4627), - [7526] = {.count = 1, .reusable = true}, SHIFT(4628), - [7528] = {.count = 1, .reusable = false}, SHIFT(4630), - [7530] = {.count = 1, .reusable = true}, SHIFT(4631), - [7532] = {.count = 1, .reusable = true}, SHIFT(4636), - [7534] = {.count = 1, .reusable = true}, SHIFT(4639), - [7536] = {.count = 1, .reusable = true}, SHIFT(4640), - [7538] = {.count = 1, .reusable = true}, SHIFT(4641), - [7540] = {.count = 1, .reusable = true}, SHIFT(4642), - [7542] = {.count = 1, .reusable = true}, SHIFT(4643), - [7544] = {.count = 1, .reusable = true}, SHIFT(4646), - [7546] = {.count = 1, .reusable = true}, SHIFT(4647), - [7548] = {.count = 1, .reusable = true}, SHIFT(4649), - [7550] = {.count = 1, .reusable = true}, SHIFT(4651), - [7552] = {.count = 1, .reusable = true}, SHIFT(4653), - [7554] = {.count = 1, .reusable = true}, REDUCE(sym_record, 6), - [7556] = {.count = 1, .reusable = true}, SHIFT(4655), - [7558] = {.count = 1, .reusable = true}, REDUCE(aux_sym__field_assignments1_repeat1, 2), - [7560] = {.count = 2, .reusable = true}, REDUCE(aux_sym__field_assignments1_repeat1, 2), SHIFT_REPEAT(2595), - [7563] = {.count = 1, .reusable = false}, SHIFT(4660), - [7565] = {.count = 1, .reusable = true}, REDUCE(sym_record_constructor, 2), - [7567] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 3), - [7569] = {.count = 1, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), - [7571] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), - [7573] = {.count = 1, .reusable = true}, SHIFT(4662), - [7575] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2598), - [7578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2599), - [7581] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(4663), - [7584] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2602), - [7587] = {.count = 1, .reusable = true}, SHIFT(4665), - [7589] = {.count = 1, .reusable = true}, SHIFT(4670), - [7591] = {.count = 1, .reusable = true}, SHIFT(4671), - [7593] = {.count = 1, .reusable = false}, SHIFT(4672), - [7595] = {.count = 1, .reusable = true}, SHIFT(4673), - [7597] = {.count = 1, .reusable = false}, SHIFT(4674), - [7599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_syntax_repeat2, 2), - [7601] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(3799), - [7604] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig, 4), - [7606] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 4), - [7608] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 4), - [7610] = {.count = 1, .reusable = true}, REDUCE(aux_sym__arg_name_repeat2, 2), - [7612] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), SHIFT_REPEAT(1481), - [7615] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), - [7617] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), SHIFT_REPEAT(1485), - [7620] = {.count = 1, .reusable = true}, SHIFT(4675), - [7622] = {.count = 1, .reusable = true}, SHIFT(4678), - [7624] = {.count = 1, .reusable = true}, SHIFT(4683), - [7626] = {.count = 1, .reusable = false}, SHIFT(4685), - [7628] = {.count = 1, .reusable = true}, SHIFT(4684), - [7630] = {.count = 1, .reusable = false}, SHIFT(4682), - [7632] = {.count = 1, .reusable = false}, SHIFT(4690), - [7634] = {.count = 1, .reusable = true}, SHIFT(4691), - [7636] = {.count = 1, .reusable = true}, SHIFT(4692), - [7638] = {.count = 1, .reusable = true}, SHIFT(4693), - [7640] = {.count = 1, .reusable = false}, SHIFT(4695), - [7642] = {.count = 1, .reusable = true}, SHIFT(4696), - [7644] = {.count = 1, .reusable = true}, SHIFT(4697), - [7646] = {.count = 1, .reusable = false}, SHIFT(4700), - [7648] = {.count = 1, .reusable = false}, SHIFT(4697), - [7650] = {.count = 1, .reusable = true}, SHIFT(4704), - [7652] = {.count = 1, .reusable = true}, SHIFT(4708), - [7654] = {.count = 1, .reusable = true}, SHIFT(4709), - [7656] = {.count = 1, .reusable = false}, SHIFT(4712), - [7658] = {.count = 1, .reusable = false}, SHIFT(4709), - [7660] = {.count = 1, .reusable = true}, SHIFT(4716), - [7662] = {.count = 1, .reusable = true}, SHIFT(4719), - [7664] = {.count = 1, .reusable = true}, SHIFT(4722), - [7666] = {.count = 1, .reusable = true}, SHIFT(4727), - [7668] = {.count = 1, .reusable = false}, SHIFT(4729), - [7670] = {.count = 1, .reusable = true}, SHIFT(4728), - [7672] = {.count = 1, .reusable = false}, SHIFT(4726), - [7674] = {.count = 1, .reusable = false}, SHIFT(4734), - [7676] = {.count = 1, .reusable = true}, SHIFT(4735), - [7678] = {.count = 1, .reusable = true}, SHIFT(4736), - [7680] = {.count = 1, .reusable = true}, SHIFT(4737), - [7682] = {.count = 1, .reusable = false}, SHIFT(4739), - [7684] = {.count = 1, .reusable = true}, SHIFT(4740), - [7686] = {.count = 1, .reusable = true}, SHIFT(4741), - [7688] = {.count = 1, .reusable = false}, SHIFT(4744), - [7690] = {.count = 1, .reusable = false}, SHIFT(4741), - [7692] = {.count = 1, .reusable = true}, SHIFT(4748), - [7694] = {.count = 1, .reusable = true}, SHIFT(4752), - [7696] = {.count = 1, .reusable = true}, SHIFT(4753), - [7698] = {.count = 1, .reusable = false}, SHIFT(4756), - [7700] = {.count = 1, .reusable = false}, SHIFT(4753), - [7702] = {.count = 1, .reusable = true}, SHIFT(4760), - [7704] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 6), - [7706] = {.count = 1, .reusable = false}, REDUCE(sym_syntax, 5), - [7708] = {.count = 1, .reusable = false}, SHIFT(4763), - [7710] = {.count = 1, .reusable = true}, SHIFT(4764), - [7712] = {.count = 1, .reusable = true}, SHIFT(4772), - [7714] = {.count = 1, .reusable = true}, SHIFT(4774), - [7716] = {.count = 1, .reusable = true}, SHIFT(4776), - [7718] = {.count = 1, .reusable = true}, SHIFT(4777), - [7720] = {.count = 1, .reusable = true}, SHIFT(4779), - [7722] = {.count = 1, .reusable = true}, SHIFT(4780), - [7724] = {.count = 1, .reusable = true}, SHIFT(4781), - [7726] = {.count = 1, .reusable = true}, SHIFT(4786), - [7728] = {.count = 1, .reusable = true}, SHIFT(4787), - [7730] = {.count = 1, .reusable = true}, SHIFT(4788), - [7732] = {.count = 1, .reusable = true}, SHIFT(4790), - [7734] = {.count = 1, .reusable = true}, SHIFT(4792), - [7736] = {.count = 1, .reusable = true}, SHIFT(4793), - [7738] = {.count = 1, .reusable = false}, SHIFT(4795), - [7740] = {.count = 1, .reusable = true}, SHIFT(4796), - [7742] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2785), - [7745] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2786), - [7748] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2787), - [7751] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2788), - [7754] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2789), - [7757] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2790), - [7760] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2791), - [7763] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2793), - [7766] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2792), - [7769] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2787), - [7772] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2794), - [7775] = {.count = 1, .reusable = true}, SHIFT(4797), - [7777] = {.count = 1, .reusable = false}, SHIFT(4800), - [7779] = {.count = 1, .reusable = false}, SHIFT(4797), - [7781] = {.count = 1, .reusable = true}, SHIFT(4803), - [7783] = {.count = 1, .reusable = false}, SHIFT(4804), - [7785] = {.count = 1, .reusable = false}, SHIFT(4805), - [7787] = {.count = 1, .reusable = false}, SHIFT(4806), - [7789] = {.count = 1, .reusable = false}, SHIFT(4807), - [7791] = {.count = 1, .reusable = true}, SHIFT(4809), - [7793] = {.count = 1, .reusable = true}, SHIFT(4812), - [7795] = {.count = 1, .reusable = false}, SHIFT(4815), - [7797] = {.count = 1, .reusable = true}, SHIFT(4813), - [7799] = {.count = 1, .reusable = false}, SHIFT(4814), - [7801] = {.count = 1, .reusable = false}, SHIFT(4816), - [7803] = {.count = 1, .reusable = true}, SHIFT(4817), - [7805] = {.count = 1, .reusable = true}, SHIFT(4819), - [7807] = {.count = 1, .reusable = true}, SHIFT(4820), - [7809] = {.count = 1, .reusable = true}, SHIFT(4821), - [7811] = {.count = 1, .reusable = true}, SHIFT(4826), - [7813] = {.count = 1, .reusable = true}, SHIFT(4827), - [7815] = {.count = 1, .reusable = true}, SHIFT(4828), - [7817] = {.count = 1, .reusable = true}, SHIFT(4830), - [7819] = {.count = 1, .reusable = true}, SHIFT(4832), - [7821] = {.count = 1, .reusable = true}, SHIFT(4833), - [7823] = {.count = 1, .reusable = false}, SHIFT(4835), - [7825] = {.count = 1, .reusable = true}, SHIFT(4836), - [7827] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2828), - [7830] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2829), - [7833] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2830), - [7836] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2831), - [7839] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2832), - [7842] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2833), - [7845] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2834), - [7848] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2835), - [7851] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2836), - [7854] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2837), - [7857] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2830), - [7860] = {.count = 1, .reusable = true}, SHIFT(4837), - [7862] = {.count = 1, .reusable = true}, SHIFT(4838), - [7864] = {.count = 1, .reusable = false}, SHIFT(4840), - [7866] = {.count = 1, .reusable = true}, SHIFT(4841), - [7868] = {.count = 1, .reusable = true}, SHIFT(4842), - [7870] = {.count = 1, .reusable = true}, SHIFT(4843), - [7872] = {.count = 1, .reusable = true}, SHIFT(4845), - [7874] = {.count = 1, .reusable = true}, SHIFT(4846), - [7876] = {.count = 1, .reusable = true}, SHIFT(4847), - [7878] = {.count = 1, .reusable = true}, SHIFT(4852), - [7880] = {.count = 1, .reusable = true}, SHIFT(4853), - [7882] = {.count = 1, .reusable = true}, SHIFT(4854), - [7884] = {.count = 1, .reusable = true}, SHIFT(4856), - [7886] = {.count = 1, .reusable = true}, SHIFT(4858), - [7888] = {.count = 1, .reusable = true}, SHIFT(4859), - [7890] = {.count = 1, .reusable = false}, SHIFT(4861), - [7892] = {.count = 1, .reusable = true}, SHIFT(4862), - [7894] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2894), - [7897] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2895), - [7900] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2896), - [7903] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2897), - [7906] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2898), - [7909] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2899), - [7912] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2900), - [7915] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2901), - [7918] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2902), - [7921] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2903), - [7924] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2896), - [7927] = {.count = 1, .reusable = true}, SHIFT(4863), - [7929] = {.count = 1, .reusable = true}, SHIFT(4864), - [7931] = {.count = 1, .reusable = false}, SHIFT(4866), - [7933] = {.count = 1, .reusable = true}, SHIFT(4867), - [7935] = {.count = 1, .reusable = true}, SHIFT(4868), - [7937] = {.count = 1, .reusable = true}, SHIFT(4870), - [7939] = {.count = 1, .reusable = true}, SHIFT(4871), - [7941] = {.count = 1, .reusable = true}, SHIFT(4872), - [7943] = {.count = 1, .reusable = true}, SHIFT(4877), - [7945] = {.count = 1, .reusable = true}, SHIFT(4878), - [7947] = {.count = 1, .reusable = true}, SHIFT(4879), - [7949] = {.count = 1, .reusable = true}, SHIFT(4881), - [7951] = {.count = 1, .reusable = true}, SHIFT(4883), - [7953] = {.count = 1, .reusable = true}, SHIFT(4884), - [7955] = {.count = 1, .reusable = false}, SHIFT(4886), - [7957] = {.count = 1, .reusable = true}, SHIFT(4887), - [7959] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2950), - [7962] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2951), - [7965] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2952), - [7968] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2953), - [7971] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2954), - [7974] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2955), - [7977] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2956), - [7980] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2957), - [7983] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2958), - [7986] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2959), - [7989] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2952), - [7992] = {.count = 1, .reusable = true}, SHIFT(4888), - [7994] = {.count = 1, .reusable = false}, SHIFT(4891), - [7996] = {.count = 1, .reusable = false}, SHIFT(4888), - [7998] = {.count = 1, .reusable = true}, SHIFT(4894), - [8000] = {.count = 1, .reusable = false}, SHIFT(4895), - [8002] = {.count = 1, .reusable = false}, SHIFT(4896), - [8004] = {.count = 1, .reusable = false}, SHIFT(4897), - [8006] = {.count = 1, .reusable = false}, SHIFT(4898), - [8008] = {.count = 1, .reusable = true}, SHIFT(4900), - [8010] = {.count = 1, .reusable = true}, SHIFT(4903), - [8012] = {.count = 1, .reusable = false}, SHIFT(4906), - [8014] = {.count = 1, .reusable = true}, SHIFT(4904), - [8016] = {.count = 1, .reusable = false}, SHIFT(4905), - [8018] = {.count = 1, .reusable = false}, SHIFT(4907), - [8020] = {.count = 1, .reusable = true}, SHIFT(4908), - [8022] = {.count = 1, .reusable = true}, SHIFT(4910), - [8024] = {.count = 1, .reusable = true}, SHIFT(4911), - [8026] = {.count = 1, .reusable = true}, SHIFT(4912), - [8028] = {.count = 1, .reusable = true}, SHIFT(4917), - [8030] = {.count = 1, .reusable = true}, SHIFT(4918), - [8032] = {.count = 1, .reusable = true}, SHIFT(4919), - [8034] = {.count = 1, .reusable = true}, SHIFT(4921), - [8036] = {.count = 1, .reusable = true}, SHIFT(4923), - [8038] = {.count = 1, .reusable = true}, SHIFT(4924), - [8040] = {.count = 1, .reusable = false}, SHIFT(4926), - [8042] = {.count = 1, .reusable = true}, SHIFT(4927), - [8044] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2993), - [8047] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2994), - [8050] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2995), - [8053] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2996), - [8056] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2997), - [8059] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2998), - [8062] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2999), - [8065] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3000), - [8068] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3001), - [8071] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3002), - [8074] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2995), - [8077] = {.count = 1, .reusable = true}, SHIFT(4928), - [8079] = {.count = 1, .reusable = true}, SHIFT(4929), - [8081] = {.count = 1, .reusable = false}, SHIFT(4931), - [8083] = {.count = 1, .reusable = true}, SHIFT(4932), - [8085] = {.count = 1, .reusable = true}, SHIFT(4933), - [8087] = {.count = 1, .reusable = true}, SHIFT(4934), - [8089] = {.count = 1, .reusable = true}, SHIFT(4935), - [8091] = {.count = 1, .reusable = false}, SHIFT(4937), - [8093] = {.count = 1, .reusable = true}, SHIFT(4938), - [8095] = {.count = 1, .reusable = true}, SHIFT(4939), - [8097] = {.count = 1, .reusable = true}, SHIFT(4940), - [8099] = {.count = 1, .reusable = true}, SHIFT(4941), - [8101] = {.count = 1, .reusable = true}, SHIFT(4942), - [8103] = {.count = 1, .reusable = true}, SHIFT(4945), - [8105] = {.count = 1, .reusable = true}, SHIFT(4946), - [8107] = {.count = 1, .reusable = true}, SHIFT(4947), - [8109] = {.count = 1, .reusable = true}, SHIFT(4948), - [8111] = {.count = 1, .reusable = true}, SHIFT(4949), - [8113] = {.count = 1, .reusable = true}, SHIFT(4952), - [8115] = {.count = 1, .reusable = true}, SHIFT(4954), - [8117] = {.count = 1, .reusable = true}, SHIFT(4955), - [8119] = {.count = 1, .reusable = true}, SHIFT(4956), - [8121] = {.count = 1, .reusable = true}, SHIFT(4961), - [8123] = {.count = 1, .reusable = true}, SHIFT(4962), - [8125] = {.count = 1, .reusable = true}, SHIFT(4963), - [8127] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3101), - [8130] = {.count = 1, .reusable = true}, SHIFT(4965), - [8132] = {.count = 1, .reusable = true}, SHIFT(4966), - [8134] = {.count = 1, .reusable = true}, SHIFT(4968), - [8136] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3142), - [8139] = {.count = 1, .reusable = false}, SHIFT(4970), - [8141] = {.count = 1, .reusable = false}, SHIFT(4972), - [8143] = {.count = 1, .reusable = true}, SHIFT(4973), - [8145] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 4), - [8147] = {.count = 1, .reusable = true}, SHIFT(4974), - [8149] = {.count = 1, .reusable = true}, REDUCE(sym_open, 6), - [8151] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 6), - [8153] = {.count = 1, .reusable = true}, SHIFT(4978), - [8155] = {.count = 1, .reusable = false}, SHIFT(4979), - [8157] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 4), - [8159] = {.count = 1, .reusable = true}, SHIFT(4981), - [8161] = {.count = 1, .reusable = true}, SHIFT(4983), - [8163] = {.count = 1, .reusable = true}, REDUCE(sym__import_name, 2), - [8165] = {.count = 1, .reusable = false}, SHIFT(4984), - [8167] = {.count = 1, .reusable = true}, REDUCE(sym__comma_import_names1, 2), - [8169] = {.count = 1, .reusable = true}, SHIFT(4986), - [8171] = {.count = 1, .reusable = true}, SHIFT(4987), - [8173] = {.count = 1, .reusable = true}, SHIFT(4988), - [8175] = {.count = 1, .reusable = true}, SHIFT(4990), - [8177] = {.count = 1, .reusable = true}, SHIFT(4991), - [8179] = {.count = 1, .reusable = true}, SHIFT(4992), - [8181] = {.count = 1, .reusable = true}, SHIFT(4997), - [8183] = {.count = 1, .reusable = true}, SHIFT(4998), - [8185] = {.count = 1, .reusable = true}, SHIFT(4999), - [8187] = {.count = 1, .reusable = true}, SHIFT(5001), - [8189] = {.count = 1, .reusable = true}, SHIFT(5003), - [8191] = {.count = 1, .reusable = true}, SHIFT(5004), - [8193] = {.count = 1, .reusable = false}, SHIFT(5006), - [8195] = {.count = 1, .reusable = true}, SHIFT(5007), - [8197] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3227), - [8200] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3228), - [8203] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3229), - [8206] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3230), - [8209] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3231), - [8212] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3232), - [8215] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3233), - [8218] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3234), - [8221] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3235), - [8224] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3236), - [8227] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3229), - [8230] = {.count = 1, .reusable = true}, REDUCE(sym_data, 6, .alias_sequence_id = 7), - [8232] = {.count = 1, .reusable = true}, SHIFT(5008), - [8234] = {.count = 1, .reusable = true}, SHIFT(5009), - [8236] = {.count = 1, .reusable = false}, SHIFT(5011), - [8238] = {.count = 1, .reusable = true}, SHIFT(5012), - [8240] = {.count = 1, .reusable = true}, SHIFT(5014), - [8242] = {.count = 1, .reusable = true}, SHIFT(5019), - [8244] = {.count = 1, .reusable = true}, SHIFT(5020), - [8246] = {.count = 1, .reusable = true}, SHIFT(5021), - [8248] = {.count = 1, .reusable = true}, SHIFT(5022), - [8250] = {.count = 1, .reusable = true}, SHIFT(5023), - [8252] = {.count = 1, .reusable = true}, SHIFT(5024), - [8254] = {.count = 1, .reusable = false}, SHIFT(5024), - [8256] = {.count = 1, .reusable = true}, SHIFT(5029), - [8258] = {.count = 1, .reusable = true}, SHIFT(5034), - [8260] = {.count = 1, .reusable = true}, SHIFT(5037), - [8262] = {.count = 1, .reusable = true}, SHIFT(5038), - [8264] = {.count = 1, .reusable = true}, SHIFT(5039), - [8266] = {.count = 1, .reusable = true}, SHIFT(5040), - [8268] = {.count = 1, .reusable = true}, SHIFT(5041), - [8270] = {.count = 1, .reusable = true}, SHIFT(5044), - [8272] = {.count = 1, .reusable = true}, SHIFT(5045), - [8274] = {.count = 1, .reusable = true}, SHIFT(5047), - [8276] = {.count = 1, .reusable = true}, SHIFT(5048), - [8278] = {.count = 1, .reusable = false}, SHIFT(5050), - [8280] = {.count = 1, .reusable = true}, SHIFT(5051), - [8282] = {.count = 1, .reusable = true}, SHIFT(5052), - [8284] = {.count = 1, .reusable = true}, SHIFT(5055), - [8286] = {.count = 1, .reusable = true}, SHIFT(5056), - [8288] = {.count = 1, .reusable = true}, SHIFT(5057), - [8290] = {.count = 1, .reusable = true}, SHIFT(5058), - [8292] = {.count = 1, .reusable = true}, SHIFT(5059), - [8294] = {.count = 1, .reusable = true}, SHIFT(5062), - [8296] = {.count = 1, .reusable = true}, SHIFT(5063), - [8298] = {.count = 1, .reusable = true}, SHIFT(5065), - [8300] = {.count = 1, .reusable = true}, SHIFT(5067), - [8302] = {.count = 1, .reusable = true}, SHIFT(5070), - [8304] = {.count = 1, .reusable = true}, SHIFT(5071), - [8306] = {.count = 1, .reusable = true}, SHIFT(5072), - [8308] = {.count = 1, .reusable = true}, SHIFT(5073), - [8310] = {.count = 1, .reusable = true}, SHIFT(5074), - [8312] = {.count = 1, .reusable = true}, SHIFT(5077), - [8314] = {.count = 1, .reusable = true}, SHIFT(5078), - [8316] = {.count = 1, .reusable = true}, SHIFT(5080), - [8318] = {.count = 1, .reusable = true}, SHIFT(5082), - [8320] = {.count = 1, .reusable = true}, SHIFT(5085), - [8322] = {.count = 1, .reusable = true}, SHIFT(5086), - [8324] = {.count = 1, .reusable = true}, SHIFT(5087), - [8326] = {.count = 1, .reusable = true}, SHIFT(5088), - [8328] = {.count = 1, .reusable = true}, SHIFT(5089), - [8330] = {.count = 1, .reusable = true}, SHIFT(5092), - [8332] = {.count = 1, .reusable = true}, SHIFT(5093), - [8334] = {.count = 1, .reusable = true}, SHIFT(5095), - [8336] = {.count = 1, .reusable = true}, SHIFT(5096), - [8338] = {.count = 1, .reusable = false}, SHIFT(5098), - [8340] = {.count = 1, .reusable = true}, SHIFT(5099), - [8342] = {.count = 1, .reusable = true}, SHIFT(5100), - [8344] = {.count = 1, .reusable = true}, SHIFT(5103), - [8346] = {.count = 1, .reusable = true}, SHIFT(5104), - [8348] = {.count = 1, .reusable = true}, SHIFT(5105), - [8350] = {.count = 1, .reusable = true}, SHIFT(5106), - [8352] = {.count = 1, .reusable = true}, SHIFT(5107), - [8354] = {.count = 1, .reusable = true}, SHIFT(5110), - [8356] = {.count = 1, .reusable = true}, SHIFT(5111), - [8358] = {.count = 1, .reusable = true}, SHIFT(5113), - [8360] = {.count = 1, .reusable = true}, SHIFT(5115), - [8362] = {.count = 1, .reusable = true}, SHIFT(5120), - [8364] = {.count = 1, .reusable = true}, SHIFT(5121), - [8366] = {.count = 1, .reusable = true}, SHIFT(5122), - [8368] = {.count = 1, .reusable = false}, SHIFT(5124), - [8370] = {.count = 1, .reusable = true}, SHIFT(5125), - [8372] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 6), - [8374] = {.count = 1, .reusable = true}, SHIFT(5126), - [8376] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 6), - [8378] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 6), - [8380] = {.count = 1, .reusable = true}, SHIFT(5128), - [8382] = {.count = 1, .reusable = true}, SHIFT(5133), - [8384] = {.count = 1, .reusable = true}, SHIFT(5134), - [8386] = {.count = 1, .reusable = true}, SHIFT(5135), - [8388] = {.count = 1, .reusable = false}, SHIFT(5137), - [8390] = {.count = 1, .reusable = true}, SHIFT(5138), - [8392] = {.count = 1, .reusable = true}, SHIFT(5139), - [8394] = {.count = 1, .reusable = true}, SHIFT(5142), - [8396] = {.count = 1, .reusable = true}, SHIFT(5143), - [8398] = {.count = 1, .reusable = true}, SHIFT(5144), - [8400] = {.count = 1, .reusable = true}, SHIFT(5145), - [8402] = {.count = 1, .reusable = true}, SHIFT(5146), - [8404] = {.count = 1, .reusable = true}, SHIFT(5149), - [8406] = {.count = 1, .reusable = true}, SHIFT(5150), - [8408] = {.count = 1, .reusable = true}, SHIFT(5152), - [8410] = {.count = 1, .reusable = true}, SHIFT(5154), - [8412] = {.count = 1, .reusable = true}, SHIFT(5155), - [8414] = {.count = 1, .reusable = true}, SHIFT(5160), - [8416] = {.count = 1, .reusable = true}, SHIFT(5161), - [8418] = {.count = 1, .reusable = true}, SHIFT(5162), - [8420] = {.count = 1, .reusable = true}, SHIFT(5163), - [8422] = {.count = 1, .reusable = true}, SHIFT(5164), - [8424] = {.count = 1, .reusable = false}, SHIFT(5165), - [8426] = {.count = 1, .reusable = true}, SHIFT(5166), - [8428] = {.count = 1, .reusable = true}, SHIFT(4660), - [8430] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 4), - [8432] = {.count = 1, .reusable = true}, SHIFT(5168), - [8434] = {.count = 1, .reusable = true}, REDUCE(sym_record, 7), - [8436] = {.count = 1, .reusable = true}, SHIFT(5169), - [8438] = {.count = 1, .reusable = true}, REDUCE(sym_simple_hole, 4), - [8440] = {.count = 1, .reusable = false}, REDUCE(sym_simple_hole, 4), - [8442] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 5), - [8444] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 5), - [8446] = {.count = 1, .reusable = true}, SHIFT(5170), - [8448] = {.count = 1, .reusable = true}, SHIFT(5171), - [8450] = {.count = 1, .reusable = true}, SHIFT(5173), - [8452] = {.count = 1, .reusable = true}, SHIFT(5174), - [8454] = {.count = 1, .reusable = true}, SHIFT(5175), - [8456] = {.count = 1, .reusable = true}, SHIFT(5180), - [8458] = {.count = 1, .reusable = true}, SHIFT(5181), - [8460] = {.count = 1, .reusable = true}, SHIFT(5182), - [8462] = {.count = 1, .reusable = true}, SHIFT(5184), - [8464] = {.count = 1, .reusable = true}, SHIFT(5186), - [8466] = {.count = 1, .reusable = true}, SHIFT(5187), - [8468] = {.count = 1, .reusable = false}, SHIFT(5189), - [8470] = {.count = 1, .reusable = true}, SHIFT(5190), - [8472] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3833), - [8475] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3834), - [8478] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3835), - [8481] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3836), - [8484] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3837), - [8487] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3838), - [8490] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3839), - [8493] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3840), - [8496] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3841), - [8499] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3842), - [8502] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3835), - [8505] = {.count = 1, .reusable = true}, SHIFT(5191), - [8507] = {.count = 1, .reusable = true}, SHIFT(5192), - [8509] = {.count = 1, .reusable = false}, SHIFT(5194), - [8511] = {.count = 1, .reusable = true}, SHIFT(5195), - [8513] = {.count = 1, .reusable = true}, SHIFT(5196), - [8515] = {.count = 1, .reusable = true}, SHIFT(5198), - [8517] = {.count = 1, .reusable = true}, SHIFT(5199), - [8519] = {.count = 1, .reusable = true}, SHIFT(5200), - [8521] = {.count = 1, .reusable = true}, SHIFT(5205), - [8523] = {.count = 1, .reusable = true}, SHIFT(5206), - [8525] = {.count = 1, .reusable = true}, SHIFT(5207), - [8527] = {.count = 1, .reusable = true}, SHIFT(5209), - [8529] = {.count = 1, .reusable = true}, SHIFT(5211), - [8531] = {.count = 1, .reusable = true}, SHIFT(5212), - [8533] = {.count = 1, .reusable = false}, SHIFT(5214), - [8535] = {.count = 1, .reusable = true}, SHIFT(5215), - [8537] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3894), - [8540] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3895), - [8543] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3896), - [8546] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3897), - [8549] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3898), - [8552] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3899), - [8555] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3900), - [8558] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3901), - [8561] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3902), - [8564] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3903), - [8567] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3896), - [8570] = {.count = 1, .reusable = true}, SHIFT(5216), - [8572] = {.count = 1, .reusable = true}, SHIFT(5217), - [8574] = {.count = 1, .reusable = false}, SHIFT(5219), - [8576] = {.count = 1, .reusable = true}, SHIFT(5220), - [8578] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(4763), - [8581] = {.count = 1, .reusable = true}, SHIFT(5221), - [8583] = {.count = 1, .reusable = true}, SHIFT(5223), - [8585] = {.count = 1, .reusable = true}, SHIFT(5224), - [8587] = {.count = 1, .reusable = true}, SHIFT(5225), - [8589] = {.count = 1, .reusable = true}, SHIFT(5228), - [8591] = {.count = 1, .reusable = true}, SHIFT(5229), - [8593] = {.count = 1, .reusable = true}, SHIFT(5230), - [8595] = {.count = 1, .reusable = true}, SHIFT(5231), - [8597] = {.count = 1, .reusable = true}, SHIFT(5232), - [8599] = {.count = 1, .reusable = true}, SHIFT(5235), - [8601] = {.count = 1, .reusable = true}, SHIFT(5236), - [8603] = {.count = 1, .reusable = true}, SHIFT(5238), - [8605] = {.count = 1, .reusable = true}, SHIFT(5239), - [8607] = {.count = 1, .reusable = false}, SHIFT(5241), - [8609] = {.count = 1, .reusable = true}, SHIFT(5242), - [8611] = {.count = 1, .reusable = true}, SHIFT(5243), - [8613] = {.count = 1, .reusable = true}, SHIFT(5246), - [8615] = {.count = 1, .reusable = true}, SHIFT(5247), - [8617] = {.count = 1, .reusable = true}, SHIFT(5248), - [8619] = {.count = 1, .reusable = true}, SHIFT(5249), - [8621] = {.count = 1, .reusable = true}, SHIFT(5250), - [8623] = {.count = 1, .reusable = true}, SHIFT(5253), - [8625] = {.count = 1, .reusable = true}, SHIFT(5254), - [8627] = {.count = 1, .reusable = true}, SHIFT(5256), - [8629] = {.count = 1, .reusable = true}, SHIFT(5258), - [8631] = {.count = 1, .reusable = true}, SHIFT(5261), - [8633] = {.count = 1, .reusable = true}, SHIFT(5262), - [8635] = {.count = 1, .reusable = true}, SHIFT(5263), - [8637] = {.count = 1, .reusable = true}, SHIFT(5264), - [8639] = {.count = 1, .reusable = true}, SHIFT(5265), - [8641] = {.count = 1, .reusable = true}, SHIFT(5268), - [8643] = {.count = 1, .reusable = true}, SHIFT(5269), - [8645] = {.count = 1, .reusable = true}, SHIFT(5271), - [8647] = {.count = 1, .reusable = true}, SHIFT(5273), - [8649] = {.count = 1, .reusable = true}, SHIFT(5276), - [8651] = {.count = 1, .reusable = true}, SHIFT(5277), - [8653] = {.count = 1, .reusable = true}, SHIFT(5278), - [8655] = {.count = 1, .reusable = true}, SHIFT(5279), - [8657] = {.count = 1, .reusable = true}, SHIFT(5280), - [8659] = {.count = 1, .reusable = true}, SHIFT(5283), - [8661] = {.count = 1, .reusable = true}, SHIFT(5284), - [8663] = {.count = 1, .reusable = true}, SHIFT(5286), - [8665] = {.count = 1, .reusable = true}, SHIFT(5287), - [8667] = {.count = 1, .reusable = false}, SHIFT(5289), - [8669] = {.count = 1, .reusable = true}, SHIFT(5290), - [8671] = {.count = 1, .reusable = true}, SHIFT(5291), - [8673] = {.count = 1, .reusable = true}, SHIFT(5294), - [8675] = {.count = 1, .reusable = true}, SHIFT(5295), - [8677] = {.count = 1, .reusable = true}, SHIFT(5296), - [8679] = {.count = 1, .reusable = true}, SHIFT(5297), - [8681] = {.count = 1, .reusable = true}, SHIFT(5298), - [8683] = {.count = 1, .reusable = true}, SHIFT(5301), - [8685] = {.count = 1, .reusable = true}, SHIFT(5302), - [8687] = {.count = 1, .reusable = true}, SHIFT(5304), - [8689] = {.count = 1, .reusable = true}, SHIFT(5306), - [8691] = {.count = 1, .reusable = true}, SHIFT(5308), - [8693] = {.count = 1, .reusable = true}, SHIFT(5313), - [8695] = {.count = 1, .reusable = true}, SHIFT(5316), - [8697] = {.count = 1, .reusable = true}, SHIFT(5317), - [8699] = {.count = 1, .reusable = true}, SHIFT(5318), - [8701] = {.count = 1, .reusable = true}, SHIFT(5319), - [8703] = {.count = 1, .reusable = true}, SHIFT(5320), - [8705] = {.count = 1, .reusable = true}, SHIFT(5323), - [8707] = {.count = 1, .reusable = true}, SHIFT(5324), - [8709] = {.count = 1, .reusable = true}, SHIFT(5325), - [8711] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 7), - [8713] = {.count = 1, .reusable = false}, SHIFT(5326), - [8715] = {.count = 1, .reusable = true}, REDUCE(sym_renaming, 3), - [8717] = {.count = 1, .reusable = true}, REDUCE(aux_sym_import_directive_repeat1, 2), - [8719] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 5), - [8721] = {.count = 2, .reusable = true}, REDUCE(aux_sym_import_directive_repeat1, 2), SHIFT_REPEAT(4287), - [8724] = {.count = 1, .reusable = true}, REDUCE(aux_sym__comma_import_names1_repeat1, 2), - [8726] = {.count = 2, .reusable = true}, REDUCE(aux_sym__comma_import_names1_repeat1, 2), SHIFT_REPEAT(4292), - [8729] = {.count = 1, .reusable = true}, SHIFT(5327), - [8731] = {.count = 1, .reusable = true}, SHIFT(5330), - [8733] = {.count = 1, .reusable = true}, SHIFT(5331), - [8735] = {.count = 1, .reusable = true}, SHIFT(5332), - [8737] = {.count = 1, .reusable = true}, SHIFT(5333), - [8739] = {.count = 1, .reusable = true}, SHIFT(5334), - [8741] = {.count = 1, .reusable = true}, SHIFT(5337), - [8743] = {.count = 1, .reusable = true}, SHIFT(5338), - [8745] = {.count = 1, .reusable = true}, SHIFT(5340), - [8747] = {.count = 1, .reusable = true}, REDUCE(sym_data, 7, .alias_sequence_id = 7), - [8749] = {.count = 1, .reusable = true}, SHIFT(5342), - [8751] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 4), - [8753] = {.count = 1, .reusable = true}, SHIFT(5343), - [8755] = {.count = 1, .reusable = true}, SHIFT(5344), - [8757] = {.count = 1, .reusable = true}, SHIFT(5345), - [8759] = {.count = 1, .reusable = true}, SHIFT(5350), - [8761] = {.count = 1, .reusable = true}, SHIFT(5351), - [8763] = {.count = 1, .reusable = true}, SHIFT(5353), - [8765] = {.count = 1, .reusable = true}, SHIFT(5358), - [8767] = {.count = 1, .reusable = true}, SHIFT(5359), - [8769] = {.count = 1, .reusable = true}, SHIFT(5360), - [8771] = {.count = 1, .reusable = true}, SHIFT(5365), - [8773] = {.count = 1, .reusable = true}, SHIFT(5366), - [8775] = {.count = 1, .reusable = true}, SHIFT(5367), - [8777] = {.count = 1, .reusable = true}, SHIFT(5372), - [8779] = {.count = 1, .reusable = true}, SHIFT(5373), - [8781] = {.count = 1, .reusable = true}, SHIFT(5375), - [8783] = {.count = 1, .reusable = true}, SHIFT(5380), - [8785] = {.count = 1, .reusable = true}, SHIFT(5381), - [8787] = {.count = 1, .reusable = true}, SHIFT(5382), - [8789] = {.count = 1, .reusable = true}, SHIFT(5383), - [8791] = {.count = 1, .reusable = true}, SHIFT(5385), - [8793] = {.count = 1, .reusable = true}, SHIFT(5386), - [8795] = {.count = 1, .reusable = true}, SHIFT(5388), - [8797] = {.count = 1, .reusable = true}, SHIFT(5393), - [8799] = {.count = 1, .reusable = true}, SHIFT(5394), - [8801] = {.count = 1, .reusable = true}, SHIFT(5395), - [8803] = {.count = 1, .reusable = true}, SHIFT(5396), - [8805] = {.count = 1, .reusable = true}, REDUCE(sym_record_constructor_instance, 4), - [8807] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 2), - [8809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 2), SHIFT_REPEAT(4660), - [8812] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 6), - [8814] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 6), - [8816] = {.count = 1, .reusable = true}, SHIFT(5397), - [8818] = {.count = 1, .reusable = true}, SHIFT(5400), - [8820] = {.count = 1, .reusable = true}, SHIFT(5401), - [8822] = {.count = 1, .reusable = true}, SHIFT(5402), - [8824] = {.count = 1, .reusable = true}, SHIFT(5403), - [8826] = {.count = 1, .reusable = true}, SHIFT(5404), - [8828] = {.count = 1, .reusable = true}, SHIFT(5407), - [8830] = {.count = 1, .reusable = true}, SHIFT(5408), - [8832] = {.count = 1, .reusable = true}, SHIFT(5410), - [8834] = {.count = 1, .reusable = true}, SHIFT(5412), - [8836] = {.count = 1, .reusable = true}, SHIFT(5415), - [8838] = {.count = 1, .reusable = true}, SHIFT(5416), - [8840] = {.count = 1, .reusable = true}, SHIFT(5417), - [8842] = {.count = 1, .reusable = true}, SHIFT(5418), - [8844] = {.count = 1, .reusable = true}, SHIFT(5419), - [8846] = {.count = 1, .reusable = true}, SHIFT(5422), - [8848] = {.count = 1, .reusable = true}, SHIFT(5423), - [8850] = {.count = 1, .reusable = true}, SHIFT(5425), - [8852] = {.count = 1, .reusable = true}, SHIFT(5427), - [8854] = {.count = 1, .reusable = true}, SHIFT(5432), - [8856] = {.count = 1, .reusable = true}, SHIFT(5433), - [8858] = {.count = 1, .reusable = true}, SHIFT(5435), - [8860] = {.count = 1, .reusable = true}, SHIFT(5440), - [8862] = {.count = 1, .reusable = true}, SHIFT(5441), - [8864] = {.count = 1, .reusable = true}, SHIFT(5442), - [8866] = {.count = 1, .reusable = true}, SHIFT(5447), - [8868] = {.count = 1, .reusable = true}, SHIFT(5448), - [8870] = {.count = 1, .reusable = true}, SHIFT(5449), - [8872] = {.count = 1, .reusable = true}, SHIFT(5454), - [8874] = {.count = 1, .reusable = true}, SHIFT(5455), - [8876] = {.count = 1, .reusable = true}, SHIFT(5457), - [8878] = {.count = 1, .reusable = true}, SHIFT(5462), - [8880] = {.count = 1, .reusable = true}, SHIFT(5463), - [8882] = {.count = 1, .reusable = true}, SHIFT(5464), - [8884] = {.count = 1, .reusable = true}, SHIFT(5465), - [8886] = {.count = 1, .reusable = true}, SHIFT(5466), - [8888] = {.count = 1, .reusable = true}, REDUCE(sym_renaming, 4), - [8890] = {.count = 1, .reusable = true}, SHIFT(5471), - [8892] = {.count = 1, .reusable = true}, SHIFT(5476), - [8894] = {.count = 1, .reusable = true}, SHIFT(5477), - [8896] = {.count = 1, .reusable = true}, SHIFT(5478), - [8898] = {.count = 1, .reusable = true}, SHIFT(5479), - [8900] = {.count = 1, .reusable = true}, SHIFT(5480), - [8902] = {.count = 1, .reusable = true}, SHIFT(5481), - [8904] = {.count = 1, .reusable = true}, SHIFT(5482), - [8906] = {.count = 1, .reusable = true}, SHIFT(5483), - [8908] = {.count = 1, .reusable = true}, SHIFT(5484), - [8910] = {.count = 1, .reusable = true}, SHIFT(5485), - [8912] = {.count = 1, .reusable = true}, SHIFT(5486), - [8914] = {.count = 1, .reusable = true}, SHIFT(5487), - [8916] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 3), - [8918] = {.count = 1, .reusable = true}, SHIFT(5488), - [8920] = {.count = 1, .reusable = true}, SHIFT(5493), - [8922] = {.count = 1, .reusable = true}, SHIFT(5494), - [8924] = {.count = 1, .reusable = true}, SHIFT(5495), - [8926] = {.count = 1, .reusable = true}, SHIFT(5500), - [8928] = {.count = 1, .reusable = true}, SHIFT(5501), - [8930] = {.count = 1, .reusable = true}, SHIFT(5502), - [8932] = {.count = 1, .reusable = true}, SHIFT(5503), - [8934] = {.count = 1, .reusable = true}, SHIFT(5504), - [8936] = {.count = 1, .reusable = true}, SHIFT(5505), - [8938] = {.count = 1, .reusable = true}, SHIFT(5506), - [8940] = {.count = 1, .reusable = true}, SHIFT(5507), - [8942] = {.count = 1, .reusable = true}, SHIFT(5508), - [8944] = {.count = 1, .reusable = true}, SHIFT(5509), - [8946] = {.count = 1, .reusable = true}, SHIFT(5510), - [8948] = {.count = 1, .reusable = true}, SHIFT(5511), - [8950] = {.count = 1, .reusable = true}, SHIFT(5512), + [5799] = {.count = 1, .reusable = false}, SHIFT(3642), + [5801] = {.count = 1, .reusable = true}, SHIFT(3643), + [5803] = {.count = 1, .reusable = false}, SHIFT(3644), + [5805] = {.count = 1, .reusable = false}, SHIFT(3645), + [5807] = {.count = 1, .reusable = false}, SHIFT(3646), + [5809] = {.count = 1, .reusable = false}, SHIFT(3647), + [5811] = {.count = 1, .reusable = false}, SHIFT(3648), + [5813] = {.count = 1, .reusable = true}, SHIFT(3640), + [5815] = {.count = 1, .reusable = true}, SHIFT(3652), + [5817] = {.count = 1, .reusable = true}, SHIFT(3654), + [5819] = {.count = 1, .reusable = true}, SHIFT(3656), + [5821] = {.count = 1, .reusable = true}, SHIFT(3657), + [5823] = {.count = 1, .reusable = false}, REDUCE(sym_do, 4), + [5825] = {.count = 1, .reusable = false}, REDUCE(sym__expr2, 4), + [5827] = {.count = 1, .reusable = true}, SHIFT(3660), + [5829] = {.count = 1, .reusable = true}, SHIFT(3661), + [5831] = {.count = 1, .reusable = true}, SHIFT(3662), + [5833] = {.count = 1, .reusable = true}, SHIFT(3663), + [5835] = {.count = 1, .reusable = true}, SHIFT(3664), + [5837] = {.count = 1, .reusable = false}, REDUCE(sym_lambda, 4), + [5839] = {.count = 1, .reusable = true}, SHIFT(3667), + [5841] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1206), + [5844] = {.count = 1, .reusable = false}, SHIFT(3668), + [5846] = {.count = 1, .reusable = true}, SHIFT(3670), + [5848] = {.count = 1, .reusable = false}, SHIFT(3675), + [5850] = {.count = 1, .reusable = true}, SHIFT(3679), + [5852] = {.count = 1, .reusable = true}, SHIFT(3684), + [5854] = {.count = 1, .reusable = false}, REDUCE(sym__let_only, 4), + [5856] = {.count = 1, .reusable = true}, SHIFT(3687), + [5858] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 4), + [5860] = {.count = 1, .reusable = true}, SHIFT(1534), + [5862] = {.count = 1, .reusable = true}, SHIFT(3688), + [5864] = {.count = 1, .reusable = true}, SHIFT(3689), + [5866] = {.count = 1, .reusable = true}, SHIFT(3690), + [5868] = {.count = 1, .reusable = true}, SHIFT(3691), + [5870] = {.count = 1, .reusable = true}, SHIFT(3696), + [5872] = {.count = 1, .reusable = true}, SHIFT(3697), + [5874] = {.count = 1, .reusable = true}, SHIFT(3698), + [5876] = {.count = 1, .reusable = true}, SHIFT(3700), + [5878] = {.count = 1, .reusable = true}, SHIFT(3701), + [5880] = {.count = 1, .reusable = false}, SHIFT(3703), + [5882] = {.count = 1, .reusable = true}, SHIFT(3704), + [5884] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1259), + [5887] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1260), + [5890] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1261), + [5893] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1262), + [5896] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1263), + [5899] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1264), + [5902] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1265), + [5905] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1266), + [5908] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1267), + [5911] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1268), + [5914] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1261), + [5917] = {.count = 1, .reusable = false}, SHIFT(3705), + [5919] = {.count = 1, .reusable = false}, SHIFT(3706), + [5921] = {.count = 1, .reusable = true}, SHIFT(3707), + [5923] = {.count = 1, .reusable = false}, SHIFT(3708), + [5925] = {.count = 1, .reusable = true}, SHIFT(3709), + [5927] = {.count = 1, .reusable = false}, SHIFT(3710), + [5929] = {.count = 1, .reusable = false}, SHIFT(3711), + [5931] = {.count = 1, .reusable = false}, SHIFT(3712), + [5933] = {.count = 1, .reusable = false}, SHIFT(3713), + [5935] = {.count = 1, .reusable = false}, SHIFT(3714), + [5937] = {.count = 1, .reusable = true}, SHIFT(3706), + [5939] = {.count = 1, .reusable = true}, SHIFT(3718), + [5941] = {.count = 1, .reusable = true}, SHIFT(3720), + [5943] = {.count = 1, .reusable = true}, SHIFT(3722), + [5945] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1300), + [5948] = {.count = 1, .reusable = false}, SHIFT(3723), + [5950] = {.count = 1, .reusable = true}, SHIFT(3725), + [5952] = {.count = 1, .reusable = true}, SHIFT(3727), + [5954] = {.count = 1, .reusable = true}, SHIFT(3728), + [5956] = {.count = 1, .reusable = true}, SHIFT(3730), + [5958] = {.count = 1, .reusable = true}, SHIFT(3731), + [5960] = {.count = 1, .reusable = false}, SHIFT(3733), + [5962] = {.count = 1, .reusable = false}, SHIFT(3734), + [5964] = {.count = 1, .reusable = true}, SHIFT(3735), + [5966] = {.count = 1, .reusable = false}, SHIFT(3736), + [5968] = {.count = 1, .reusable = false}, SHIFT(3737), + [5970] = {.count = 1, .reusable = true}, SHIFT(3738), + [5972] = {.count = 1, .reusable = false}, SHIFT(3739), + [5974] = {.count = 1, .reusable = true}, SHIFT(3737), + [5976] = {.count = 1, .reusable = false}, SHIFT(3740), + [5978] = {.count = 1, .reusable = false}, SHIFT(3745), + [5980] = {.count = 1, .reusable = true}, SHIFT(3746), + [5982] = {.count = 1, .reusable = false}, SHIFT(3747), + [5984] = {.count = 1, .reusable = false}, SHIFT(3748), + [5986] = {.count = 1, .reusable = true}, SHIFT(3749), + [5988] = {.count = 1, .reusable = false}, SHIFT(3750), + [5990] = {.count = 1, .reusable = false}, SHIFT(3751), + [5992] = {.count = 1, .reusable = false}, SHIFT(3752), + [5994] = {.count = 1, .reusable = false}, SHIFT(3753), + [5996] = {.count = 1, .reusable = false}, SHIFT(3754), + [5998] = {.count = 1, .reusable = true}, SHIFT(3747), + [6000] = {.count = 1, .reusable = true}, SHIFT(3758), + [6002] = {.count = 1, .reusable = false}, SHIFT(3761), + [6004] = {.count = 1, .reusable = false}, SHIFT(3731), + [6006] = {.count = 1, .reusable = true}, SHIFT(3766), + [6008] = {.count = 1, .reusable = false}, SHIFT(3767), + [6010] = {.count = 1, .reusable = false}, SHIFT(3768), + [6012] = {.count = 1, .reusable = false}, SHIFT(3769), + [6014] = {.count = 1, .reusable = false}, SHIFT(3770), + [6016] = {.count = 1, .reusable = true}, SHIFT(3771), + [6018] = {.count = 1, .reusable = false}, SHIFT(3776), + [6020] = {.count = 1, .reusable = true}, SHIFT(3774), + [6022] = {.count = 1, .reusable = false}, SHIFT(3775), + [6024] = {.count = 1, .reusable = false}, SHIFT(3777), + [6026] = {.count = 1, .reusable = true}, SHIFT(3778), + [6028] = {.count = 1, .reusable = false}, SHIFT(3779), + [6030] = {.count = 1, .reusable = false}, SHIFT(3780), + [6032] = {.count = 1, .reusable = true}, SHIFT(3781), + [6034] = {.count = 1, .reusable = false}, SHIFT(3782), + [6036] = {.count = 1, .reusable = true}, SHIFT(3783), + [6038] = {.count = 1, .reusable = false}, SHIFT(3784), + [6040] = {.count = 1, .reusable = false}, SHIFT(3785), + [6042] = {.count = 1, .reusable = false}, SHIFT(3786), + [6044] = {.count = 1, .reusable = false}, SHIFT(3787), + [6046] = {.count = 1, .reusable = false}, SHIFT(3788), + [6048] = {.count = 1, .reusable = true}, SHIFT(3780), + [6050] = {.count = 1, .reusable = true}, SHIFT(3792), + [6052] = {.count = 1, .reusable = true}, SHIFT(3794), + [6054] = {.count = 1, .reusable = true}, SHIFT(3795), + [6056] = {.count = 1, .reusable = false}, SHIFT(3797), + [6058] = {.count = 1, .reusable = false}, SHIFT(3798), + [6060] = {.count = 1, .reusable = true}, SHIFT(3799), + [6062] = {.count = 1, .reusable = false}, SHIFT(3800), + [6064] = {.count = 1, .reusable = false}, SHIFT(3801), + [6066] = {.count = 1, .reusable = true}, SHIFT(3802), + [6068] = {.count = 1, .reusable = false}, SHIFT(3803), + [6070] = {.count = 1, .reusable = true}, SHIFT(3801), + [6072] = {.count = 1, .reusable = false}, SHIFT(3804), + [6074] = {.count = 1, .reusable = false}, SHIFT(3809), + [6076] = {.count = 1, .reusable = true}, SHIFT(3810), + [6078] = {.count = 1, .reusable = false}, SHIFT(3811), + [6080] = {.count = 1, .reusable = false}, SHIFT(3812), + [6082] = {.count = 1, .reusable = true}, SHIFT(3813), + [6084] = {.count = 1, .reusable = false}, SHIFT(3814), + [6086] = {.count = 1, .reusable = false}, SHIFT(3815), + [6088] = {.count = 1, .reusable = false}, SHIFT(3816), + [6090] = {.count = 1, .reusable = false}, SHIFT(3817), + [6092] = {.count = 1, .reusable = false}, SHIFT(3818), + [6094] = {.count = 1, .reusable = true}, SHIFT(3811), + [6096] = {.count = 1, .reusable = true}, SHIFT(3822), + [6098] = {.count = 1, .reusable = false}, SHIFT(3825), + [6100] = {.count = 1, .reusable = false}, SHIFT(3795), + [6102] = {.count = 1, .reusable = true}, SHIFT(3830), + [6104] = {.count = 1, .reusable = false}, SHIFT(3831), + [6106] = {.count = 1, .reusable = false}, SHIFT(3832), + [6108] = {.count = 1, .reusable = false}, SHIFT(3833), + [6110] = {.count = 1, .reusable = false}, SHIFT(3834), + [6112] = {.count = 1, .reusable = true}, SHIFT(3835), + [6114] = {.count = 1, .reusable = false}, SHIFT(3840), + [6116] = {.count = 1, .reusable = true}, SHIFT(3838), + [6118] = {.count = 1, .reusable = false}, SHIFT(3839), + [6120] = {.count = 1, .reusable = false}, SHIFT(3841), + [6122] = {.count = 1, .reusable = true}, SHIFT(3842), + [6124] = {.count = 1, .reusable = false}, SHIFT(3843), + [6126] = {.count = 1, .reusable = false}, SHIFT(3844), + [6128] = {.count = 1, .reusable = true}, SHIFT(3845), + [6130] = {.count = 1, .reusable = false}, SHIFT(3846), + [6132] = {.count = 1, .reusable = true}, SHIFT(3847), + [6134] = {.count = 1, .reusable = false}, SHIFT(3848), + [6136] = {.count = 1, .reusable = false}, SHIFT(3849), + [6138] = {.count = 1, .reusable = false}, SHIFT(3850), + [6140] = {.count = 1, .reusable = false}, SHIFT(3851), + [6142] = {.count = 1, .reusable = false}, SHIFT(3852), + [6144] = {.count = 1, .reusable = true}, SHIFT(3844), + [6146] = {.count = 1, .reusable = true}, SHIFT(3856), + [6148] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 5), + [6150] = {.count = 1, .reusable = false}, SHIFT(3858), + [6152] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(1361), + [6155] = {.count = 1, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), + [6157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_infix_repeat1, 2), SHIFT_REPEAT(1362), + [6160] = {.count = 1, .reusable = false}, REDUCE(sym_open, 4), + [6162] = {.count = 1, .reusable = true}, SHIFT(3862), + [6164] = {.count = 1, .reusable = true}, SHIFT(3863), + [6166] = {.count = 1, .reusable = true}, SHIFT(3864), + [6168] = {.count = 1, .reusable = false}, SHIFT(3866), + [6170] = {.count = 1, .reusable = true}, SHIFT(3867), + [6172] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1367), + [6175] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1368), + [6178] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1369), + [6181] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1370), + [6184] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1372), + [6187] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1373), + [6190] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1374), + [6193] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1375), + [6196] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1376), + [6199] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1377), + [6202] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1369), + [6205] = {.count = 1, .reusable = true}, SHIFT(3870), + [6207] = {.count = 1, .reusable = true}, SHIFT(3871), + [6209] = {.count = 1, .reusable = true}, SHIFT(3872), + [6211] = {.count = 1, .reusable = true}, SHIFT(3873), + [6213] = {.count = 1, .reusable = true}, SHIFT(3874), + [6215] = {.count = 1, .reusable = true}, SHIFT(3877), + [6217] = {.count = 1, .reusable = true}, SHIFT(3878), + [6219] = {.count = 1, .reusable = false}, SHIFT(3880), + [6221] = {.count = 1, .reusable = true}, SHIFT(3881), + [6223] = {.count = 1, .reusable = true}, SHIFT(3882), + [6225] = {.count = 1, .reusable = false}, SHIFT(3883), + [6227] = {.count = 1, .reusable = true}, SHIFT(3885), + [6229] = {.count = 1, .reusable = true}, SHIFT(3887), + [6231] = {.count = 1, .reusable = true}, SHIFT(3888), + [6233] = {.count = 1, .reusable = true}, SHIFT(3892), + [6235] = {.count = 1, .reusable = false}, SHIFT(3894), + [6237] = {.count = 1, .reusable = true}, SHIFT(3893), + [6239] = {.count = 1, .reusable = false}, SHIFT(3891), + [6241] = {.count = 1, .reusable = false}, SHIFT(3899), + [6243] = {.count = 1, .reusable = true}, SHIFT(3900), + [6245] = {.count = 1, .reusable = true}, SHIFT(3901), + [6247] = {.count = 1, .reusable = false}, SHIFT(3906), + [6249] = {.count = 1, .reusable = false}, SHIFT(3901), + [6251] = {.count = 1, .reusable = true}, SHIFT(3909), + [6253] = {.count = 1, .reusable = true}, SHIFT(3912), + [6255] = {.count = 1, .reusable = true}, SHIFT(3915), + [6257] = {.count = 1, .reusable = true}, SHIFT(3917), + [6259] = {.count = 1, .reusable = false}, SHIFT(3919), + [6261] = {.count = 1, .reusable = true}, SHIFT(3920), + [6263] = {.count = 1, .reusable = true}, SHIFT(3921), + [6265] = {.count = 1, .reusable = false}, SHIFT(3925), + [6267] = {.count = 1, .reusable = false}, SHIFT(3921), + [6269] = {.count = 1, .reusable = true}, SHIFT(3929), + [6271] = {.count = 1, .reusable = true}, SHIFT(3931), + [6273] = {.count = 1, .reusable = true}, SHIFT(3935), + [6275] = {.count = 1, .reusable = false}, SHIFT(3937), + [6277] = {.count = 1, .reusable = true}, SHIFT(3936), + [6279] = {.count = 1, .reusable = false}, SHIFT(3934), + [6281] = {.count = 1, .reusable = false}, SHIFT(3942), + [6283] = {.count = 1, .reusable = true}, SHIFT(3943), + [6285] = {.count = 1, .reusable = true}, SHIFT(3944), + [6287] = {.count = 1, .reusable = true}, SHIFT(3945), + [6289] = {.count = 1, .reusable = false}, SHIFT(3950), + [6291] = {.count = 1, .reusable = false}, SHIFT(3945), + [6293] = {.count = 1, .reusable = true}, SHIFT(3953), + [6295] = {.count = 1, .reusable = true}, SHIFT(3956), + [6297] = {.count = 1, .reusable = true}, SHIFT(3959), + [6299] = {.count = 1, .reusable = true}, SHIFT(3961), + [6301] = {.count = 1, .reusable = false}, SHIFT(3963), + [6303] = {.count = 1, .reusable = true}, SHIFT(3964), + [6305] = {.count = 1, .reusable = false}, SHIFT(3965), + [6307] = {.count = 1, .reusable = true}, SHIFT(3966), + [6309] = {.count = 1, .reusable = false}, SHIFT(3967), + [6311] = {.count = 1, .reusable = false}, SHIFT(3968), + [6313] = {.count = 1, .reusable = false}, SHIFT(3969), + [6315] = {.count = 1, .reusable = true}, SHIFT(3970), + [6317] = {.count = 1, .reusable = false}, SHIFT(3971), + [6319] = {.count = 1, .reusable = false}, SHIFT(3972), + [6321] = {.count = 1, .reusable = false}, SHIFT(3973), + [6323] = {.count = 1, .reusable = false}, SHIFT(3974), + [6325] = {.count = 1, .reusable = true}, SHIFT(3967), + [6327] = {.count = 1, .reusable = true}, SHIFT(3980), + [6329] = {.count = 1, .reusable = true}, SHIFT(3981), + [6331] = {.count = 1, .reusable = true}, SHIFT(3985), + [6333] = {.count = 1, .reusable = false}, SHIFT(3987), + [6335] = {.count = 1, .reusable = true}, SHIFT(3986), + [6337] = {.count = 1, .reusable = false}, SHIFT(3984), + [6339] = {.count = 1, .reusable = false}, SHIFT(3992), + [6341] = {.count = 1, .reusable = true}, SHIFT(3993), + [6343] = {.count = 1, .reusable = true}, SHIFT(3994), + [6345] = {.count = 1, .reusable = false}, SHIFT(3999), + [6347] = {.count = 1, .reusable = false}, SHIFT(3994), + [6349] = {.count = 1, .reusable = true}, SHIFT(4002), + [6351] = {.count = 1, .reusable = true}, SHIFT(4005), + [6353] = {.count = 1, .reusable = true}, SHIFT(4008), + [6355] = {.count = 1, .reusable = true}, SHIFT(4010), + [6357] = {.count = 1, .reusable = false}, SHIFT(4012), + [6359] = {.count = 1, .reusable = true}, SHIFT(4013), + [6361] = {.count = 1, .reusable = true}, SHIFT(4014), + [6363] = {.count = 1, .reusable = false}, SHIFT(4018), + [6365] = {.count = 1, .reusable = false}, SHIFT(4014), + [6367] = {.count = 1, .reusable = true}, SHIFT(4022), + [6369] = {.count = 1, .reusable = true}, SHIFT(4024), + [6371] = {.count = 1, .reusable = true}, SHIFT(4028), + [6373] = {.count = 1, .reusable = false}, SHIFT(4030), + [6375] = {.count = 1, .reusable = true}, SHIFT(4029), + [6377] = {.count = 1, .reusable = false}, SHIFT(4027), + [6379] = {.count = 1, .reusable = false}, SHIFT(4035), + [6381] = {.count = 1, .reusable = true}, SHIFT(4036), + [6383] = {.count = 1, .reusable = true}, SHIFT(4037), + [6385] = {.count = 1, .reusable = true}, SHIFT(4038), + [6387] = {.count = 1, .reusable = false}, SHIFT(4043), + [6389] = {.count = 1, .reusable = false}, SHIFT(4038), + [6391] = {.count = 1, .reusable = true}, SHIFT(4046), + [6393] = {.count = 1, .reusable = true}, SHIFT(4049), + [6395] = {.count = 1, .reusable = true}, SHIFT(4052), + [6397] = {.count = 1, .reusable = true}, SHIFT(4054), + [6399] = {.count = 1, .reusable = false}, SHIFT(4056), + [6401] = {.count = 1, .reusable = true}, SHIFT(4057), + [6403] = {.count = 1, .reusable = false}, SHIFT(4058), + [6405] = {.count = 1, .reusable = true}, SHIFT(4059), + [6407] = {.count = 1, .reusable = false}, SHIFT(4060), + [6409] = {.count = 1, .reusable = false}, SHIFT(4061), + [6411] = {.count = 1, .reusable = false}, SHIFT(4062), + [6413] = {.count = 1, .reusable = true}, SHIFT(4063), + [6415] = {.count = 1, .reusable = false}, SHIFT(4064), + [6417] = {.count = 1, .reusable = false}, SHIFT(4065), + [6419] = {.count = 1, .reusable = false}, SHIFT(4066), + [6421] = {.count = 1, .reusable = false}, SHIFT(4067), + [6423] = {.count = 1, .reusable = true}, SHIFT(4060), + [6425] = {.count = 1, .reusable = true}, SHIFT(4073), + [6427] = {.count = 1, .reusable = true}, SHIFT(4074), + [6429] = {.count = 1, .reusable = true}, SHIFT(4078), + [6431] = {.count = 1, .reusable = false}, SHIFT(4080), + [6433] = {.count = 1, .reusable = true}, SHIFT(4079), + [6435] = {.count = 1, .reusable = false}, SHIFT(4077), + [6437] = {.count = 1, .reusable = false}, SHIFT(4085), + [6439] = {.count = 1, .reusable = true}, SHIFT(4086), + [6441] = {.count = 1, .reusable = true}, SHIFT(4087), + [6443] = {.count = 1, .reusable = false}, SHIFT(4092), + [6445] = {.count = 1, .reusable = false}, SHIFT(4087), + [6447] = {.count = 1, .reusable = true}, SHIFT(4095), + [6449] = {.count = 1, .reusable = true}, SHIFT(4098), + [6451] = {.count = 1, .reusable = true}, SHIFT(4101), + [6453] = {.count = 1, .reusable = true}, SHIFT(4103), + [6455] = {.count = 1, .reusable = false}, SHIFT(4105), + [6457] = {.count = 1, .reusable = true}, SHIFT(4106), + [6459] = {.count = 1, .reusable = true}, SHIFT(4107), + [6461] = {.count = 1, .reusable = false}, SHIFT(4111), + [6463] = {.count = 1, .reusable = false}, SHIFT(4107), + [6465] = {.count = 1, .reusable = true}, SHIFT(4115), + [6467] = {.count = 1, .reusable = true}, SHIFT(4117), + [6469] = {.count = 1, .reusable = true}, REDUCE(sym_field_assignment, 3, .alias_sequence_id = 5), + [6471] = {.count = 1, .reusable = true}, REDUCE(aux_sym__record_assignments1_repeat1, 2), + [6473] = {.count = 2, .reusable = true}, REDUCE(aux_sym__record_assignments1_repeat1, 2), SHIFT_REPEAT(1535), + [6476] = {.count = 1, .reusable = true}, SHIFT(4118), + [6478] = {.count = 1, .reusable = true}, SHIFT(4119), + [6480] = {.count = 1, .reusable = true}, SHIFT(4121), + [6482] = {.count = 1, .reusable = false}, SHIFT(4123), + [6484] = {.count = 1, .reusable = true}, SHIFT(4125), + [6486] = {.count = 1, .reusable = true}, REDUCE(sym_module_assignment, 3), + [6488] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1537), + [6491] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1538), + [6494] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1539), + [6497] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1540), + [6500] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1541), + [6503] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1543), + [6506] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1546), + [6509] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1545), + [6512] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1547), + [6515] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1548), + [6518] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1539), + [6521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1544), + [6524] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1549), + [6527] = {.count = 2, .reusable = true}, REDUCE(aux_sym_module_macro_repeat1, 2), SHIFT_REPEAT(1542), + [6530] = {.count = 1, .reusable = true}, SHIFT(4126), + [6532] = {.count = 1, .reusable = true}, SHIFT(4127), + [6534] = {.count = 1, .reusable = false}, SHIFT(4129), + [6536] = {.count = 1, .reusable = true}, SHIFT(4130), + [6538] = {.count = 1, .reusable = true}, REDUCE(sym_record, 5), + [6540] = {.count = 1, .reusable = true}, SHIFT(4134), + [6542] = {.count = 1, .reusable = true}, SHIFT(4135), + [6544] = {.count = 1, .reusable = true}, SHIFT(4136), + [6546] = {.count = 1, .reusable = true}, SHIFT(4137), + [6548] = {.count = 1, .reusable = true}, SHIFT(4138), + [6550] = {.count = 1, .reusable = false}, REDUCE(sym_record_assignments, 5), + [6552] = {.count = 1, .reusable = true}, REDUCE(sym_record_assignments, 5), + [6554] = {.count = 1, .reusable = true}, REDUCE(sym__field_assignments1, 2), + [6556] = {.count = 1, .reusable = true}, REDUCE(sym_record_induction, 1), + [6558] = {.count = 1, .reusable = true}, REDUCE(sym_record_eta, 1), + [6560] = {.count = 1, .reusable = true}, SHIFT(4143), + [6562] = {.count = 1, .reusable = false}, SHIFT(4144), + [6564] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 2), + [6566] = {.count = 1, .reusable = true}, SHIFT(4145), + [6568] = {.count = 1, .reusable = true}, SHIFT(4146), + [6570] = {.count = 1, .reusable = true}, REDUCE(sym_record_signature_only, 5), + [6572] = {.count = 1, .reusable = true}, SHIFT(4149), + [6574] = {.count = 1, .reusable = true}, SHIFT(4152), + [6576] = {.count = 1, .reusable = true}, SHIFT(4153), + [6578] = {.count = 1, .reusable = true}, SHIFT(4154), + [6580] = {.count = 1, .reusable = true}, SHIFT(4155), + [6582] = {.count = 1, .reusable = true}, SHIFT(4156), + [6584] = {.count = 1, .reusable = true}, SHIFT(4159), + [6586] = {.count = 1, .reusable = true}, SHIFT(4161), + [6588] = {.count = 1, .reusable = true}, SHIFT(4162), + [6590] = {.count = 1, .reusable = true}, SHIFT(4163), + [6592] = {.count = 1, .reusable = true}, SHIFT(4167), + [6594] = {.count = 1, .reusable = true}, SHIFT(4168), + [6596] = {.count = 1, .reusable = true}, SHIFT(4169), + [6598] = {.count = 1, .reusable = true}, SHIFT(4170), + [6600] = {.count = 1, .reusable = true}, SHIFT(4171), + [6602] = {.count = 1, .reusable = true}, SHIFT(4174), + [6604] = {.count = 1, .reusable = true}, SHIFT(4176), + [6606] = {.count = 1, .reusable = true}, SHIFT(4177), + [6608] = {.count = 1, .reusable = true}, SHIFT(4178), + [6610] = {.count = 1, .reusable = true}, SHIFT(4180), + [6612] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 3), + [6614] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 3), + [6616] = {.count = 1, .reusable = true}, SHIFT(4182), + [6618] = {.count = 1, .reusable = true}, REDUCE(sym_syntax, 5), + [6620] = {.count = 1, .reusable = false}, SHIFT(4185), + [6622] = {.count = 1, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), + [6624] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), + [6626] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 3), + [6628] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 3), + [6630] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1686), + [6633] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1686), + [6636] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1687), + [6639] = {.count = 2, .reusable = true}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1690), + [6642] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1690), + [6645] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat1, 2), SHIFT_REPEAT(1691), + [6648] = {.count = 1, .reusable = true}, SHIFT(4187), + [6650] = {.count = 1, .reusable = false}, SHIFT(4187), + [6652] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig, 3), + [6654] = {.count = 1, .reusable = true}, SHIFT(4191), + [6656] = {.count = 1, .reusable = true}, SHIFT(4192), + [6658] = {.count = 1, .reusable = true}, SHIFT(4193), + [6660] = {.count = 1, .reusable = true}, SHIFT(4198), + [6662] = {.count = 1, .reusable = true}, SHIFT(4199), + [6664] = {.count = 1, .reusable = true}, SHIFT(4200), + [6666] = {.count = 1, .reusable = true}, SHIFT(4202), + [6668] = {.count = 1, .reusable = true}, SHIFT(4203), + [6670] = {.count = 1, .reusable = false}, SHIFT(4205), + [6672] = {.count = 1, .reusable = true}, SHIFT(4206), + [6674] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1719), + [6677] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1720), + [6680] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1721), + [6683] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1722), + [6686] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1723), + [6689] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1724), + [6692] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1725), + [6695] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1726), + [6698] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1727), + [6701] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1728), + [6704] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1721), + [6707] = {.count = 1, .reusable = true}, SHIFT(4207), + [6709] = {.count = 1, .reusable = true}, SHIFT(4209), + [6711] = {.count = 1, .reusable = true}, REDUCE(sym__do_stmt_where, 3, .alias_sequence_id = 9), + [6713] = {.count = 1, .reusable = true}, REDUCE(sym_open, 5), + [6715] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 5), + [6717] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(309), + [6720] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1749), + [6723] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1750), + [6726] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(313), + [6729] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1752), + [6732] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(1753), + [6735] = {.count = 2, .reusable = true}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(313), + [6738] = {.count = 2, .reusable = false}, REDUCE(aux_sym__typed_untyped_binding1_repeat1, 2), SHIFT_REPEAT(316), + [6741] = {.count = 1, .reusable = false}, SHIFT(4214), + [6743] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 3), + [6745] = {.count = 1, .reusable = true}, SHIFT(4215), + [6747] = {.count = 1, .reusable = true}, SHIFT(4217), + [6749] = {.count = 1, .reusable = true}, SHIFT(4216), + [6751] = {.count = 1, .reusable = true}, SHIFT(4219), + [6753] = {.count = 1, .reusable = false}, SHIFT(4221), + [6755] = {.count = 1, .reusable = true}, SHIFT(4222), + [6757] = {.count = 1, .reusable = true}, REDUCE(sym__comma_import_names1, 1), + [6759] = {.count = 1, .reusable = true}, SHIFT(4224), + [6761] = {.count = 1, .reusable = true}, SHIFT(4226), + [6763] = {.count = 1, .reusable = false}, SHIFT(4231), + [6765] = {.count = 1, .reusable = false}, SHIFT(4226), + [6767] = {.count = 1, .reusable = false}, SHIFT(3079), + [6769] = {.count = 1, .reusable = true}, SHIFT(3080), + [6771] = {.count = 1, .reusable = false}, SHIFT(3081), + [6773] = {.count = 1, .reusable = false}, SHIFT(3082), + [6775] = {.count = 1, .reusable = true}, SHIFT(3083), + [6777] = {.count = 1, .reusable = false}, SHIFT(3084), + [6779] = {.count = 1, .reusable = false}, SHIFT(3085), + [6781] = {.count = 1, .reusable = false}, SHIFT(3086), + [6783] = {.count = 1, .reusable = false}, SHIFT(3087), + [6785] = {.count = 1, .reusable = false}, SHIFT(3088), + [6787] = {.count = 1, .reusable = true}, SHIFT(3081), + [6789] = {.count = 1, .reusable = true}, SHIFT(4234), + [6791] = {.count = 1, .reusable = true}, SHIFT(4236), + [6793] = {.count = 1, .reusable = true}, SHIFT(4237), + [6795] = {.count = 1, .reusable = true}, REDUCE(sym_untyped_binding, 4), + [6797] = {.count = 1, .reusable = false}, REDUCE(sym_untyped_binding, 4), + [6799] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1803), + [6802] = {.count = 1, .reusable = false}, SHIFT(4243), + [6804] = {.count = 1, .reusable = true}, SHIFT(4245), + [6806] = {.count = 1, .reusable = false}, SHIFT(4247), + [6808] = {.count = 1, .reusable = true}, SHIFT(4248), + [6810] = {.count = 1, .reusable = true}, SHIFT(4249), + [6812] = {.count = 1, .reusable = true}, SHIFT(4250), + [6814] = {.count = 1, .reusable = true}, SHIFT(4251), + [6816] = {.count = 1, .reusable = true}, SHIFT(4256), + [6818] = {.count = 1, .reusable = true}, SHIFT(4257), + [6820] = {.count = 1, .reusable = true}, SHIFT(4258), + [6822] = {.count = 1, .reusable = false}, REDUCE(sym_catchall_pragma, 3), + [6824] = {.count = 1, .reusable = true}, REDUCE(sym_catchall_pragma, 3), + [6826] = {.count = 1, .reusable = true}, SHIFT(4260), + [6828] = {.count = 1, .reusable = true}, SHIFT(4264), + [6830] = {.count = 1, .reusable = false}, SHIFT(4266), + [6832] = {.count = 1, .reusable = true}, SHIFT(4265), + [6834] = {.count = 1, .reusable = false}, SHIFT(4263), + [6836] = {.count = 1, .reusable = false}, SHIFT(4271), + [6838] = {.count = 1, .reusable = true}, SHIFT(4272), + [6840] = {.count = 1, .reusable = true}, SHIFT(4274), + [6842] = {.count = 1, .reusable = true}, SHIFT(4277), + [6844] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(1839), + [6847] = {.count = 1, .reusable = false}, SHIFT(4279), + [6849] = {.count = 1, .reusable = true}, SHIFT(4281), + [6851] = {.count = 1, .reusable = true}, SHIFT(4283), + [6853] = {.count = 1, .reusable = false}, SHIFT(4285), + [6855] = {.count = 1, .reusable = true}, SHIFT(4286), + [6857] = {.count = 1, .reusable = true}, SHIFT(4287), + [6859] = {.count = 1, .reusable = true}, SHIFT(4288), + [6861] = {.count = 1, .reusable = true}, SHIFT(4289), + [6863] = {.count = 1, .reusable = true}, SHIFT(4291), + [6865] = {.count = 1, .reusable = true}, SHIFT(4294), + [6867] = {.count = 1, .reusable = true}, SHIFT(4296), + [6869] = {.count = 1, .reusable = false}, SHIFT(4298), + [6871] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 3), + [6873] = {.count = 1, .reusable = true}, SHIFT(4299), + [6875] = {.count = 1, .reusable = false}, SHIFT(4300), + [6877] = {.count = 1, .reusable = false}, SHIFT(3190), + [6879] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_clauses_no_single_absurd, 3), + [6881] = {.count = 1, .reusable = true}, SHIFT(4307), + [6883] = {.count = 1, .reusable = true}, SHIFT(4308), + [6885] = {.count = 1, .reusable = false}, SHIFT(4310), + [6887] = {.count = 1, .reusable = true}, SHIFT(4311), + [6889] = {.count = 1, .reusable = false}, SHIFT(4313), + [6891] = {.count = 1, .reusable = true}, REDUCE(sym__lambda_where_block, 3), + [6893] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(805), + [6896] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1880), + [6899] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1876), + [6902] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1881), + [6905] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1107), + [6908] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1882), + [6911] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1108), + [6914] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1883), + [6917] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1884), + [6920] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1878), + [6923] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1105), + [6926] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1103), + [6929] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1877), + [6932] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(19), + [6935] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1879), + [6938] = {.count = 1, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), + [6940] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1885), + [6943] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1886), + [6946] = {.count = 2, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1115), + [6949] = {.count = 2, .reusable = true}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), SHIFT_REPEAT(1877), + [6952] = {.count = 1, .reusable = false}, REDUCE(aux_sym__lambda_where_block_repeat1, 2), + [6954] = {.count = 1, .reusable = true}, SHIFT(4314), + [6956] = {.count = 1, .reusable = true}, SHIFT(4316), + [6958] = {.count = 1, .reusable = true}, SHIFT(4317), + [6960] = {.count = 1, .reusable = true}, SHIFT(4318), + [6962] = {.count = 1, .reusable = true}, SHIFT(4320), + [6964] = {.count = 1, .reusable = true}, SHIFT(4321), + [6966] = {.count = 1, .reusable = true}, SHIFT(4322), + [6968] = {.count = 1, .reusable = true}, SHIFT(4326), + [6970] = {.count = 1, .reusable = false}, SHIFT(4328), + [6972] = {.count = 1, .reusable = true}, SHIFT(4327), + [6974] = {.count = 1, .reusable = false}, SHIFT(4325), + [6976] = {.count = 1, .reusable = false}, SHIFT(4333), + [6978] = {.count = 1, .reusable = true}, SHIFT(4334), + [6980] = {.count = 1, .reusable = true}, SHIFT(4335), + [6982] = {.count = 1, .reusable = false}, SHIFT(4340), + [6984] = {.count = 1, .reusable = false}, SHIFT(4335), + [6986] = {.count = 1, .reusable = true}, SHIFT(4343), + [6988] = {.count = 1, .reusable = true}, SHIFT(4346), + [6990] = {.count = 1, .reusable = true}, SHIFT(4349), + [6992] = {.count = 1, .reusable = true}, SHIFT(4351), + [6994] = {.count = 1, .reusable = false}, SHIFT(4353), + [6996] = {.count = 1, .reusable = true}, SHIFT(4354), + [6998] = {.count = 1, .reusable = true}, REDUCE(sym_data, 5, .alias_sequence_id = 7), + [7000] = {.count = 1, .reusable = true}, SHIFT(4356), + [7002] = {.count = 1, .reusable = false}, SHIFT(4360), + [7004] = {.count = 1, .reusable = false}, SHIFT(4356), + [7006] = {.count = 1, .reusable = true}, SHIFT(4364), + [7008] = {.count = 1, .reusable = true}, SHIFT(4366), + [7010] = {.count = 1, .reusable = true}, SHIFT(4367), + [7012] = {.count = 1, .reusable = true}, SHIFT(4368), + [7014] = {.count = 1, .reusable = true}, SHIFT(4373), + [7016] = {.count = 1, .reusable = true}, REDUCE(sym_data_signature_only, 5, .alias_sequence_id = 7), + [7018] = {.count = 1, .reusable = false}, SHIFT(4377), + [7020] = {.count = 1, .reusable = false}, SHIFT(4378), + [7022] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 2), + [7024] = {.count = 1, .reusable = true}, SHIFT(4379), + [7026] = {.count = 1, .reusable = true}, SHIFT(4380), + [7028] = {.count = 1, .reusable = true}, SHIFT(4381), + [7030] = {.count = 1, .reusable = true}, SHIFT(4382), + [7032] = {.count = 1, .reusable = true}, SHIFT(4383), + [7034] = {.count = 1, .reusable = true}, REDUCE(sym_module, 5, .alias_sequence_id = 8), + [7036] = {.count = 1, .reusable = true}, SHIFT(4388), + [7038] = {.count = 1, .reusable = true}, SHIFT(4389), + [7040] = {.count = 1, .reusable = true}, SHIFT(4390), + [7042] = {.count = 1, .reusable = true}, SHIFT(4391), + [7044] = {.count = 1, .reusable = true}, SHIFT(4392), + [7046] = {.count = 1, .reusable = true}, SHIFT(4395), + [7048] = {.count = 1, .reusable = true}, SHIFT(4396), + [7050] = {.count = 1, .reusable = true}, SHIFT(4397), + [7052] = {.count = 1, .reusable = true}, SHIFT(4398), + [7054] = {.count = 1, .reusable = true}, SHIFT(4403), + [7056] = {.count = 1, .reusable = true}, SHIFT(4404), + [7058] = {.count = 1, .reusable = true}, SHIFT(4405), + [7060] = {.count = 1, .reusable = true}, SHIFT(4407), + [7062] = {.count = 1, .reusable = true}, SHIFT(4408), + [7064] = {.count = 1, .reusable = false}, SHIFT(4410), + [7066] = {.count = 1, .reusable = true}, SHIFT(4411), + [7068] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2049), + [7071] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2050), + [7074] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2051), + [7077] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2052), + [7080] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2053), + [7083] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2054), + [7086] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2055), + [7089] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2056), + [7092] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2057), + [7095] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2058), + [7098] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2051), + [7101] = {.count = 1, .reusable = true}, SHIFT(4412), + [7103] = {.count = 1, .reusable = true}, SHIFT(4414), + [7105] = {.count = 1, .reusable = true}, SHIFT(4416), + [7107] = {.count = 1, .reusable = true}, SHIFT(4417), + [7109] = {.count = 1, .reusable = false}, SHIFT(4419), + [7111] = {.count = 1, .reusable = true}, SHIFT(4420), + [7113] = {.count = 1, .reusable = true}, REDUCE(sym_where_clause, 4), + [7115] = {.count = 1, .reusable = true}, SHIFT(4421), + [7117] = {.count = 1, .reusable = true}, SHIFT(4422), + [7119] = {.count = 1, .reusable = true}, SHIFT(4423), + [7121] = {.count = 1, .reusable = true}, SHIFT(4428), + [7123] = {.count = 1, .reusable = true}, SHIFT(4429), + [7125] = {.count = 1, .reusable = true}, SHIFT(4430), + [7127] = {.count = 1, .reusable = true}, SHIFT(4432), + [7129] = {.count = 1, .reusable = true}, SHIFT(4433), + [7131] = {.count = 1, .reusable = false}, SHIFT(4435), + [7133] = {.count = 1, .reusable = true}, SHIFT(4436), + [7135] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2112), + [7138] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2113), + [7141] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2114), + [7144] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2115), + [7147] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2116), + [7150] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2117), + [7153] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2118), + [7156] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2119), + [7159] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2120), + [7162] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2121), + [7165] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2114), + [7168] = {.count = 1, .reusable = true}, SHIFT(4437), + [7170] = {.count = 1, .reusable = true}, SHIFT(4439), + [7172] = {.count = 1, .reusable = true}, SHIFT(4441), + [7174] = {.count = 1, .reusable = false}, SHIFT(4444), + [7176] = {.count = 1, .reusable = false}, SHIFT(4441), + [7178] = {.count = 1, .reusable = true}, SHIFT(4449), + [7180] = {.count = 1, .reusable = false}, SHIFT(4450), + [7182] = {.count = 1, .reusable = false}, SHIFT(4451), + [7184] = {.count = 1, .reusable = false}, SHIFT(4452), + [7186] = {.count = 1, .reusable = false}, SHIFT(4453), + [7188] = {.count = 1, .reusable = true}, SHIFT(4454), + [7190] = {.count = 1, .reusable = false}, SHIFT(4458), + [7192] = {.count = 1, .reusable = true}, SHIFT(4456), + [7194] = {.count = 1, .reusable = false}, SHIFT(4457), + [7196] = {.count = 1, .reusable = false}, SHIFT(4459), + [7198] = {.count = 1, .reusable = true}, SHIFT(4460), + [7200] = {.count = 1, .reusable = true}, SHIFT(4461), + [7202] = {.count = 1, .reusable = true}, SHIFT(4462), + [7204] = {.count = 1, .reusable = true}, SHIFT(4463), + [7206] = {.count = 1, .reusable = true}, SHIFT(4468), + [7208] = {.count = 1, .reusable = true}, SHIFT(4469), + [7210] = {.count = 1, .reusable = true}, SHIFT(4470), + [7212] = {.count = 1, .reusable = true}, SHIFT(4472), + [7214] = {.count = 1, .reusable = true}, SHIFT(4473), + [7216] = {.count = 1, .reusable = false}, SHIFT(4475), + [7218] = {.count = 1, .reusable = true}, SHIFT(4476), + [7220] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2149), + [7223] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2150), + [7226] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2151), + [7229] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2152), + [7232] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2153), + [7235] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2154), + [7238] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2155), + [7241] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2156), + [7244] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2157), + [7247] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2158), + [7250] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2151), + [7253] = {.count = 1, .reusable = true}, SHIFT(4477), + [7255] = {.count = 1, .reusable = true}, SHIFT(4479), + [7257] = {.count = 1, .reusable = true}, SHIFT(4481), + [7259] = {.count = 1, .reusable = true}, SHIFT(4482), + [7261] = {.count = 1, .reusable = false}, SHIFT(4484), + [7263] = {.count = 1, .reusable = true}, SHIFT(4485), + [7265] = {.count = 1, .reusable = true}, SHIFT(4486), + [7267] = {.count = 1, .reusable = true}, SHIFT(4487), + [7269] = {.count = 1, .reusable = true}, SHIFT(4488), + [7271] = {.count = 1, .reusable = true}, SHIFT(4493), + [7273] = {.count = 1, .reusable = true}, SHIFT(4494), + [7275] = {.count = 1, .reusable = true}, SHIFT(4495), + [7277] = {.count = 1, .reusable = true}, SHIFT(4497), + [7279] = {.count = 1, .reusable = true}, SHIFT(4498), + [7281] = {.count = 1, .reusable = false}, SHIFT(4500), + [7283] = {.count = 1, .reusable = true}, SHIFT(4501), + [7285] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2211), + [7288] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2212), + [7291] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2213), + [7294] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2214), + [7297] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2215), + [7300] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2216), + [7303] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2217), + [7306] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2218), + [7309] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2219), + [7312] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2220), + [7315] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2213), + [7318] = {.count = 1, .reusable = true}, SHIFT(4502), + [7320] = {.count = 1, .reusable = true}, SHIFT(4504), + [7322] = {.count = 1, .reusable = true}, SHIFT(4506), + [7324] = {.count = 1, .reusable = false}, SHIFT(4509), + [7326] = {.count = 1, .reusable = false}, SHIFT(4506), + [7328] = {.count = 1, .reusable = true}, SHIFT(4514), + [7330] = {.count = 1, .reusable = false}, SHIFT(4515), + [7332] = {.count = 1, .reusable = false}, SHIFT(4516), + [7334] = {.count = 1, .reusable = false}, SHIFT(4517), + [7336] = {.count = 1, .reusable = false}, SHIFT(4518), + [7338] = {.count = 1, .reusable = true}, SHIFT(4519), + [7340] = {.count = 1, .reusable = false}, SHIFT(4523), + [7342] = {.count = 1, .reusable = true}, SHIFT(4521), + [7344] = {.count = 1, .reusable = false}, SHIFT(4522), + [7346] = {.count = 1, .reusable = false}, SHIFT(4524), + [7348] = {.count = 1, .reusable = true}, SHIFT(4525), + [7350] = {.count = 1, .reusable = true}, SHIFT(4526), + [7352] = {.count = 1, .reusable = true}, SHIFT(4527), + [7354] = {.count = 1, .reusable = true}, SHIFT(4528), + [7356] = {.count = 1, .reusable = true}, SHIFT(4533), + [7358] = {.count = 1, .reusable = true}, SHIFT(4534), + [7360] = {.count = 1, .reusable = true}, SHIFT(4535), + [7362] = {.count = 1, .reusable = true}, SHIFT(4537), + [7364] = {.count = 1, .reusable = true}, SHIFT(4538), + [7366] = {.count = 1, .reusable = false}, SHIFT(4540), + [7368] = {.count = 1, .reusable = true}, SHIFT(4541), + [7370] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2248), + [7373] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2249), + [7376] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2250), + [7379] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2251), + [7382] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2252), + [7385] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2253), + [7388] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2254), + [7391] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2255), + [7394] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2256), + [7397] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2257), + [7400] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2250), + [7403] = {.count = 1, .reusable = true}, SHIFT(4542), + [7405] = {.count = 1, .reusable = true}, SHIFT(4544), + [7407] = {.count = 1, .reusable = true}, SHIFT(4546), + [7409] = {.count = 1, .reusable = true}, SHIFT(4547), + [7411] = {.count = 1, .reusable = false}, SHIFT(4549), + [7413] = {.count = 1, .reusable = true}, SHIFT(4550), + [7415] = {.count = 1, .reusable = true}, SHIFT(4551), + [7417] = {.count = 1, .reusable = true}, SHIFT(4552), + [7419] = {.count = 1, .reusable = true}, SHIFT(4553), + [7421] = {.count = 1, .reusable = true}, SHIFT(4554), + [7423] = {.count = 1, .reusable = true}, SHIFT(4559), + [7425] = {.count = 1, .reusable = true}, SHIFT(4560), + [7427] = {.count = 1, .reusable = true}, SHIFT(4561), + [7429] = {.count = 1, .reusable = true}, SHIFT(4563), + [7431] = {.count = 1, .reusable = true}, SHIFT(4564), + [7433] = {.count = 1, .reusable = false}, SHIFT(4566), + [7435] = {.count = 1, .reusable = true}, SHIFT(4567), + [7437] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2313), + [7440] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2314), + [7443] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2315), + [7446] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2316), + [7449] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2317), + [7452] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2318), + [7455] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2319), + [7458] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2320), + [7461] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2321), + [7464] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2322), + [7467] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2315), + [7470] = {.count = 1, .reusable = true}, SHIFT(4568), + [7472] = {.count = 1, .reusable = true}, SHIFT(4570), + [7474] = {.count = 1, .reusable = true}, SHIFT(4572), + [7476] = {.count = 1, .reusable = true}, SHIFT(4573), + [7478] = {.count = 1, .reusable = false}, SHIFT(4575), + [7480] = {.count = 1, .reusable = true}, SHIFT(4576), + [7482] = {.count = 1, .reusable = true}, SHIFT(4583), + [7484] = {.count = 1, .reusable = true}, SHIFT(4584), + [7486] = {.count = 1, .reusable = true}, SHIFT(4585), + [7488] = {.count = 1, .reusable = true}, SHIFT(4586), + [7490] = {.count = 1, .reusable = true}, SHIFT(4587), + [7492] = {.count = 1, .reusable = true}, SHIFT(4590), + [7494] = {.count = 1, .reusable = true}, SHIFT(4592), + [7496] = {.count = 1, .reusable = false}, SHIFT(4596), + [7498] = {.count = 1, .reusable = false}, SHIFT(4592), + [7500] = {.count = 1, .reusable = true}, SHIFT(4600), + [7502] = {.count = 1, .reusable = true}, SHIFT(4602), + [7504] = {.count = 1, .reusable = true}, SHIFT(4603), + [7506] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 5), + [7508] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 5), + [7510] = {.count = 1, .reusable = true}, SHIFT(4604), + [7512] = {.count = 1, .reusable = false}, REDUCE(sym__lambda_where_block, 3), + [7514] = {.count = 1, .reusable = true}, SHIFT(4609), + [7516] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2431), + [7519] = {.count = 1, .reusable = true}, SHIFT(4612), + [7521] = {.count = 1, .reusable = true}, SHIFT(4613), + [7523] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 5), + [7525] = {.count = 1, .reusable = true}, SHIFT(4617), + [7527] = {.count = 1, .reusable = true}, SHIFT(4618), + [7529] = {.count = 1, .reusable = true}, SHIFT(4619), + [7531] = {.count = 1, .reusable = true}, SHIFT(4620), + [7533] = {.count = 1, .reusable = true}, SHIFT(4621), + [7535] = {.count = 1, .reusable = true}, SHIFT(4624), + [7537] = {.count = 1, .reusable = true}, SHIFT(4626), + [7539] = {.count = 1, .reusable = false}, SHIFT(4630), + [7541] = {.count = 1, .reusable = false}, SHIFT(4626), + [7543] = {.count = 1, .reusable = true}, SHIFT(4634), + [7545] = {.count = 1, .reusable = true}, SHIFT(4636), + [7547] = {.count = 1, .reusable = true}, SHIFT(4637), + [7549] = {.count = 1, .reusable = true}, SHIFT(4638), + [7551] = {.count = 1, .reusable = true}, SHIFT(4639), + [7553] = {.count = 1, .reusable = true}, SHIFT(4640), + [7555] = {.count = 1, .reusable = true}, SHIFT(4641), + [7557] = {.count = 1, .reusable = true}, SHIFT(4645), + [7559] = {.count = 1, .reusable = false}, SHIFT(4647), + [7561] = {.count = 1, .reusable = true}, SHIFT(4646), + [7563] = {.count = 1, .reusable = false}, SHIFT(4644), + [7565] = {.count = 1, .reusable = false}, SHIFT(4652), + [7567] = {.count = 1, .reusable = true}, SHIFT(4653), + [7569] = {.count = 1, .reusable = true}, SHIFT(4654), + [7571] = {.count = 1, .reusable = false}, SHIFT(4659), + [7573] = {.count = 1, .reusable = false}, SHIFT(4654), + [7575] = {.count = 1, .reusable = true}, SHIFT(4662), + [7577] = {.count = 1, .reusable = true}, SHIFT(4665), + [7579] = {.count = 1, .reusable = true}, SHIFT(4668), + [7581] = {.count = 1, .reusable = true}, SHIFT(4670), + [7583] = {.count = 1, .reusable = false}, SHIFT(4672), + [7585] = {.count = 1, .reusable = true}, SHIFT(4673), + [7587] = {.count = 1, .reusable = true}, SHIFT(4674), + [7589] = {.count = 1, .reusable = false}, SHIFT(4678), + [7591] = {.count = 1, .reusable = false}, SHIFT(4674), + [7593] = {.count = 1, .reusable = true}, SHIFT(4682), + [7595] = {.count = 1, .reusable = true}, SHIFT(4684), + [7597] = {.count = 1, .reusable = true}, SHIFT(4685), + [7599] = {.count = 1, .reusable = true}, SHIFT(4686), + [7601] = {.count = 1, .reusable = true}, SHIFT(4690), + [7603] = {.count = 1, .reusable = false}, SHIFT(4692), + [7605] = {.count = 1, .reusable = true}, SHIFT(4691), + [7607] = {.count = 1, .reusable = false}, SHIFT(4689), + [7609] = {.count = 1, .reusable = false}, SHIFT(4697), + [7611] = {.count = 1, .reusable = true}, SHIFT(4698), + [7613] = {.count = 1, .reusable = true}, SHIFT(4699), + [7615] = {.count = 1, .reusable = false}, SHIFT(4704), + [7617] = {.count = 1, .reusable = false}, SHIFT(4699), + [7619] = {.count = 1, .reusable = true}, SHIFT(4707), + [7621] = {.count = 1, .reusable = true}, SHIFT(4710), + [7623] = {.count = 1, .reusable = true}, SHIFT(4713), + [7625] = {.count = 1, .reusable = true}, SHIFT(4715), + [7627] = {.count = 1, .reusable = false}, SHIFT(4717), + [7629] = {.count = 1, .reusable = true}, SHIFT(4718), + [7631] = {.count = 1, .reusable = true}, SHIFT(4719), + [7633] = {.count = 1, .reusable = false}, SHIFT(4723), + [7635] = {.count = 1, .reusable = false}, SHIFT(4719), + [7637] = {.count = 1, .reusable = true}, SHIFT(4727), + [7639] = {.count = 1, .reusable = true}, REDUCE(sym__let_in, 6), + [7641] = {.count = 1, .reusable = false}, REDUCE(sym_syntax, 5), + [7643] = {.count = 1, .reusable = false}, SHIFT(4729), + [7645] = {.count = 1, .reusable = true}, SHIFT(4733), + [7647] = {.count = 1, .reusable = true}, SHIFT(4735), + [7649] = {.count = 1, .reusable = true}, SHIFT(4740), + [7651] = {.count = 1, .reusable = true}, SHIFT(4742), + [7653] = {.count = 1, .reusable = true}, SHIFT(4743), + [7655] = {.count = 1, .reusable = true}, SHIFT(4744), + [7657] = {.count = 1, .reusable = true}, SHIFT(4745), + [7659] = {.count = 1, .reusable = true}, SHIFT(4750), + [7661] = {.count = 1, .reusable = true}, SHIFT(4751), + [7663] = {.count = 1, .reusable = true}, SHIFT(4752), + [7665] = {.count = 1, .reusable = true}, SHIFT(4754), + [7667] = {.count = 1, .reusable = true}, SHIFT(4755), + [7669] = {.count = 1, .reusable = false}, SHIFT(4757), + [7671] = {.count = 1, .reusable = true}, SHIFT(4758), + [7673] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2644), + [7676] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2645), + [7679] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2646), + [7682] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2647), + [7685] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2648), + [7688] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2649), + [7691] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2650), + [7694] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2651), + [7697] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2652), + [7700] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2653), + [7703] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2646), + [7706] = {.count = 1, .reusable = true}, SHIFT(4759), + [7708] = {.count = 1, .reusable = true}, SHIFT(4761), + [7710] = {.count = 1, .reusable = true}, SHIFT(4763), + [7712] = {.count = 1, .reusable = true}, SHIFT(4764), + [7714] = {.count = 1, .reusable = false}, SHIFT(4766), + [7716] = {.count = 1, .reusable = true}, SHIFT(4767), + [7718] = {.count = 1, .reusable = true}, SHIFT(4768), + [7720] = {.count = 1, .reusable = true}, SHIFT(4769), + [7722] = {.count = 1, .reusable = true}, SHIFT(4770), + [7724] = {.count = 1, .reusable = true}, SHIFT(4775), + [7726] = {.count = 1, .reusable = true}, SHIFT(4776), + [7728] = {.count = 1, .reusable = true}, SHIFT(4777), + [7730] = {.count = 1, .reusable = true}, SHIFT(4779), + [7732] = {.count = 1, .reusable = true}, SHIFT(4780), + [7734] = {.count = 1, .reusable = false}, SHIFT(4782), + [7736] = {.count = 1, .reusable = true}, SHIFT(4783), + [7738] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2706), + [7741] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2707), + [7744] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2708), + [7747] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2709), + [7750] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2710), + [7753] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2711), + [7756] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2712), + [7759] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2713), + [7762] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2714), + [7765] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2715), + [7768] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2708), + [7771] = {.count = 1, .reusable = true}, SHIFT(4784), + [7773] = {.count = 1, .reusable = true}, SHIFT(4786), + [7775] = {.count = 1, .reusable = true}, SHIFT(4788), + [7777] = {.count = 1, .reusable = false}, SHIFT(4791), + [7779] = {.count = 1, .reusable = false}, SHIFT(4788), + [7781] = {.count = 1, .reusable = true}, SHIFT(4796), + [7783] = {.count = 1, .reusable = false}, SHIFT(4797), + [7785] = {.count = 1, .reusable = false}, SHIFT(4798), + [7787] = {.count = 1, .reusable = false}, SHIFT(4799), + [7789] = {.count = 1, .reusable = false}, SHIFT(4800), + [7791] = {.count = 1, .reusable = true}, SHIFT(4801), + [7793] = {.count = 1, .reusable = false}, SHIFT(4805), + [7795] = {.count = 1, .reusable = true}, SHIFT(4803), + [7797] = {.count = 1, .reusable = false}, SHIFT(4804), + [7799] = {.count = 1, .reusable = false}, SHIFT(4806), + [7801] = {.count = 1, .reusable = true}, SHIFT(4807), + [7803] = {.count = 1, .reusable = true}, SHIFT(4808), + [7805] = {.count = 1, .reusable = true}, SHIFT(4809), + [7807] = {.count = 1, .reusable = true}, SHIFT(4810), + [7809] = {.count = 1, .reusable = true}, SHIFT(4815), + [7811] = {.count = 1, .reusable = true}, SHIFT(4816), + [7813] = {.count = 1, .reusable = true}, SHIFT(4817), + [7815] = {.count = 1, .reusable = true}, SHIFT(4819), + [7817] = {.count = 1, .reusable = true}, SHIFT(4820), + [7819] = {.count = 1, .reusable = false}, SHIFT(4822), + [7821] = {.count = 1, .reusable = true}, SHIFT(4823), + [7823] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2743), + [7826] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2744), + [7829] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2745), + [7832] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2746), + [7835] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2747), + [7838] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2748), + [7841] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2749), + [7844] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2750), + [7847] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2751), + [7850] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2752), + [7853] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2745), + [7856] = {.count = 1, .reusable = true}, SHIFT(4824), + [7858] = {.count = 1, .reusable = true}, SHIFT(4826), + [7860] = {.count = 1, .reusable = true}, SHIFT(4828), + [7862] = {.count = 1, .reusable = true}, SHIFT(4829), + [7864] = {.count = 1, .reusable = false}, SHIFT(4831), + [7866] = {.count = 1, .reusable = true}, SHIFT(4832), + [7868] = {.count = 1, .reusable = true}, SHIFT(4833), + [7870] = {.count = 1, .reusable = true}, SHIFT(4834), + [7872] = {.count = 1, .reusable = true}, SHIFT(4835), + [7874] = {.count = 1, .reusable = true}, SHIFT(4840), + [7876] = {.count = 1, .reusable = true}, SHIFT(4841), + [7878] = {.count = 1, .reusable = true}, SHIFT(4842), + [7880] = {.count = 1, .reusable = true}, SHIFT(4844), + [7882] = {.count = 1, .reusable = true}, SHIFT(4845), + [7884] = {.count = 1, .reusable = false}, SHIFT(4847), + [7886] = {.count = 1, .reusable = true}, SHIFT(4848), + [7888] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2805), + [7891] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2806), + [7894] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2807), + [7897] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2808), + [7900] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2809), + [7903] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2810), + [7906] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2811), + [7909] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2812), + [7912] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2813), + [7915] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2814), + [7918] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2807), + [7921] = {.count = 1, .reusable = true}, SHIFT(4849), + [7923] = {.count = 1, .reusable = true}, SHIFT(4851), + [7925] = {.count = 1, .reusable = true}, SHIFT(4853), + [7927] = {.count = 1, .reusable = false}, SHIFT(4856), + [7929] = {.count = 1, .reusable = false}, SHIFT(4853), + [7931] = {.count = 1, .reusable = true}, SHIFT(4861), + [7933] = {.count = 1, .reusable = false}, SHIFT(4862), + [7935] = {.count = 1, .reusable = false}, SHIFT(4863), + [7937] = {.count = 1, .reusable = false}, SHIFT(4864), + [7939] = {.count = 1, .reusable = false}, SHIFT(4865), + [7941] = {.count = 1, .reusable = true}, SHIFT(4866), + [7943] = {.count = 1, .reusable = false}, SHIFT(4870), + [7945] = {.count = 1, .reusable = true}, SHIFT(4868), + [7947] = {.count = 1, .reusable = false}, SHIFT(4869), + [7949] = {.count = 1, .reusable = false}, SHIFT(4871), + [7951] = {.count = 1, .reusable = true}, SHIFT(4872), + [7953] = {.count = 1, .reusable = true}, SHIFT(4873), + [7955] = {.count = 1, .reusable = true}, SHIFT(4874), + [7957] = {.count = 1, .reusable = true}, SHIFT(4875), + [7959] = {.count = 1, .reusable = true}, SHIFT(4880), + [7961] = {.count = 1, .reusable = true}, SHIFT(4881), + [7963] = {.count = 1, .reusable = true}, SHIFT(4882), + [7965] = {.count = 1, .reusable = true}, SHIFT(4884), + [7967] = {.count = 1, .reusable = true}, SHIFT(4885), + [7969] = {.count = 1, .reusable = false}, SHIFT(4887), + [7971] = {.count = 1, .reusable = true}, SHIFT(4888), + [7973] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2842), + [7976] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2843), + [7979] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2844), + [7982] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2845), + [7985] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2846), + [7988] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2847), + [7991] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2848), + [7994] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2849), + [7997] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2850), + [8000] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2851), + [8003] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(2844), + [8006] = {.count = 1, .reusable = true}, SHIFT(4889), + [8008] = {.count = 1, .reusable = true}, SHIFT(4891), + [8010] = {.count = 1, .reusable = true}, SHIFT(4893), + [8012] = {.count = 1, .reusable = true}, SHIFT(4894), + [8014] = {.count = 1, .reusable = false}, SHIFT(4896), + [8016] = {.count = 1, .reusable = true}, SHIFT(4897), + [8018] = {.count = 1, .reusable = true}, SHIFT(4898), + [8020] = {.count = 1, .reusable = true}, SHIFT(4900), + [8022] = {.count = 1, .reusable = true}, SHIFT(4902), + [8024] = {.count = 1, .reusable = true}, REDUCE(sym_record, 6), + [8026] = {.count = 1, .reusable = true}, SHIFT(4904), + [8028] = {.count = 1, .reusable = true}, REDUCE(aux_sym__field_assignments1_repeat1, 2), + [8030] = {.count = 2, .reusable = true}, REDUCE(aux_sym__field_assignments1_repeat1, 2), SHIFT_REPEAT(2941), + [8033] = {.count = 1, .reusable = false}, SHIFT(4909), + [8035] = {.count = 1, .reusable = true}, REDUCE(sym_record_constructor, 2), + [8037] = {.count = 1, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), + [8039] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), + [8041] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 3), + [8043] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2944), + [8046] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2945), + [8049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(4911), + [8052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_record_declarations_block_repeat1, 2), SHIFT_REPEAT(2947), + [8055] = {.count = 1, .reusable = true}, SHIFT(4912), + [8057] = {.count = 1, .reusable = true}, SHIFT(4914), + [8059] = {.count = 1, .reusable = true}, SHIFT(4919), + [8061] = {.count = 1, .reusable = true}, SHIFT(4920), + [8063] = {.count = 1, .reusable = true}, SHIFT(4921), + [8065] = {.count = 1, .reusable = true}, SHIFT(4926), + [8067] = {.count = 1, .reusable = true}, SHIFT(4927), + [8069] = {.count = 1, .reusable = false}, SHIFT(4928), + [8071] = {.count = 1, .reusable = true}, SHIFT(4929), + [8073] = {.count = 1, .reusable = false}, SHIFT(4930), + [8075] = {.count = 1, .reusable = true}, REDUCE(aux_sym_syntax_repeat2, 2), + [8077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(4185), + [8080] = {.count = 1, .reusable = true}, REDUCE(sym_type_sig, 4), + [8082] = {.count = 1, .reusable = false}, REDUCE(sym__arg_name, 4), + [8084] = {.count = 1, .reusable = true}, REDUCE(sym__arg_name, 4), + [8086] = {.count = 1, .reusable = true}, REDUCE(aux_sym__arg_name_repeat2, 2), + [8088] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), SHIFT_REPEAT(1687), + [8091] = {.count = 1, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), + [8093] = {.count = 2, .reusable = false}, REDUCE(aux_sym__arg_name_repeat2, 2), SHIFT_REPEAT(1691), + [8096] = {.count = 1, .reusable = true}, SHIFT(4933), + [8098] = {.count = 1, .reusable = true}, SHIFT(4934), + [8100] = {.count = 1, .reusable = true}, SHIFT(4935), + [8102] = {.count = 1, .reusable = true}, SHIFT(4936), + [8104] = {.count = 1, .reusable = true}, SHIFT(4937), + [8106] = {.count = 1, .reusable = true}, SHIFT(4940), + [8108] = {.count = 1, .reusable = true}, SHIFT(4942), + [8110] = {.count = 1, .reusable = true}, SHIFT(4943), + [8112] = {.count = 1, .reusable = true}, REDUCE(sym_open, 6), + [8114] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 6), + [8116] = {.count = 1, .reusable = true}, SHIFT(4945), + [8118] = {.count = 1, .reusable = false}, SHIFT(4946), + [8120] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 4), + [8122] = {.count = 1, .reusable = true}, SHIFT(4948), + [8124] = {.count = 1, .reusable = true}, SHIFT(4950), + [8126] = {.count = 1, .reusable = true}, REDUCE(sym__import_name, 2), + [8128] = {.count = 1, .reusable = false}, SHIFT(4951), + [8130] = {.count = 1, .reusable = true}, REDUCE(sym__comma_import_names1, 2), + [8132] = {.count = 1, .reusable = true}, SHIFT(4953), + [8134] = {.count = 1, .reusable = true}, SHIFT(4954), + [8136] = {.count = 1, .reusable = true}, SHIFT(4955), + [8138] = {.count = 1, .reusable = false}, SHIFT(4957), + [8140] = {.count = 1, .reusable = true}, SHIFT(4958), + [8142] = {.count = 1, .reusable = true}, SHIFT(4959), + [8144] = {.count = 1, .reusable = true}, SHIFT(4960), + [8146] = {.count = 1, .reusable = true}, SHIFT(4961), + [8148] = {.count = 1, .reusable = true}, SHIFT(4964), + [8150] = {.count = 1, .reusable = true}, SHIFT(4965), + [8152] = {.count = 1, .reusable = true}, SHIFT(4966), + [8154] = {.count = 1, .reusable = true}, SHIFT(4967), + [8156] = {.count = 1, .reusable = true}, SHIFT(4968), + [8158] = {.count = 1, .reusable = true}, SHIFT(4971), + [8160] = {.count = 1, .reusable = true}, SHIFT(4972), + [8162] = {.count = 1, .reusable = true}, SHIFT(4973), + [8164] = {.count = 1, .reusable = true}, SHIFT(4978), + [8166] = {.count = 1, .reusable = true}, SHIFT(4979), + [8168] = {.count = 1, .reusable = true}, SHIFT(4980), + [8170] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3142), + [8173] = {.count = 1, .reusable = true}, SHIFT(4982), + [8175] = {.count = 1, .reusable = true}, SHIFT(4984), + [8177] = {.count = 1, .reusable = true}, SHIFT(4985), + [8179] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3175), + [8182] = {.count = 1, .reusable = false}, SHIFT(4986), + [8184] = {.count = 1, .reusable = true}, SHIFT(4988), + [8186] = {.count = 1, .reusable = true}, SHIFT(4990), + [8188] = {.count = 1, .reusable = false}, SHIFT(4992), + [8190] = {.count = 1, .reusable = true}, SHIFT(4993), + [8192] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_clause, 4), + [8194] = {.count = 1, .reusable = true}, SHIFT(4994), + [8196] = {.count = 1, .reusable = true}, SHIFT(4997), + [8198] = {.count = 1, .reusable = true}, SHIFT(4998), + [8200] = {.count = 1, .reusable = true}, SHIFT(4999), + [8202] = {.count = 1, .reusable = true}, SHIFT(5000), + [8204] = {.count = 1, .reusable = true}, SHIFT(5001), + [8206] = {.count = 1, .reusable = true}, SHIFT(5006), + [8208] = {.count = 1, .reusable = true}, SHIFT(5007), + [8210] = {.count = 1, .reusable = true}, SHIFT(5008), + [8212] = {.count = 1, .reusable = true}, SHIFT(5010), + [8214] = {.count = 1, .reusable = true}, SHIFT(5011), + [8216] = {.count = 1, .reusable = false}, SHIFT(5013), + [8218] = {.count = 1, .reusable = true}, SHIFT(5014), + [8220] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3244), + [8223] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3245), + [8226] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3246), + [8229] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3247), + [8232] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3248), + [8235] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3249), + [8238] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3250), + [8241] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3251), + [8244] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3252), + [8247] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3253), + [8250] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3246), + [8253] = {.count = 1, .reusable = true}, SHIFT(5015), + [8255] = {.count = 1, .reusable = true}, SHIFT(5017), + [8257] = {.count = 1, .reusable = true}, REDUCE(sym_data, 6, .alias_sequence_id = 7), + [8259] = {.count = 1, .reusable = true}, SHIFT(5019), + [8261] = {.count = 1, .reusable = true}, SHIFT(5020), + [8263] = {.count = 1, .reusable = false}, SHIFT(5022), + [8265] = {.count = 1, .reusable = true}, SHIFT(5023), + [8267] = {.count = 1, .reusable = true}, SHIFT(5025), + [8269] = {.count = 1, .reusable = true}, SHIFT(5026), + [8271] = {.count = 1, .reusable = true}, SHIFT(5027), + [8273] = {.count = 1, .reusable = true}, SHIFT(5028), + [8275] = {.count = 1, .reusable = false}, SHIFT(5028), + [8277] = {.count = 1, .reusable = true}, SHIFT(5033), + [8279] = {.count = 1, .reusable = true}, SHIFT(5040), + [8281] = {.count = 1, .reusable = true}, SHIFT(5041), + [8283] = {.count = 1, .reusable = true}, SHIFT(5042), + [8285] = {.count = 1, .reusable = true}, SHIFT(5043), + [8287] = {.count = 1, .reusable = true}, SHIFT(5044), + [8289] = {.count = 1, .reusable = true}, SHIFT(5047), + [8291] = {.count = 1, .reusable = true}, SHIFT(5049), + [8293] = {.count = 1, .reusable = true}, SHIFT(5050), + [8295] = {.count = 1, .reusable = true}, SHIFT(5051), + [8297] = {.count = 1, .reusable = true}, SHIFT(5055), + [8299] = {.count = 1, .reusable = true}, SHIFT(5056), + [8301] = {.count = 1, .reusable = true}, SHIFT(5057), + [8303] = {.count = 1, .reusable = true}, SHIFT(5058), + [8305] = {.count = 1, .reusable = true}, SHIFT(5059), + [8307] = {.count = 1, .reusable = true}, SHIFT(5062), + [8309] = {.count = 1, .reusable = true}, SHIFT(5064), + [8311] = {.count = 1, .reusable = true}, SHIFT(5065), + [8313] = {.count = 1, .reusable = true}, SHIFT(5066), + [8315] = {.count = 1, .reusable = true}, SHIFT(5067), + [8317] = {.count = 1, .reusable = false}, SHIFT(5069), + [8319] = {.count = 1, .reusable = true}, SHIFT(5070), + [8321] = {.count = 1, .reusable = true}, SHIFT(5073), + [8323] = {.count = 1, .reusable = true}, SHIFT(5074), + [8325] = {.count = 1, .reusable = true}, SHIFT(5075), + [8327] = {.count = 1, .reusable = true}, SHIFT(5076), + [8329] = {.count = 1, .reusable = true}, SHIFT(5077), + [8331] = {.count = 1, .reusable = true}, SHIFT(5080), + [8333] = {.count = 1, .reusable = true}, SHIFT(5082), + [8335] = {.count = 1, .reusable = true}, SHIFT(5083), + [8337] = {.count = 1, .reusable = true}, SHIFT(5084), + [8339] = {.count = 1, .reusable = true}, SHIFT(5088), + [8341] = {.count = 1, .reusable = true}, SHIFT(5089), + [8343] = {.count = 1, .reusable = true}, SHIFT(5090), + [8345] = {.count = 1, .reusable = true}, SHIFT(5091), + [8347] = {.count = 1, .reusable = true}, SHIFT(5092), + [8349] = {.count = 1, .reusable = true}, SHIFT(5095), + [8351] = {.count = 1, .reusable = true}, SHIFT(5097), + [8353] = {.count = 1, .reusable = true}, SHIFT(5098), + [8355] = {.count = 1, .reusable = true}, SHIFT(5099), + [8357] = {.count = 1, .reusable = true}, SHIFT(5100), + [8359] = {.count = 1, .reusable = false}, SHIFT(5102), + [8361] = {.count = 1, .reusable = true}, SHIFT(5103), + [8363] = {.count = 1, .reusable = true}, SHIFT(5106), + [8365] = {.count = 1, .reusable = true}, SHIFT(5107), + [8367] = {.count = 1, .reusable = true}, SHIFT(5108), + [8369] = {.count = 1, .reusable = true}, SHIFT(5109), + [8371] = {.count = 1, .reusable = true}, SHIFT(5110), + [8373] = {.count = 1, .reusable = true}, SHIFT(5113), + [8375] = {.count = 1, .reusable = true}, SHIFT(5115), + [8377] = {.count = 1, .reusable = true}, SHIFT(5116), + [8379] = {.count = 1, .reusable = true}, SHIFT(5117), + [8381] = {.count = 1, .reusable = true}, SHIFT(5121), + [8383] = {.count = 1, .reusable = true}, SHIFT(5122), + [8385] = {.count = 1, .reusable = true}, SHIFT(5123), + [8387] = {.count = 1, .reusable = true}, SHIFT(5124), + [8389] = {.count = 1, .reusable = true}, SHIFT(5125), + [8391] = {.count = 1, .reusable = true}, SHIFT(5128), + [8393] = {.count = 1, .reusable = true}, SHIFT(5130), + [8395] = {.count = 1, .reusable = true}, SHIFT(5131), + [8397] = {.count = 1, .reusable = true}, SHIFT(5132), + [8399] = {.count = 1, .reusable = true}, SHIFT(5134), + [8401] = {.count = 1, .reusable = true}, SHIFT(5135), + [8403] = {.count = 1, .reusable = true}, SHIFT(5140), + [8405] = {.count = 1, .reusable = true}, SHIFT(5141), + [8407] = {.count = 1, .reusable = true}, SHIFT(5142), + [8409] = {.count = 1, .reusable = false}, SHIFT(5144), + [8411] = {.count = 1, .reusable = true}, SHIFT(5145), + [8413] = {.count = 1, .reusable = true}, SHIFT(5146), + [8415] = {.count = 1, .reusable = true}, REDUCE(sym_typed_binding, 6), + [8417] = {.count = 1, .reusable = false}, REDUCE(sym_typed_binding, 6), + [8419] = {.count = 1, .reusable = false}, REDUCE(sym__let_in, 6), + [8421] = {.count = 1, .reusable = true}, SHIFT(5148), + [8423] = {.count = 1, .reusable = true}, SHIFT(5153), + [8425] = {.count = 1, .reusable = true}, SHIFT(5154), + [8427] = {.count = 1, .reusable = true}, SHIFT(5155), + [8429] = {.count = 1, .reusable = false}, SHIFT(5157), + [8431] = {.count = 1, .reusable = true}, SHIFT(5158), + [8433] = {.count = 1, .reusable = true}, SHIFT(5159), + [8435] = {.count = 1, .reusable = true}, SHIFT(5160), + [8437] = {.count = 1, .reusable = true}, SHIFT(5161), + [8439] = {.count = 1, .reusable = true}, SHIFT(5166), + [8441] = {.count = 1, .reusable = true}, SHIFT(5167), + [8443] = {.count = 1, .reusable = true}, SHIFT(5168), + [8445] = {.count = 1, .reusable = true}, SHIFT(5170), + [8447] = {.count = 1, .reusable = true}, SHIFT(5171), + [8449] = {.count = 1, .reusable = false}, SHIFT(5173), + [8451] = {.count = 1, .reusable = true}, SHIFT(5174), + [8453] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3745), + [8456] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3746), + [8459] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3747), + [8462] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3748), + [8465] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3749), + [8468] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3750), + [8471] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3751), + [8474] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3752), + [8477] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3753), + [8480] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3754), + [8483] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3747), + [8486] = {.count = 1, .reusable = true}, SHIFT(5175), + [8488] = {.count = 1, .reusable = true}, SHIFT(5177), + [8490] = {.count = 1, .reusable = true}, SHIFT(5179), + [8492] = {.count = 1, .reusable = true}, SHIFT(5180), + [8494] = {.count = 1, .reusable = false}, SHIFT(5182), + [8496] = {.count = 1, .reusable = true}, SHIFT(5183), + [8498] = {.count = 1, .reusable = true}, SHIFT(5184), + [8500] = {.count = 1, .reusable = true}, SHIFT(5185), + [8502] = {.count = 1, .reusable = true}, SHIFT(5186), + [8504] = {.count = 1, .reusable = true}, SHIFT(5191), + [8506] = {.count = 1, .reusable = true}, SHIFT(5192), + [8508] = {.count = 1, .reusable = true}, SHIFT(5193), + [8510] = {.count = 1, .reusable = true}, SHIFT(5195), + [8512] = {.count = 1, .reusable = true}, SHIFT(5196), + [8514] = {.count = 1, .reusable = false}, SHIFT(5198), + [8516] = {.count = 1, .reusable = true}, SHIFT(5199), + [8518] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3809), + [8521] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3810), + [8524] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3811), + [8527] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3812), + [8530] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3813), + [8533] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3814), + [8536] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3815), + [8539] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3816), + [8542] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3817), + [8545] = {.count = 2, .reusable = false}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3818), + [8548] = {.count = 2, .reusable = true}, REDUCE(aux_sym__open_args1_repeat1, 2), SHIFT_REPEAT(3811), + [8551] = {.count = 1, .reusable = true}, SHIFT(5200), + [8553] = {.count = 1, .reusable = true}, SHIFT(5202), + [8555] = {.count = 1, .reusable = true}, SHIFT(5204), + [8557] = {.count = 1, .reusable = true}, SHIFT(5205), + [8559] = {.count = 1, .reusable = false}, SHIFT(5207), + [8561] = {.count = 1, .reusable = true}, SHIFT(5208), + [8563] = {.count = 2, .reusable = false}, REDUCE(aux_sym_syntax_repeat2, 2), SHIFT_REPEAT(4729), + [8566] = {.count = 1, .reusable = true}, SHIFT(5210), + [8568] = {.count = 1, .reusable = true}, SHIFT(5211), + [8570] = {.count = 1, .reusable = true}, SHIFT(5212), + [8572] = {.count = 1, .reusable = true}, SHIFT(5215), + [8574] = {.count = 1, .reusable = true}, SHIFT(5216), + [8576] = {.count = 1, .reusable = true}, SHIFT(5217), + [8578] = {.count = 1, .reusable = true}, SHIFT(5218), + [8580] = {.count = 1, .reusable = true}, SHIFT(5219), + [8582] = {.count = 1, .reusable = true}, SHIFT(5222), + [8584] = {.count = 1, .reusable = true}, SHIFT(5224), + [8586] = {.count = 1, .reusable = true}, SHIFT(5225), + [8588] = {.count = 1, .reusable = true}, SHIFT(5226), + [8590] = {.count = 1, .reusable = true}, SHIFT(5230), + [8592] = {.count = 1, .reusable = true}, SHIFT(5231), + [8594] = {.count = 1, .reusable = true}, SHIFT(5232), + [8596] = {.count = 1, .reusable = true}, SHIFT(5233), + [8598] = {.count = 1, .reusable = true}, SHIFT(5234), + [8600] = {.count = 1, .reusable = true}, SHIFT(5237), + [8602] = {.count = 1, .reusable = true}, SHIFT(5239), + [8604] = {.count = 1, .reusable = true}, SHIFT(5240), + [8606] = {.count = 1, .reusable = true}, SHIFT(5241), + [8608] = {.count = 1, .reusable = true}, SHIFT(5242), + [8610] = {.count = 1, .reusable = false}, SHIFT(5244), + [8612] = {.count = 1, .reusable = true}, SHIFT(5245), + [8614] = {.count = 1, .reusable = true}, SHIFT(5248), + [8616] = {.count = 1, .reusable = true}, SHIFT(5249), + [8618] = {.count = 1, .reusable = true}, SHIFT(5250), + [8620] = {.count = 1, .reusable = true}, SHIFT(5251), + [8622] = {.count = 1, .reusable = true}, SHIFT(5252), + [8624] = {.count = 1, .reusable = true}, SHIFT(5255), + [8626] = {.count = 1, .reusable = true}, SHIFT(5257), + [8628] = {.count = 1, .reusable = true}, SHIFT(5258), + [8630] = {.count = 1, .reusable = true}, SHIFT(5259), + [8632] = {.count = 1, .reusable = true}, SHIFT(5263), + [8634] = {.count = 1, .reusable = true}, SHIFT(5264), + [8636] = {.count = 1, .reusable = true}, SHIFT(5265), + [8638] = {.count = 1, .reusable = true}, SHIFT(5266), + [8640] = {.count = 1, .reusable = true}, SHIFT(5267), + [8642] = {.count = 1, .reusable = true}, SHIFT(5270), + [8644] = {.count = 1, .reusable = true}, SHIFT(5272), + [8646] = {.count = 1, .reusable = true}, SHIFT(5273), + [8648] = {.count = 1, .reusable = true}, SHIFT(5274), + [8650] = {.count = 1, .reusable = true}, SHIFT(5275), + [8652] = {.count = 1, .reusable = false}, SHIFT(5277), + [8654] = {.count = 1, .reusable = true}, SHIFT(5278), + [8656] = {.count = 1, .reusable = true}, SHIFT(5281), + [8658] = {.count = 1, .reusable = true}, SHIFT(5282), + [8660] = {.count = 1, .reusable = true}, SHIFT(5283), + [8662] = {.count = 1, .reusable = true}, SHIFT(5284), + [8664] = {.count = 1, .reusable = true}, SHIFT(5285), + [8666] = {.count = 1, .reusable = true}, SHIFT(5288), + [8668] = {.count = 1, .reusable = true}, SHIFT(5290), + [8670] = {.count = 1, .reusable = true}, SHIFT(5291), + [8672] = {.count = 1, .reusable = true}, SHIFT(5292), + [8674] = {.count = 1, .reusable = true}, SHIFT(5294), + [8676] = {.count = 1, .reusable = true}, SHIFT(5295), + [8678] = {.count = 1, .reusable = true}, SHIFT(5296), + [8680] = {.count = 1, .reusable = true}, SHIFT(5297), + [8682] = {.count = 1, .reusable = false}, SHIFT(5298), + [8684] = {.count = 1, .reusable = true}, SHIFT(5299), + [8686] = {.count = 1, .reusable = true}, SHIFT(4909), + [8688] = {.count = 1, .reusable = true}, SHIFT(5301), + [8690] = {.count = 1, .reusable = true}, REDUCE(sym_record_declarations_block, 4), + [8692] = {.count = 1, .reusable = true}, REDUCE(sym_record, 7), + [8694] = {.count = 1, .reusable = true}, SHIFT(5302), + [8696] = {.count = 1, .reusable = true}, SHIFT(5303), + [8698] = {.count = 1, .reusable = true}, REDUCE(sym_simple_hole, 4), + [8700] = {.count = 1, .reusable = false}, REDUCE(sym_simple_hole, 4), + [8702] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 5), + [8704] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 5), + [8706] = {.count = 1, .reusable = true}, SHIFT(5304), + [8708] = {.count = 1, .reusable = true}, SHIFT(5305), + [8710] = {.count = 1, .reusable = true}, SHIFT(5310), + [8712] = {.count = 1, .reusable = true}, REDUCE(sym_module_macro, 7), + [8714] = {.count = 1, .reusable = false}, SHIFT(5311), + [8716] = {.count = 1, .reusable = true}, REDUCE(sym_renaming, 3), + [8718] = {.count = 1, .reusable = true}, REDUCE(aux_sym_import_directive_repeat1, 2), + [8720] = {.count = 1, .reusable = true}, REDUCE(sym_import_directive, 5), + [8722] = {.count = 2, .reusable = true}, REDUCE(aux_sym_import_directive_repeat1, 2), SHIFT_REPEAT(4217), + [8725] = {.count = 1, .reusable = true}, REDUCE(aux_sym__comma_import_names1_repeat1, 2), + [8727] = {.count = 2, .reusable = true}, REDUCE(aux_sym__comma_import_names1_repeat1, 2), SHIFT_REPEAT(4222), + [8730] = {.count = 1, .reusable = true}, SHIFT(5312), + [8732] = {.count = 1, .reusable = true}, SHIFT(5314), + [8734] = {.count = 1, .reusable = true}, SHIFT(5321), + [8736] = {.count = 1, .reusable = true}, SHIFT(5322), + [8738] = {.count = 1, .reusable = true}, SHIFT(5323), + [8740] = {.count = 1, .reusable = true}, SHIFT(5324), + [8742] = {.count = 1, .reusable = true}, SHIFT(5325), + [8744] = {.count = 1, .reusable = true}, SHIFT(5328), + [8746] = {.count = 1, .reusable = true}, SHIFT(5329), + [8748] = {.count = 1, .reusable = true}, SHIFT(5330), + [8750] = {.count = 1, .reusable = true}, SHIFT(5331), + [8752] = {.count = 1, .reusable = true}, SHIFT(5334), + [8754] = {.count = 1, .reusable = true}, SHIFT(5335), + [8756] = {.count = 1, .reusable = true}, SHIFT(5336), + [8758] = {.count = 1, .reusable = true}, SHIFT(5337), + [8760] = {.count = 1, .reusable = true}, SHIFT(5338), + [8762] = {.count = 1, .reusable = true}, SHIFT(5341), + [8764] = {.count = 1, .reusable = true}, SHIFT(5343), + [8766] = {.count = 1, .reusable = true}, SHIFT(5344), + [8768] = {.count = 1, .reusable = true}, SHIFT(5345), + [8770] = {.count = 1, .reusable = true}, REDUCE(sym_data, 7, .alias_sequence_id = 7), + [8772] = {.count = 1, .reusable = true}, REDUCE(sym_module_application, 4), + [8774] = {.count = 1, .reusable = true}, SHIFT(5347), + [8776] = {.count = 1, .reusable = true}, SHIFT(5348), + [8778] = {.count = 1, .reusable = true}, SHIFT(5349), + [8780] = {.count = 1, .reusable = true}, SHIFT(5354), + [8782] = {.count = 1, .reusable = true}, SHIFT(5355), + [8784] = {.count = 1, .reusable = true}, SHIFT(5356), + [8786] = {.count = 1, .reusable = true}, SHIFT(5361), + [8788] = {.count = 1, .reusable = true}, SHIFT(5362), + [8790] = {.count = 1, .reusable = true}, SHIFT(5364), + [8792] = {.count = 1, .reusable = true}, SHIFT(5369), + [8794] = {.count = 1, .reusable = true}, SHIFT(5370), + [8796] = {.count = 1, .reusable = true}, SHIFT(5371), + [8798] = {.count = 1, .reusable = true}, SHIFT(5376), + [8800] = {.count = 1, .reusable = true}, SHIFT(5377), + [8802] = {.count = 1, .reusable = true}, SHIFT(5379), + [8804] = {.count = 1, .reusable = true}, SHIFT(5384), + [8806] = {.count = 1, .reusable = true}, SHIFT(5385), + [8808] = {.count = 1, .reusable = true}, SHIFT(5386), + [8810] = {.count = 1, .reusable = true}, SHIFT(5391), + [8812] = {.count = 1, .reusable = true}, SHIFT(5392), + [8814] = {.count = 1, .reusable = true}, SHIFT(5393), + [8816] = {.count = 1, .reusable = true}, SHIFT(5394), + [8818] = {.count = 1, .reusable = true}, SHIFT(5396), + [8820] = {.count = 1, .reusable = true}, SHIFT(5397), + [8822] = {.count = 1, .reusable = true}, SHIFT(5401), + [8824] = {.count = 1, .reusable = true}, SHIFT(5402), + [8826] = {.count = 1, .reusable = true}, SHIFT(5403), + [8828] = {.count = 1, .reusable = true}, SHIFT(5404), + [8830] = {.count = 1, .reusable = true}, SHIFT(5405), + [8832] = {.count = 1, .reusable = true}, SHIFT(5408), + [8834] = {.count = 1, .reusable = true}, SHIFT(5410), + [8836] = {.count = 1, .reusable = true}, SHIFT(5411), + [8838] = {.count = 1, .reusable = true}, SHIFT(5412), + [8840] = {.count = 1, .reusable = true}, SHIFT(5416), + [8842] = {.count = 1, .reusable = true}, SHIFT(5417), + [8844] = {.count = 1, .reusable = true}, SHIFT(5418), + [8846] = {.count = 1, .reusable = true}, SHIFT(5419), + [8848] = {.count = 1, .reusable = true}, SHIFT(5420), + [8850] = {.count = 1, .reusable = true}, SHIFT(5423), + [8852] = {.count = 1, .reusable = true}, SHIFT(5425), + [8854] = {.count = 1, .reusable = true}, SHIFT(5426), + [8856] = {.count = 1, .reusable = true}, SHIFT(5427), + [8858] = {.count = 1, .reusable = true}, SHIFT(5429), + [8860] = {.count = 1, .reusable = true}, SHIFT(5434), + [8862] = {.count = 1, .reusable = true}, SHIFT(5435), + [8864] = {.count = 1, .reusable = true}, SHIFT(5436), + [8866] = {.count = 1, .reusable = true}, SHIFT(5441), + [8868] = {.count = 1, .reusable = true}, SHIFT(5442), + [8870] = {.count = 1, .reusable = true}, SHIFT(5444), + [8872] = {.count = 1, .reusable = true}, SHIFT(5449), + [8874] = {.count = 1, .reusable = true}, SHIFT(5450), + [8876] = {.count = 1, .reusable = true}, SHIFT(5451), + [8878] = {.count = 1, .reusable = true}, SHIFT(5456), + [8880] = {.count = 1, .reusable = true}, SHIFT(5457), + [8882] = {.count = 1, .reusable = true}, SHIFT(5459), + [8884] = {.count = 1, .reusable = true}, SHIFT(5464), + [8886] = {.count = 1, .reusable = true}, SHIFT(5465), + [8888] = {.count = 1, .reusable = true}, SHIFT(5466), + [8890] = {.count = 1, .reusable = true}, REDUCE(sym_record_constructor_instance, 4), + [8892] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 2), + [8894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 2), SHIFT_REPEAT(4909), + [8897] = {.count = 1, .reusable = true}, REDUCE(sym_hole_name, 6), + [8899] = {.count = 1, .reusable = false}, REDUCE(sym_hole_name, 6), + [8901] = {.count = 1, .reusable = true}, SHIFT(5467), + [8903] = {.count = 1, .reusable = true}, REDUCE(sym_renaming, 4), + [8905] = {.count = 1, .reusable = true}, SHIFT(5468), + [8907] = {.count = 1, .reusable = true}, SHIFT(5469), + [8909] = {.count = 1, .reusable = true}, SHIFT(5470), + [8911] = {.count = 1, .reusable = true}, SHIFT(5475), + [8913] = {.count = 1, .reusable = true}, SHIFT(5480), + [8915] = {.count = 1, .reusable = true}, SHIFT(5481), + [8917] = {.count = 1, .reusable = true}, SHIFT(5482), + [8919] = {.count = 1, .reusable = true}, SHIFT(5483), + [8921] = {.count = 1, .reusable = true}, SHIFT(5484), + [8923] = {.count = 1, .reusable = true}, SHIFT(5485), + [8925] = {.count = 1, .reusable = true}, SHIFT(5486), + [8927] = {.count = 1, .reusable = true}, SHIFT(5487), + [8929] = {.count = 1, .reusable = true}, SHIFT(5488), + [8931] = {.count = 1, .reusable = true}, SHIFT(5489), + [8933] = {.count = 1, .reusable = true}, SHIFT(5490), + [8935] = {.count = 1, .reusable = true}, SHIFT(5491), + [8937] = {.count = 1, .reusable = true}, SHIFT(5492), + [8939] = {.count = 1, .reusable = true}, SHIFT(5497), + [8941] = {.count = 1, .reusable = true}, SHIFT(5498), + [8943] = {.count = 1, .reusable = true}, SHIFT(5499), + [8945] = {.count = 1, .reusable = true}, SHIFT(5504), + [8947] = {.count = 1, .reusable = true}, SHIFT(5505), + [8949] = {.count = 1, .reusable = true}, SHIFT(5506), + [8951] = {.count = 1, .reusable = true}, SHIFT(5507), + [8953] = {.count = 1, .reusable = true}, SHIFT(5508), + [8955] = {.count = 1, .reusable = true}, SHIFT(5509), + [8957] = {.count = 1, .reusable = true}, SHIFT(5510), + [8959] = {.count = 1, .reusable = true}, SHIFT(5511), + [8961] = {.count = 1, .reusable = true}, SHIFT(5512), + [8963] = {.count = 1, .reusable = true}, REDUCE(aux_sym_record_constructor_instance_repeat1, 3), + [8965] = {.count = 1, .reusable = true}, SHIFT(5513), + [8967] = {.count = 1, .reusable = true}, SHIFT(5514), + [8969] = {.count = 1, .reusable = true}, SHIFT(5515), + [8971] = {.count = 1, .reusable = true}, SHIFT(5516), }; void *tree_sitter_agda_external_scanner_create(); diff --git a/test/example.txt b/test/example.txt index 192414a..58d84b3 100644 --- a/test/example.txt +++ b/test/example.txt @@ -1,2 +1,3 @@ -field a : A - b : B +test +test test test +test